Go to a job postings website, perform search and export job title and description link to a file.
A full tutorial for this program is detailed on the inspirezone.tech blog post: Learn web scraping with python in minutes: The basics using selenium.
See "blog-tutorial-original-code/job-search-web-scraping.py" for the original tutorial code.
You are welcome to contribute to this repo. See the CONTRIBUTING.md for more info
This is a web scraper written in python using the selenium package. It will:
- Launch indeed.com/worldwide
- Perform a search for "machine learning"
- Export each job posting title and link to a file
You need to have either Firefox or Chrome installed. You also need the corresponding driver for the browser.
For Firefox download geckodriver: https://github.com/mozilla/geckodriver/releases
For Chrome download chromedriver: https://chromedriver.chromium.org/downloads
Python and the following modules must be installed on the computer running this script.
Install Python and pip:
sudo apt-get install python
sudo apt-get install pip
Install selenium:
pip install selenium
python job-search-web-scraping.py