├── .gitignore ├── LICENSE ├── README.md ├── phashmodule.C └── setup.py /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | *~ 3 | *.pyc 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polachok/py-phash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polachok/py-phash/HEAD/README.md -------------------------------------------------------------------------------- /phashmodule.C: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polachok/py-phash/HEAD/phashmodule.C -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polachok/py-phash/HEAD/setup.py --------------------------------------------------------------------------------