public
Description: A Python wrapper to the Vimeo API
Homepage:
Clone URL: git://github.com/paltman/pyvimeo.git
pyvimeo / README
100644 23 lines (14 sloc) 0.557 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Configuration is handled in either a system wide configuration file placed at:
 
/etc/pyvimeo.cfg
 
or a user based configuration file at:
 
~/.pyvimeo
 
 
The sections available for configuring are:
 
[Credentials]
api_key = <vimeo api key>
shared_secret = <vimeo shared secret>
 
[Urls]
starndard_api_url = http://www.vimeo.com/api/rest/
upload_url = http://www.vimeo.com/services/upload/
auth_url = http://www.vimeo.com/services/auth/
 
 
Whatever is in the ~/.pyvimeo user file will override whatever is stored in
the system /etc/pyvimeo.cfg file.