roxee

Roxee API v1.0


Keywords
roxee
License
Other
Install
pip install roxee==0.0.4

Documentation

Python Roxee

Python Roxee is a Python wrapper for Roxee api.

Installation

pip install roxee

Usage

from roxee import Roxee
from roxee.exceptions import *

rox = Roxee('APIKEY', 'SECRETKEY')
try:
    m = rox.data.movies('f7d59b7c6e894a85c8c14f56bba8702583fd4ecb')
    print(m['title']) #returns "Planet Terror"
except RoxeeException:
    print 'An error occurred. :('