Python wrapper for verystream.com API
$ pip install git+https://github.com/odysseusmax/PyVeryStream.git
All API
features are implemented.
Retrieve account info
from verystream import Verystream
vs = Verystream('login', 'key')
account_info = vs.account_info()
print(account_info)
Upload file
from verystream import Verystream
vs = Verystream('login', 'key')
uploaded_file_info = vs.upload_file('/home/username/file.txt')
print(uploaded_file_info)
Retrieve file info
from verystream import Verystream
vs = Verystream('login', 'key')
# Random file id.
file_id = 'YMTqhQAuzVX'
file_info = vs.file_info(file_id)
print(file_info)
Documentation is not available currently.
Forked from PyOpenLoad and adapted to work with Verystream API