dgc-byte / PyVeryStream

Python wrapper for verystream.com API

Home Page:https://verystream.com/api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PyVeryStream

Python wrapper for verystream.com API

Install

    $ pip install git+https://github.com/odysseusmax/PyVeryStream.git

Usage

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

Documentation is not available currently.

Note

Forked from PyOpenLoad and adapted to work with Verystream API

About

Python wrapper for verystream.com API

https://verystream.com/api


Languages

Language:Python 100.0%