Zype API Python Client
Project description
zype-python 0.2.0
A simple wrapper around Zype API inspired by SoundCloud API client.
Installation
Run:
pip install zype
To use:
from zype import Zype client = Zype(api_key="<YOUR API KEY>")
Examples
To get all videos available on your account, you can 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