mirror of
https://github.com/simon987/od-database.git
synced 2025-04-19 10:26:44 +00:00
16 lines
340 B
Python
16 lines
340 B
Python
import requests
|
|
import json
|
|
|
|
|
|
payload = json.dumps({
|
|
"website_id": 123,
|
|
"url": "http://liminaire.fr/TEXTES/",
|
|
"priority": 2,
|
|
"callback_type": "",
|
|
"callback_args": "{}"
|
|
})
|
|
|
|
r = requests.post("http://localhost:5001/task/put",
|
|
headers={"Content-Type": "application/json"},
|
|
data=payload)
|