This commit is contained in:
2026-02-24 12:50:25 +00:00
parent 9958763f6f
commit d9796b0b87

View File

@@ -17,7 +17,7 @@ req = urllib.request.Request(
method="POST"
)
with urllib.request.urlopen(url, timeout=10) as response:
with urllib.request.urlopen(req, timeout=10) as response:
data = response.read()
json_data = json.loads(data)