usage of requests_html instead of requests

This commit is contained in:
Mylloon 2022-01-13 22:56:32 +01:00
parent 760775c604
commit 9046bee352
Signed by: Anri
GPG key ID: A82D63DFF8D1317F
2 changed files with 2 additions and 1 deletions

View file

@ -2,6 +2,7 @@
## Pré-requis
```
requests-html==0.10.0
bs4==4.10.0
```
## Utilisation

View file

@ -1,5 +1,5 @@
from sys import argv
from requests import Session
from requests_html import BaseSession as Session
from bs4 import BeautifulSoup
class Universite: