This repository contains scraper.py
, which is the sample script built in the Real Python tutorial Beautiful Soup: Build a Web Scraper With Python.
- Create a Python virtual environment
$ python -m venv venv/
$ source venv/bin/activate
(venv) $
- Install the requirements
(venv) $ pip install -r requirements.txt
Run the scraper script:
(venv) $ python scraper.py
You'll see the filtered and formatted Python job listings from the Fake Python job board printed to your console.
Martin Breuss - Email: martin@realpython.com
Distributed under the MIT license. See LICENSE
for more information.