You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# A Practical Introduction to Web Scraping in Python
2
+
3
+
This repository holds the code for the Real Python [A Practical Introduction to Web Scraping in Python](https://realpython.com/python-web-scraping-practical-introduction/) tutorial.
4
+
5
+
## Dependencies
6
+
7
+
To run the examples in this repository, you need to have the dependencies installed. You should first create a virtual environment:
8
+
9
+
```console
10
+
$ python -m venv venv
11
+
$ source venv/bin/activate
12
+
```
13
+
14
+
Then, navigate into the subfolder and install the requirements with `pip`:
0 commit comments