Skip to content

odysseusmax/PyVeryStream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 

Repository files navigation

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

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •  

Languages