├── .DS_Store ├── README.md ├── logo-grey-title.png ├── requirements.txt ├── scrape-nlp ├── .DS_Store ├── Ngram.py ├── __pycache__ │ ├── Ngram.cpython-37.pyc │ ├── app.cpython-37.pyc │ ├── nlp.cpython-37.pyc │ └── scraper.cpython-37.pyc ├── app.py ├── data.csv ├── nasa-test.txt ├── nasa.htm ├── nlp.py ├── nltk-v0.ipynb ├── scraper-v0.ipynb ├── scraper.py ├── static │ ├── .DS_Store │ ├── bootstrap.min.css │ └── static.css ├── templates │ ├── .DS_Store │ ├── index.html │ └── scrape.html └── text.txt └── web-app └── text.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/.DS_Store -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/README.md -------------------------------------------------------------------------------- /logo-grey-title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/logo-grey-title.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape-nlp/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/.DS_Store -------------------------------------------------------------------------------- /scrape-nlp/Ngram.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/Ngram.py -------------------------------------------------------------------------------- /scrape-nlp/__pycache__/Ngram.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/__pycache__/Ngram.cpython-37.pyc -------------------------------------------------------------------------------- /scrape-nlp/__pycache__/app.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/__pycache__/app.cpython-37.pyc -------------------------------------------------------------------------------- /scrape-nlp/__pycache__/nlp.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/__pycache__/nlp.cpython-37.pyc -------------------------------------------------------------------------------- /scrape-nlp/__pycache__/scraper.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/__pycache__/scraper.cpython-37.pyc -------------------------------------------------------------------------------- /scrape-nlp/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/app.py -------------------------------------------------------------------------------- /scrape-nlp/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/data.csv -------------------------------------------------------------------------------- /scrape-nlp/nasa-test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/nasa-test.txt -------------------------------------------------------------------------------- /scrape-nlp/nasa.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/nasa.htm -------------------------------------------------------------------------------- /scrape-nlp/nlp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/nlp.py -------------------------------------------------------------------------------- /scrape-nlp/nltk-v0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/nltk-v0.ipynb -------------------------------------------------------------------------------- /scrape-nlp/scraper-v0.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/scraper-v0.ipynb -------------------------------------------------------------------------------- /scrape-nlp/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/scraper.py -------------------------------------------------------------------------------- /scrape-nlp/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/static/.DS_Store -------------------------------------------------------------------------------- /scrape-nlp/static/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/static/bootstrap.min.css -------------------------------------------------------------------------------- /scrape-nlp/static/static.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/static/static.css -------------------------------------------------------------------------------- /scrape-nlp/templates/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/templates/.DS_Store -------------------------------------------------------------------------------- /scrape-nlp/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/templates/index.html -------------------------------------------------------------------------------- /scrape-nlp/templates/scrape.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DURGESH716/ai-resume-builder/HEAD/scrape-nlp/templates/scrape.html -------------------------------------------------------------------------------- /scrape-nlp/text.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /web-app/text.txt: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------