├── .gitignore ├── README.md ├── glassdoorscraper ├── config.yml ├── currency-conversion-table.py ├── html-scraper.py └── json-scraper.py ├── glue-job-script.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresionek91/Job-Listing-Scraper/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresionek91/Job-Listing-Scraper/HEAD/README.md -------------------------------------------------------------------------------- /glassdoorscraper/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresionek91/Job-Listing-Scraper/HEAD/glassdoorscraper/config.yml -------------------------------------------------------------------------------- /glassdoorscraper/currency-conversion-table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresionek91/Job-Listing-Scraper/HEAD/glassdoorscraper/currency-conversion-table.py -------------------------------------------------------------------------------- /glassdoorscraper/html-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresionek91/Job-Listing-Scraper/HEAD/glassdoorscraper/html-scraper.py -------------------------------------------------------------------------------- /glassdoorscraper/json-scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresionek91/Job-Listing-Scraper/HEAD/glassdoorscraper/json-scraper.py -------------------------------------------------------------------------------- /glue-job-script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andresionek91/Job-Listing-Scraper/HEAD/glue-job-script.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | pyaml 2 | requests 3 | beautifulsoup4 4 | stem 5 | pandas 6 | lxml --------------------------------------------------------------------------------