+ 6
How to login using beautiful soup module
5 Réponses
+ 4
I don't know but this guys seems to know.
http://kazuar.github.io/scraping-tutorial/
+ 4
Niwo and Kevin Oudai thank you so much for your help 👍
+ 2
I don't know the module well, but you could try something like that:
import requests
from bs4 import BeautifulSoup
import webbrowser
your_page = requests.get("https://your_url.com", auth=
('username', 'password'))
soup_res = BeautifulSoup(your_page .content, 'html.parser')
print(soup_res)
+ 1
Nice
0
True