mirror of
https://github.com/dimoniche/solarium.vlad.git
synced 2026-01-30 04:53:30 +03:00
12 lines
242 B
Python
12 lines
242 B
Python
import requests
|
|
|
|
HTTP_PATH = "http://192.168.0.250/command"
|
|
|
|
data = "Command,Password,User_ID,BalanceTime,BalanceMoney\n\ruser_req_time,7601,12345,-1,1000\n\r"
|
|
|
|
r = requests.post(url = HTTP_PATH, data = data)
|
|
|
|
print r
|
|
print r.text
|
|
|