A simple wrapper around Zype API. For instance, you can use the module to build custom web apps based on Python frameworks, like Flask, Django.
It is really easy to use it. To illustrate, in order to get all videos from your account, you can simply do:
from zype import Zype
client = Zype(api_key="<YOUR API KEY>")
videos = client.get('videos')
if videos is not None:
for v in videos:
print v.title
$ pip install zype
- Issue tracker: https://github.com/zype/zype-python/issues
- Source code: https://github.com/zype/zype-python
- Clone the project
git clone https://github.com/zype/zype-python.git
- Then, in the project root (
$ cd zype-python
):$ virtualenv venv
$ . venv/bin/activate
$ pip install -r requirements.txt
- Run tests
python setup.py test
If you are having issues, please let me know: khurshid@zype.com
The project is licensed under the Apache License 2.0 license.