Socket
Socket
Sign inDemoInstall

zype

Package Overview
Dependencies
0
Maintainers
1
Alerts
File Explorer

Install Socket

Detect and block malicious and high-risk dependencies

Install

zype

Zype API Python Client


Maintainers
1

Readme

zype-python 0.2.0

A simple wrapper around Zype API inspired by SoundCloud API client <https://github.com/soundcloud/soundcloud-python>_.

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

Keywords

FAQs


Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc