├── COPYING ├── LICENSE ├── README.md ├── docs ├── conf.py └── index.rst └── src ├── MANIFEST.in ├── README.md ├── debian ├── authors ├── changelog ├── compat ├── control ├── copyright ├── python-fingerprint-doc.doc-base ├── python-fingerprint-doc.install ├── python-fingerprint.examples ├── python-fingerprint.postinst ├── python3-fingerprint.examples ├── rules └── source │ └── format ├── files ├── examples │ ├── example_delete.py │ ├── example_downloadimage.py │ ├── example_enroll.py │ ├── example_generaterandom.py │ ├── example_index.py │ └── example_search.py └── pyfingerprint │ ├── __init__.py │ └── pyfingerprint.py └── setup.py /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/COPYING -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/README.md -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/docs/index.rst -------------------------------------------------------------------------------- /src/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/MANIFEST.in -------------------------------------------------------------------------------- /src/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/README.md -------------------------------------------------------------------------------- /src/debian/authors: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/debian/authors -------------------------------------------------------------------------------- /src/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/debian/changelog -------------------------------------------------------------------------------- /src/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /src/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/debian/control -------------------------------------------------------------------------------- /src/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/debian/copyright -------------------------------------------------------------------------------- /src/debian/python-fingerprint-doc.doc-base: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/debian/python-fingerprint-doc.doc-base -------------------------------------------------------------------------------- /src/debian/python-fingerprint-doc.install: -------------------------------------------------------------------------------- 1 | build/html/ /usr/share/doc/python-fingerprint-doc/ 2 | -------------------------------------------------------------------------------- /src/debian/python-fingerprint.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/debian/python-fingerprint.examples -------------------------------------------------------------------------------- /src/debian/python-fingerprint.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/debian/python-fingerprint.postinst -------------------------------------------------------------------------------- /src/debian/python3-fingerprint.examples: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/debian/python3-fingerprint.examples -------------------------------------------------------------------------------- /src/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/debian/rules -------------------------------------------------------------------------------- /src/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /src/files/examples/example_delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/files/examples/example_delete.py -------------------------------------------------------------------------------- /src/files/examples/example_downloadimage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/files/examples/example_downloadimage.py -------------------------------------------------------------------------------- /src/files/examples/example_enroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/files/examples/example_enroll.py -------------------------------------------------------------------------------- /src/files/examples/example_generaterandom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/files/examples/example_generaterandom.py -------------------------------------------------------------------------------- /src/files/examples/example_index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/files/examples/example_index.py -------------------------------------------------------------------------------- /src/files/examples/example_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/files/examples/example_search.py -------------------------------------------------------------------------------- /src/files/pyfingerprint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/files/pyfingerprint/__init__.py -------------------------------------------------------------------------------- /src/files/pyfingerprint/pyfingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/files/pyfingerprint/pyfingerprint.py -------------------------------------------------------------------------------- /src/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bastianraschke/pyfingerprint/HEAD/src/setup.py --------------------------------------------------------------------------------