├── .coveragerc ├── .github └── workflows │ ├── coverage.yml │ ├── docs.yml │ ├── linters.yml │ └── tests.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .readthedocs.yml ├── AUTHORS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.rst ├── LICENCE ├── README.rst ├── datalookup ├── __init__.py ├── exceptions.py ├── fields.py ├── lookup.py └── utils.py ├── docs ├── Makefile ├── _ext │ └── datalookup_docs.py ├── conf.py ├── contents.rst ├── index.rst ├── internals │ ├── changelog.rst │ ├── coding-style.rst │ ├── contributing.rst │ ├── deprecations.rst │ ├── index.rst │ └── release-process.rst ├── make.bat ├── requirements.txt └── spelling_wordlist ├── licenses └── django.license ├── pyproject.toml ├── setup.py ├── tests ├── README.rst ├── __init__.py ├── data │ ├── books.json │ └── recipe.json ├── lookup.py ├── pytest.ini ├── requirements.txt └── tests.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/coverage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/.github/workflows/coverage.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/linters.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/.github/workflows/linters.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/AUTHORS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/LICENCE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/README.rst -------------------------------------------------------------------------------- /datalookup/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/datalookup/__init__.py -------------------------------------------------------------------------------- /datalookup/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/datalookup/exceptions.py -------------------------------------------------------------------------------- /datalookup/fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/datalookup/fields.py -------------------------------------------------------------------------------- /datalookup/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/datalookup/lookup.py -------------------------------------------------------------------------------- /datalookup/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/datalookup/utils.py -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_ext/datalookup_docs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/_ext/datalookup_docs.py -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contents.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/contents.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/internals/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/internals/changelog.rst -------------------------------------------------------------------------------- /docs/internals/coding-style.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/internals/coding-style.rst -------------------------------------------------------------------------------- /docs/internals/contributing.rst: -------------------------------------------------------------------------------- 1 | .. _contributing: 2 | 3 | .. include:: ../../CONTRIBUTING.rst 4 | -------------------------------------------------------------------------------- /docs/internals/deprecations.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/internals/deprecations.rst -------------------------------------------------------------------------------- /docs/internals/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/internals/index.rst -------------------------------------------------------------------------------- /docs/internals/release-process.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/internals/release-process.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/spelling_wordlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/docs/spelling_wordlist -------------------------------------------------------------------------------- /licenses/django.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/licenses/django.license -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/setup.py -------------------------------------------------------------------------------- /tests/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/tests/README.rst -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/data/books.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/tests/data/books.json -------------------------------------------------------------------------------- /tests/data/recipe.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/tests/data/recipe.json -------------------------------------------------------------------------------- /tests/lookup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/tests/lookup.py -------------------------------------------------------------------------------- /tests/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/tests/pytest.ini -------------------------------------------------------------------------------- /tests/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/tests/requirements.txt -------------------------------------------------------------------------------- /tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/tests/tests.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pyshare/datalookup/HEAD/tox.ini --------------------------------------------------------------------------------