Skip to content

zype/zype-python

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zype-python

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

Installation

$ pip install zype

Contribute

Setting up the project

  1. Clone the project git clone https://github.com/zype/zype-python.git
  2. Then, in the project root ($ cd zype-python):
    • $ virtualenv venv
    • $ . venv/bin/activate
    • $ pip install -r requirements.txt
  3. Run tests python setup.py test

Support

If you are having issues, please let me know: [email protected]

License

The project is licensed under the Apache License 2.0 license.

Releases

No releases published

Packages

No packages published

Languages