├── .gitignore ├── README.md ├── assets ├── hithchiker.gif ├── r1.gif └── r2.gif ├── giftext.py ├── utils.py └── utils.pyc /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .DS_Store 3 | 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sauravtom/giftext/HEAD/README.md -------------------------------------------------------------------------------- /assets/hithchiker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sauravtom/giftext/HEAD/assets/hithchiker.gif -------------------------------------------------------------------------------- /assets/r1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sauravtom/giftext/HEAD/assets/r1.gif -------------------------------------------------------------------------------- /assets/r2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sauravtom/giftext/HEAD/assets/r2.gif -------------------------------------------------------------------------------- /giftext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sauravtom/giftext/HEAD/giftext.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sauravtom/giftext/HEAD/utils.py -------------------------------------------------------------------------------- /utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sauravtom/giftext/HEAD/utils.pyc --------------------------------------------------------------------------------