Skip to main content

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

Project details


Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page