├── .github └── workflows │ └── upload_to_pypi.yml ├── LICENSE ├── README.md ├── qudida ├── __init__.py └── __version__.py ├── requirements.txt ├── result.gif ├── save_gif.py ├── setup.py ├── source.png ├── target.png └── test_transforms.py /.github/workflows/upload_to_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/.github/workflows/upload_to_pypi.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/README.md -------------------------------------------------------------------------------- /qudida/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/qudida/__init__.py -------------------------------------------------------------------------------- /qudida/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.0.4" 2 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/requirements.txt -------------------------------------------------------------------------------- /result.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/result.gif -------------------------------------------------------------------------------- /save_gif.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/save_gif.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/setup.py -------------------------------------------------------------------------------- /source.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/source.png -------------------------------------------------------------------------------- /target.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/target.png -------------------------------------------------------------------------------- /test_transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arsenyinfo/qudida/HEAD/test_transforms.py --------------------------------------------------------------------------------