You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
589 B

4 months ago
# Required modules
4 months ago
## 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/)
4 months ago
```
pip install requests
```
4 months ago
## 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/)