Skip to content

Instantly share code, notes, and snippets.

@greedo
Created January 15, 2015 21:12
Show Gist options
  • Save greedo/4e92163a7a1a4f496cf6 to your computer and use it in GitHub Desktop.
Save greedo/4e92163a7a1a4f496cf6 to your computer and use it in GitHub Desktop.
Setting video title example
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