Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 659 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 659 Bytes

putio

Simple Python client for put.io API v2

This is simple Python client for put.io API v2. Here is a simple example;

from putio import Putio

putio = Putio(client_id='1111', oauth_token='XXXXXX')
putio.File.list_files()
putio.Transfer.list()
putio.Friend.list()
putio.Account.info()
putio.Event.list()

All of the methods return raw json data instead processing on that.

You can look at the put.io API documentation for other methods and more details.

The client's architecture is so simple as well:

alt text