Can't log on to the website. POST request returns status code 200, but displays the login page. What could be the problem?
s = requests.Session()
url = 'https://edu.susu.ru/'
r = s.get(url)
soup = BeautifulSoup(r.text, 'html.parser')
token = soup.find('input', dict(name='logintoken'))['value']
data = {'anchor':",
'usernam...