├── LICENSE ├── README.rst ├── setup.py └── simhash ├── __init__.py ├── _simhash.c └── fnv.h /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/python-simhash/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/python-simhash/HEAD/README.rst -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/python-simhash/HEAD/setup.py -------------------------------------------------------------------------------- /simhash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/python-simhash/HEAD/simhash/__init__.py -------------------------------------------------------------------------------- /simhash/_simhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/python-simhash/HEAD/simhash/_simhash.c -------------------------------------------------------------------------------- /simhash/fnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scrapinghub/python-simhash/HEAD/simhash/fnv.h --------------------------------------------------------------------------------