├── .editorconfig ├── .env ├── .gitignore ├── .travis.yml ├── ACKNOWLEDGEMENTS.md ├── LICENSE ├── README.md ├── jiphy ├── __init__.py ├── handlers.py ├── main.py ├── parser.py ├── pie_slice.py ├── router.py └── to.py ├── logo.png ├── setup.cfg ├── setup.py ├── test_jiphy.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/.editorconfig -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/.travis.yml -------------------------------------------------------------------------------- /ACKNOWLEDGEMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/ACKNOWLEDGEMENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/README.md -------------------------------------------------------------------------------- /jiphy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/jiphy/__init__.py -------------------------------------------------------------------------------- /jiphy/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/jiphy/handlers.py -------------------------------------------------------------------------------- /jiphy/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/jiphy/main.py -------------------------------------------------------------------------------- /jiphy/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/jiphy/parser.py -------------------------------------------------------------------------------- /jiphy/pie_slice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/jiphy/pie_slice.py -------------------------------------------------------------------------------- /jiphy/router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/jiphy/router.py -------------------------------------------------------------------------------- /jiphy/to.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/jiphy/to.py -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/logo.png -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [wheel] 2 | universal = 1 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/setup.py -------------------------------------------------------------------------------- /test_jiphy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/test_jiphy.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timothycrosley/jiphy/HEAD/tox.ini --------------------------------------------------------------------------------