od-database/debug_put.py

19 lines
501 B
Python

import requests
import json
payload = json.dumps({
"website_id": 123,
"url": "https://computerarchive.org/files/computer/",
# "url": "http://localhost:8000/",
# "url": "http://ubuntu.mirrorservice.org/",
"priority": 2,
"callback_type": "",
"callback_args": "{}"
})
r = requests.post("http://localhost:5001/task/put",
headers={"Content-Type": "application/json",
"Authorization": "Token abc"},
data=payload)