├── .gitignore ├── .vscode └── launch.json ├── README.md └── src ├── __init__.py ├── document.py ├── keyword.py ├── options.py ├── position.py ├── resume.py ├── sections.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/README.md -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/document.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/src/document.py -------------------------------------------------------------------------------- /src/keyword.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/src/keyword.py -------------------------------------------------------------------------------- /src/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/src/options.py -------------------------------------------------------------------------------- /src/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/src/position.py -------------------------------------------------------------------------------- /src/resume.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/src/resume.py -------------------------------------------------------------------------------- /src/sections.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/src/sections.py -------------------------------------------------------------------------------- /src/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArthurDelamare/Job-Matcher/HEAD/src/test.py --------------------------------------------------------------------------------