Metadata-Version: 2.1
Name: vdocipher.py
Version: 0.1.1
Summary: Just a VdoCipher api wrapper for python.
Home-page: https://github.com/puzzlsoftwarehouse/vdocipher.py
Author: Puzzl Software House
Author-email: hello@puzzl.com.br
License: MIT License
Description: # vdocipher.py
        Just a VdoCipher api wrapper for python.
        
        Installing
        --------
        
        ```shell script 
        $ pip install vdocipher.py
        ```    
         
        Using
        --------
        
        ```python 
        import vdocipher 
        
        # First, we need to authenticate our api
        vdocipher.authenticate('VDOCIPHER_API_SECRET')
        
        # Examples:
        
        # get a list of videos
        videos = vdocipher.Video().get_list()
        
        # upload a new video
        new_video = vdocipher.Video(title='title').upload('file')
        
        # get a video
        video = vdocipher.Video(id=1).get()
        
        # delete
        vdocipher.Video(id=1).delete()
        ```
        
        Installing dev requirements
        --------
        
        ```shell script 
        $ pip install vdocipher.py[dev]
        ```   
        
            
            
            
Keywords: vdocipher video api python wrapper
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: dev
