├── .gitignore ├── README.md ├── indeed_scrap.py ├── pdf_parse.py ├── resume_data.pkl └── tfidf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalajthanaki/Basic_job_recommendation_engine/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalajthanaki/Basic_job_recommendation_engine/HEAD/README.md -------------------------------------------------------------------------------- /indeed_scrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalajthanaki/Basic_job_recommendation_engine/HEAD/indeed_scrap.py -------------------------------------------------------------------------------- /pdf_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalajthanaki/Basic_job_recommendation_engine/HEAD/pdf_parse.py -------------------------------------------------------------------------------- /resume_data.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalajthanaki/Basic_job_recommendation_engine/HEAD/resume_data.pkl -------------------------------------------------------------------------------- /tfidf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jalajthanaki/Basic_job_recommendation_engine/HEAD/tfidf.py --------------------------------------------------------------------------------