Skip to content

Latest commit

 

History

History
32 lines (18 loc) · 527 Bytes

File metadata and controls

32 lines (18 loc) · 527 Bytes

sproutvideo-python

Python wrapper from sproutvideo API

Install

sproutvideo-python can be installed using pip with the following command

pip install git+https://github.com/gregmccoy/sproutvideo-python

Usage

from sprout.client import SproutClient

sprout = SproutClient("TOKEN")
    
# Get videos
response = sprout.video.get()


#Upload video
response = sprout.upload_video("/path/to/video.mp4", title="Title!")

#Get tags
response = sprout.tag.get()

#Create tags
response = sprout.tag.get()