├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .github ├── CODEOWNERS └── FUNDING.yml ├── .gitignore ├── .vscode └── launch.json ├── Dockerfile-headless ├── Dockerfile-vnc ├── README.md ├── __init__.py ├── additionalQuestions.yaml ├── allConfigsRunner.py ├── config.py ├── constants.py ├── docker-compose.yml ├── linkedin.py ├── models.py ├── repository_wrapper.py ├── requirements.txt ├── runner.py ├── tests ├── base_test_class.py ├── test_easy_apply.py ├── test_getting_job_details_from_job_post.py ├── test_getting_job_details_from_search_page.py ├── test_question_handling.py ├── test_skipping_jobs.py └── test_utility.py └── utils ├── file.py ├── linkedinUrlHelper.py ├── linkedinWebDriverHelper.py ├── logger.py ├── sleeper.py └── utils.py /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * GabeGiro -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /Dockerfile-headless: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/Dockerfile-headless -------------------------------------------------------------------------------- /Dockerfile-vnc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/Dockerfile-vnc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /additionalQuestions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/additionalQuestions.yaml -------------------------------------------------------------------------------- /allConfigsRunner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/allConfigsRunner.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/config.py -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/constants.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /linkedin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/linkedin.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/models.py -------------------------------------------------------------------------------- /repository_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/repository_wrapper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | selenium 2 | webdriver_manager 3 | packaging 4 | pymongo 5 | python-dotenv -------------------------------------------------------------------------------- /runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/runner.py -------------------------------------------------------------------------------- /tests/base_test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/tests/base_test_class.py -------------------------------------------------------------------------------- /tests/test_easy_apply.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/tests/test_easy_apply.py -------------------------------------------------------------------------------- /tests/test_getting_job_details_from_job_post.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/tests/test_getting_job_details_from_job_post.py -------------------------------------------------------------------------------- /tests/test_getting_job_details_from_search_page.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/tests/test_getting_job_details_from_search_page.py -------------------------------------------------------------------------------- /tests/test_question_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/tests/test_question_handling.py -------------------------------------------------------------------------------- /tests/test_skipping_jobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/tests/test_skipping_jobs.py -------------------------------------------------------------------------------- /tests/test_utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/tests/test_utility.py -------------------------------------------------------------------------------- /utils/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/utils/file.py -------------------------------------------------------------------------------- /utils/linkedinUrlHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/utils/linkedinUrlHelper.py -------------------------------------------------------------------------------- /utils/linkedinWebDriverHelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/utils/linkedinWebDriverHelper.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/sleeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/utils/sleeper.py -------------------------------------------------------------------------------- /utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GabeGiro/EasyApplyJobsBot/HEAD/utils/utils.py --------------------------------------------------------------------------------