Есть код:
Нужно авторизоваться на сайте и спарсить юзернайм из личного кабинета.
Код выводит [none]
Подскажите, что я делаю не так ?
Спасибо!
Python:
import requests
from bs4 import BeautifulSoup
url = 'https://store.x-plane.org/login.asp?ordertracking=1'
url_next = 'https://store.x-plane.org/myaccount.asp'
url_out = 'https://store.x-plane.org/logout.asp'
headers = {'User-Agent' : 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36 OPR/93.0.0.0 (Edition Yx 05)'}
s = requests.Session()
req = s.post(url, data={'email': 'myachin.stanislas@yandex.ru', 'password': 'myachin.stanislas@yandex.ru'}, headers=headers)
next = s.get(url_next)
soup = BeautifulSoup(next.text, "html.parser")
name = soup.find('div', class_='username')
print(name)
Нужно авторизоваться на сайте и спарсить юзернайм из личного кабинета.
Код выводит [none]
Подскажите, что я делаю не так ?
Спасибо!