I am writing a client to enter the site, I have to send my login and password through POST . The problem is that the login name is "login" but the password is "pass" . Because of this, when you run the code, the python swears at pass (writes invalid syntax)
Swears on pass = in this line:
data = dict(email='Login', pass='Password' )
What is the way to show python that pass is not an operator , but a name ?
data = {'email': 'Login', 'pass': 'Password'}- andreymal