├── .github ├── release.yml └── workflows │ ├── autorelease.yml │ └── pipeline.yaml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── NaN ├── sample 2.png ├── view.png └── view2.png ├── poetry.lock ├── pyproject.toml ├── src └── koodousfinder │ ├── __init__.py │ ├── client.py │ ├── console.py │ └── response.py └── tests ├── __init__.py ├── data └── payload.json ├── test_client.py └── test_console.py /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/autorelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/.github/workflows/autorelease.yml -------------------------------------------------------------------------------- /.github/workflows/pipeline.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/.github/workflows/pipeline.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/README.md -------------------------------------------------------------------------------- /assets/NaN: -------------------------------------------------------------------------------- 1 | . 2 | -------------------------------------------------------------------------------- /assets/sample 2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/assets/sample 2.png -------------------------------------------------------------------------------- /assets/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/assets/view.png -------------------------------------------------------------------------------- /assets/view2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/assets/view2.png -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/koodousfinder/__init__.py: -------------------------------------------------------------------------------- 1 | """KoodousFinder main module.""" 2 | 3 | -------------------------------------------------------------------------------- /src/koodousfinder/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/src/koodousfinder/client.py -------------------------------------------------------------------------------- /src/koodousfinder/console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/src/koodousfinder/console.py -------------------------------------------------------------------------------- /src/koodousfinder/response.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/src/koodousfinder/response.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | """A module to the tests.""" 2 | -------------------------------------------------------------------------------- /tests/data/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/tests/data/payload.json -------------------------------------------------------------------------------- /tests/test_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/tests/test_client.py -------------------------------------------------------------------------------- /tests/test_console.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HuntDownProject/KoodousFinder/HEAD/tests/test_console.py --------------------------------------------------------------------------------