11 lines
290 B
Python
Raw Normal View History

2025-03-19 18:00:58 +08:00
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)