Gharke
4 months ago
1 changed files with 16 additions and 0 deletions
@ -1,7 +1,23 @@
|
||||
|
||||
# Required modules |
||||
|
||||
## Requests module |
||||
The requests module is used to send HTTP requests. |
||||
- [Python 3.7](https://www.python.org/downloads/) |
||||
- [Requests](https://pypi.org/project/requests/) |
||||
``` |
||||
pip install requests |
||||
``` |
||||
|
||||
## BeautifulSoup module |
||||
The Beautiful Soup Python library is used to parse HTML and XML documents. |
||||
- [BeautifulSoup4](https://pypi.org/project/beautifulsoup4/) |
||||
``` |
||||
pip install beautifulsoup4 |
||||
``` |
||||
|
||||
## Selenium module |
||||
The selenium module is used to automate web browsers. |
||||
- [Python 3.7](https://www.python.org/downloads/) |
||||
- [Selenium](https://pypi.org/project/selenium/) |
||||
|
||||
|
Loading…
Reference in new issue