mirror of
https://github.com/simon987/od-database.git
synced 2025-04-19 18:36:44 +00:00
14 lines
312 B
Python
14 lines
312 B
Python
import requests
|
|
import json
|
|
|
|
|
|
payload = json.dumps({
|
|
"url": "http://138.197.215.189/",
|
|
"priority": 2,
|
|
"callback_type": "",
|
|
"callback_args": "{}"
|
|
})
|
|
|
|
r = requests.post("http://localhost:5000/task/put",
|
|
headers={"Content-Type": "application/json"},
|
|
data=payload) |