├── .bumpversion.cfg ├── .github └── workflows │ ├── ci-build.yml │ └── ci-release.yml ├── .gitignore ├── .gitlab-ci.yml ├── .travis.yml ├── LICENSE.txt ├── MANIFEST ├── README.rst ├── nerd ├── __init__.py ├── client.py ├── nerd_client.py ├── nerd_client_batch.py └── tests │ ├── __init__.py │ └── test_nerd.py ├── requirements.txt ├── scripts └── batch_sample.py ├── setup.cfg └── setup.py /.bumpversion.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/.bumpversion.cfg -------------------------------------------------------------------------------- /.github/workflows/ci-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/.github/workflows/ci-build.yml -------------------------------------------------------------------------------- /.github/workflows/ci-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/.github/workflows/ci-release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/MANIFEST -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/README.rst -------------------------------------------------------------------------------- /nerd/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/nerd/__init__.py -------------------------------------------------------------------------------- /nerd/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/nerd/client.py -------------------------------------------------------------------------------- /nerd/nerd_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/nerd/nerd_client.py -------------------------------------------------------------------------------- /nerd/nerd_client_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/nerd/nerd_client_batch.py -------------------------------------------------------------------------------- /nerd/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/nerd/tests/__init__.py -------------------------------------------------------------------------------- /nerd/tests/test_nerd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/nerd/tests/test_nerd.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.32.0 2 | zenlog==1.1 -------------------------------------------------------------------------------- /scripts/batch_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/scripts/batch_sample.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hirmeos/entity-fishing-client-python/HEAD/setup.py --------------------------------------------------------------------------------