Skip to content

evoblicec/putio.py

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

183 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

putio.py

Simple wrapper for Put.io API v2.

Installing

putio.py is available on PyPI.

$ pip install putio.py

Usage

import putiopy

helper = putiopy.AuthHelper(CLIENT_ID, CLIENT_SECRET, \
                            CALLBACK_URL, type='token')

# this will open a browser to authetication url
# after authenticating you will find the oauth_token in the address bar
helper.open_authentication_url()

client = putiopy.Client(OAUTH_TOKEN)

# list files
files = client.File.list()

# add a new transfer
transfer = client.Transfer.add_url('http://example.com/good.torrent')

# read the code for other methods.

About

A python wrapper for put.io APIv2

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%