Metadata-Version: 1.0
Name: vimeo-wrapper
Version: 0.0.3
Summary: A thin wrapper around requests for vimeo
Home-page: http://github.com/okke-formsma/vimeo-wrapper/tree/master
Author: Okke Formsma
Author-email: okke.formsma@gmail.com
License: UNKNOWN
Description: vimeo-wrapper
        =============
        
        A thin python wrapper for the vimeo API with upload-capabilities.  It took me quite a while to get this figured out; the Vimeo 
        API is rather PHP-centric.
        
        Installation:
            
            pip install git+http://github.com/okke-formsma/vimeo-wrapper#egg=vimeo
        
        Usage:
        
            vimeo = Vimeo(access_token, access_token_secret, consumer_key, consumer_secret)
        
        get vimeo info on a video
        
            info = vimeo.request('vimeo.videos.getInfo', data=dict(video_id=video_id))
            
        Perform any request like so: (the list of available requests can be found at [the vimeo api site](https://developer.vimeo.com/apis/advanced/methods))
        
            result = vimeo.request(method, data=...)
            
        upload video file
        
            video_id = vimeo.upload(file="/home/okke-formsma/videos/test.mov")
        
        set video metadata
        
            vimeo.request('vimeo.videos.setTitle', data={
                'video_id': video_id,
                'title': "Vimeo-wrapper video",
            })
            vimeo.request('vimeo.videos.setDescription', data={
                'video_id': video_id,
                'description': "It is the best!",
            })
            vimeo.request('vimeo.videos.setDownloadPrivacy', data={
                'video_id': video_id,
                'download': False
            })
          
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
