online compiler and debugger for c/c++

code. compile. run. debug. share.
Source Code    Language
import requests from bs4 import BeautifulSoup def Auth(): session = requests.Session() html = session.get('https://statname.net/login') #Получаем код soup = BeautifulSoup(html.text, 'html.parser') #Получаем токен из формы #<input type="hidden" name="_token" value="bE1t0IvIgu058F9izTl7ujcWYFzA6F91sAwR1IXi"> input_hidden_token = soup.find('input')['value'] post_req = {'_token': input_hidden_token, 'email': '[email protected]', 'password': '12345678'} r = session.post('https://statname.net/login', params=post_req) print(r) print(r.text) Auth()

Compiling Program...

Command line arguments:
Standard Input: Interactive Console Text
×

                

                

Program is not being debugged. Click "Debug" button to start program in debug mode.

#FunctionFile:Line
VariableValue
RegisterValue
ExpressionValue