├── .env.example ├── .flake8 ├── .gitignore ├── .gitmodules ├── Documentation.md ├── LICENSE.txt ├── Makefile ├── README.md ├── check.sh ├── examples ├── colab │ ├── build_personalized_ai_hr_models.ipynb │ └── implement_hrflow_in_5min.ipynb ├── job │ └── job_endpoints_examples.ipynb └── profile │ └── profile_endpoints_examples.ipynb ├── hrflow ├── __init__.py ├── __version__.py ├── auth │ └── __init__.py ├── board │ └── __init__.py ├── core │ ├── __init__.py │ ├── rate_limit.py │ └── validation.py ├── hrflow.py ├── job │ ├── __init__.py │ ├── asking.py │ ├── embedding.py │ ├── matching.py │ ├── parsing.py │ ├── reasoning.py │ ├── scoring.py │ ├── searching.py │ └── storing.py ├── profile │ ├── __init__.py │ ├── asking.py │ ├── attachment.py │ ├── embedding.py │ ├── grading.py │ ├── matching.py │ ├── parsing.py │ ├── reasoning.py │ ├── revealing.py │ ├── scoring.py │ ├── searching.py │ ├── storing.py │ └── unfolding.py ├── rating │ └── __init__.py ├── schemas.py ├── source │ └── __init__.py ├── text │ ├── __init__.py │ ├── embedding.py │ ├── imaging.py │ ├── linking.py │ ├── ocr.py │ ├── parsing.py │ └── tagging.py ├── tracking │ └── __init__.py ├── utils │ ├── __init__.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── job.py │ │ └── profile.py │ ├── scoring.py │ ├── searching.py │ └── storing.py └── webhook │ ├── __init__.py │ ├── base64Wrapper.py │ ├── bytesutils.py │ └── hmacutils.py ├── poetry.lock ├── pyproject.toml ├── tag.sh └── tests ├── __init__.py ├── test_auth.py ├── test_job.py ├── test_profile.py ├── test_rate_limit.py ├── test_text.py └── utils ├── enums.py ├── schemas.py └── tools.py /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/.env.example -------------------------------------------------------------------------------- /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/.gitmodules -------------------------------------------------------------------------------- /Documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/Documentation.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/README.md -------------------------------------------------------------------------------- /check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/check.sh -------------------------------------------------------------------------------- /examples/colab/build_personalized_ai_hr_models.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/examples/colab/build_personalized_ai_hr_models.ipynb -------------------------------------------------------------------------------- /examples/colab/implement_hrflow_in_5min.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/examples/colab/implement_hrflow_in_5min.ipynb -------------------------------------------------------------------------------- /examples/job/job_endpoints_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/examples/job/job_endpoints_examples.ipynb -------------------------------------------------------------------------------- /examples/profile/profile_endpoints_examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/examples/profile/profile_endpoints_examples.ipynb -------------------------------------------------------------------------------- /hrflow/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/__init__.py -------------------------------------------------------------------------------- /hrflow/__version__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/__version__.py -------------------------------------------------------------------------------- /hrflow/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/auth/__init__.py -------------------------------------------------------------------------------- /hrflow/board/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/board/__init__.py -------------------------------------------------------------------------------- /hrflow/core/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/core/__init__.py -------------------------------------------------------------------------------- /hrflow/core/rate_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/core/rate_limit.py -------------------------------------------------------------------------------- /hrflow/core/validation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/core/validation.py -------------------------------------------------------------------------------- /hrflow/hrflow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/hrflow.py -------------------------------------------------------------------------------- /hrflow/job/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/job/__init__.py -------------------------------------------------------------------------------- /hrflow/job/asking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/job/asking.py -------------------------------------------------------------------------------- /hrflow/job/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/job/embedding.py -------------------------------------------------------------------------------- /hrflow/job/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/job/matching.py -------------------------------------------------------------------------------- /hrflow/job/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/job/parsing.py -------------------------------------------------------------------------------- /hrflow/job/reasoning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/job/reasoning.py -------------------------------------------------------------------------------- /hrflow/job/scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/job/scoring.py -------------------------------------------------------------------------------- /hrflow/job/searching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/job/searching.py -------------------------------------------------------------------------------- /hrflow/job/storing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/job/storing.py -------------------------------------------------------------------------------- /hrflow/profile/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/__init__.py -------------------------------------------------------------------------------- /hrflow/profile/asking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/asking.py -------------------------------------------------------------------------------- /hrflow/profile/attachment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/attachment.py -------------------------------------------------------------------------------- /hrflow/profile/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/embedding.py -------------------------------------------------------------------------------- /hrflow/profile/grading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/grading.py -------------------------------------------------------------------------------- /hrflow/profile/matching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/matching.py -------------------------------------------------------------------------------- /hrflow/profile/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/parsing.py -------------------------------------------------------------------------------- /hrflow/profile/reasoning.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/reasoning.py -------------------------------------------------------------------------------- /hrflow/profile/revealing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/revealing.py -------------------------------------------------------------------------------- /hrflow/profile/scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/scoring.py -------------------------------------------------------------------------------- /hrflow/profile/searching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/searching.py -------------------------------------------------------------------------------- /hrflow/profile/storing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/storing.py -------------------------------------------------------------------------------- /hrflow/profile/unfolding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/profile/unfolding.py -------------------------------------------------------------------------------- /hrflow/rating/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/rating/__init__.py -------------------------------------------------------------------------------- /hrflow/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/schemas.py -------------------------------------------------------------------------------- /hrflow/source/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/source/__init__.py -------------------------------------------------------------------------------- /hrflow/text/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/text/__init__.py -------------------------------------------------------------------------------- /hrflow/text/embedding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/text/embedding.py -------------------------------------------------------------------------------- /hrflow/text/imaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/text/imaging.py -------------------------------------------------------------------------------- /hrflow/text/linking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/text/linking.py -------------------------------------------------------------------------------- /hrflow/text/ocr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/text/ocr.py -------------------------------------------------------------------------------- /hrflow/text/parsing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/text/parsing.py -------------------------------------------------------------------------------- /hrflow/text/tagging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/text/tagging.py -------------------------------------------------------------------------------- /hrflow/tracking/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/tracking/__init__.py -------------------------------------------------------------------------------- /hrflow/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/utils/__init__.py -------------------------------------------------------------------------------- /hrflow/utils/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/utils/evaluation/__init__.py -------------------------------------------------------------------------------- /hrflow/utils/evaluation/job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/utils/evaluation/job.py -------------------------------------------------------------------------------- /hrflow/utils/evaluation/profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/utils/evaluation/profile.py -------------------------------------------------------------------------------- /hrflow/utils/scoring.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/utils/scoring.py -------------------------------------------------------------------------------- /hrflow/utils/searching.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/utils/searching.py -------------------------------------------------------------------------------- /hrflow/utils/storing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/utils/storing.py -------------------------------------------------------------------------------- /hrflow/webhook/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/webhook/__init__.py -------------------------------------------------------------------------------- /hrflow/webhook/base64Wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/webhook/base64Wrapper.py -------------------------------------------------------------------------------- /hrflow/webhook/bytesutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/webhook/bytesutils.py -------------------------------------------------------------------------------- /hrflow/webhook/hmacutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/hrflow/webhook/hmacutils.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/pyproject.toml -------------------------------------------------------------------------------- /tag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/tag.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/tests/test_auth.py -------------------------------------------------------------------------------- /tests/test_job.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/tests/test_job.py -------------------------------------------------------------------------------- /tests/test_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/tests/test_profile.py -------------------------------------------------------------------------------- /tests/test_rate_limit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/tests/test_rate_limit.py -------------------------------------------------------------------------------- /tests/test_text.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/tests/test_text.py -------------------------------------------------------------------------------- /tests/utils/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/tests/utils/enums.py -------------------------------------------------------------------------------- /tests/utils/schemas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/tests/utils/schemas.py -------------------------------------------------------------------------------- /tests/utils/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Riminder/python-hrflow-api/HEAD/tests/utils/tools.py --------------------------------------------------------------------------------