Created
January 15, 2015 21:12
-
-
Save greedo/4e92163a7a1a4f496cf6 to your computer and use it in GitHub Desktop.
Setting video title example
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from vimeo import VimeoClient | |
v = VimeoClient(token=YOUR_AUTHENTICATED_BEARER_TOKEN, | |
key=YOUR_API_TOKEN, | |
secret=YOUR_TOKEN_SECRET) | |
upload_uri = v.upload('your-filename.mp4') | |
v.patch(upload_uri, data={"name": "myname"}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment