#scrapping
8 messages · Page 1 of 1 (latest)
No one can help if you don't ask your question
I am actually on the same problem but yeah
i can help you maybe
from asyncio.windows_events import NULL
import requests
from bs4 import BeautifulSoup
Define the login credentials
email = 'wefwef@rewgf.com'
password = '123
Define the URL to scrape
url = 'https://your_URL'
Create a session and perform login
session = requests.Session()
login_data = {'email': email, 'password': password}
session.post(login_url, data=login_data)
response = session.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
print(soup.prettify())
those are the basics
but in python
@frank storm do you need more specific help?