How to login using beautiful soup module | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 6

How to login using beautiful soup module

20th Apr 2019, 11:39 AM
Programmer Raja
Programmer Raja - avatar
5 Answers
+ 4
I don't know but this guys seems to know. http://kazuar.github.io/scraping-tutorial/
20th Apr 2019, 12:11 PM
Kevin Oudai
Kevin Oudai - avatar
+ 4
Niwo and Kevin Oudai thank you so much for your help 👍
20th Apr 2019, 1:11 PM
Programmer Raja
Programmer Raja - avatar
+ 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)
20th Apr 2019, 12:20 PM
Niwo
Niwo - avatar
+ 1
Nice
21st Apr 2019, 11:37 AM
Mijair Obispo
Mijair Obispo - avatar
0
True
21st Apr 2019, 1:12 AM
Nguindjokou Sona Yannick
Nguindjokou Sona Yannick - avatar