Подправил маркеры на карте

This commit is contained in:
2025-12-03 11:47:41 +03:00
parent d7d85ac834
commit 51eb5f3732
7 changed files with 358 additions and 243 deletions

View File

@@ -64,5 +64,12 @@ def test_celery_connection():
print("=" * 60)
return True
if __name__ == "__main__":
test_celery_connection()
# if __name__ == "__main__":
# test_celery_connection()
import requests
url = f"https://www.lyngsat.com/europe.html"
payload = {"cmd": "request.get", "url": url, "maxTimeout": 60000}
response = requests.post("http://localhost:8191/v1", json=payload)
print(response.content)