A wrapper for the Streamable API
- Python 3.6
- Requests module
pip3 install requests
Streamable allows both authenticated and unauthenticated (anonymous) uploads. If you wish to authenticate, simply enter your credentials into
USER = ''
PASS = ''
s = Streamable()
s.upload(file='', title='')
:params:
file
= the local video file
title
= optional title for the video
s.import_vid(url='', title='')
:params:
url
= location of video (youtube link, webm, etc)
title
= optional title for the video
s.get_user(user='')
:params:
user = user to retrieve
s.get_me()
(Requires authentication)