11 lines
290 B
Python
11 lines
290 B
Python
|
|
from open_response import OpenABC
|
||
|
|
|
||
|
|
# x = OpenABC()
|
||
|
|
# print(x.md5sum("admin"))
|
||
|
|
|
||
|
|
import requests
|
||
|
|
|
||
|
|
html = requests.post(url="http://localhost:5000/main/login", data={"username": "admin",
|
||
|
|
"password": "admin"})
|
||
|
|
print(html.text)
|