├── .gitignore ├── README.md ├── gif2tgsticker.py ├── gif2tgsticker.spec ├── poetry.lock └── pyproject.toml /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | 3 | __pycache__ 4 | 5 | build/ 6 | dist/ -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAmGhost/gif2tgsticker/HEAD/README.md -------------------------------------------------------------------------------- /gif2tgsticker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAmGhost/gif2tgsticker/HEAD/gif2tgsticker.py -------------------------------------------------------------------------------- /gif2tgsticker.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAmGhost/gif2tgsticker/HEAD/gif2tgsticker.spec -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAmGhost/gif2tgsticker/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iAmGhost/gif2tgsticker/HEAD/pyproject.toml --------------------------------------------------------------------------------