Metadata-Version: 1.1
Name: pfycat
Version: 0.0.1
Summary: python wrapper for gfycat
Home-page: https://gitlab.com/wotanii/pfycat
Author: wotaini
Author-email: pypi@wotanii.de
License: UNKNOWN
Description: pfycat
        ======
        
        simple module for rudementary usage of gfycat-api for pythoncd de
        
        features
        --------
        
        upload files
        
        ::
        
            import pfycat
            pfycat.Client().upload('banana.gif')
        
        authenticate
        
        ::
        
            pfycat.Client("client_id", "client_secret")
        
        dev-notes
        ---------
        
        running tests
        ~~~~~~~~~~~~~
        
        ::
        
            cd pfycat
            nano tests/secret.py #needs client_id and client_secret
            env PYTHONPATH=. ./tests/live_test.py      
        
        push to pypi
        ~~~~~~~~~~~~
        
        prepare environment:
        
        ::
        
            gedit ~/.pypirc
            chmod 600 ~/.pypirc
            sudo apt install pandoc twine
        
        upload changes to test and production:
        
        ::
        
            pandoc -o README.rst README.md
            restview --pypi-strict README.rst
            # update version in setup.py
            rm -r dist
            python setup.py sdist
            twine upload dist/* -r testpypi
            firefox https://testpypi.python.org/pypi/pfycat
            twine upload dist/*
        
        test install from testpypi
        
        ::
        
            pip install --index-url https://test.pypi.org/simple/ --extra-index-url https://pypi.org/simple pfycat --no-cache-dir --user
        
        test installation
        
        ::
        
            sudo pip install pfycat --no-cache-dir --user    
        
        related links
        ~~~~~~~~~~~~~
        
        -  https://developers.gfycat.com/api/
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
