├── .github ├── FUNDING.yml └── workflows │ └── python-publish.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── examples ├── arrival.py ├── data │ └── seinfeld.csv ├── heart.py ├── hop.py ├── phone.py ├── seinfeld.py └── spiral.py ├── gif.py ├── images ├── arrival.gif ├── beating_heart.gif ├── heart.gif ├── hop.gif ├── logo.png ├── phone.gif ├── seinfeld.gif └── spiral.gif ├── mypy.ini ├── setup.py └── tests └── test_gif.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/python-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/.github/workflows/python-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/README.md -------------------------------------------------------------------------------- /examples/arrival.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/examples/arrival.py -------------------------------------------------------------------------------- /examples/data/seinfeld.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/examples/data/seinfeld.csv -------------------------------------------------------------------------------- /examples/heart.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/examples/heart.py -------------------------------------------------------------------------------- /examples/hop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/examples/hop.py -------------------------------------------------------------------------------- /examples/phone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/examples/phone.py -------------------------------------------------------------------------------- /examples/seinfeld.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/examples/seinfeld.py -------------------------------------------------------------------------------- /examples/spiral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/examples/spiral.py -------------------------------------------------------------------------------- /gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/gif.py -------------------------------------------------------------------------------- /images/arrival.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/images/arrival.gif -------------------------------------------------------------------------------- /images/beating_heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/images/beating_heart.gif -------------------------------------------------------------------------------- /images/heart.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/images/heart.gif -------------------------------------------------------------------------------- /images/hop.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/images/hop.gif -------------------------------------------------------------------------------- /images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/images/logo.png -------------------------------------------------------------------------------- /images/phone.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/images/phone.gif -------------------------------------------------------------------------------- /images/seinfeld.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/images/seinfeld.gif -------------------------------------------------------------------------------- /images/spiral.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/images/spiral.gif -------------------------------------------------------------------------------- /mypy.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/mypy.ini -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/setup.py -------------------------------------------------------------------------------- /tests/test_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maxhumber/gif/HEAD/tests/test_gif.py --------------------------------------------------------------------------------