Platform bundle: marketing publish, IT ops, packaging, agents mesh.

Volledige Foodlinkk Command Center uitbreiding met social automatisering,
reclamefolder filters, Proxmox monitoring en documentatie.
This commit is contained in:
Aissa
2026-06-09 00:41:27 +00:00
commit 5d60d33db1
212 changed files with 30044 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
#!/usr/bin/env python3
"""Nightly research + recommendations refresh."""
import json
import urllib.request
TOOLS = "http://10.4.7.18:8700"
def post(path):
req = urllib.request.Request(f"{TOOLS}{path}", method="POST", headers={"Content-Length": "0"})
with urllib.request.urlopen(req, timeout=120) as r:
return json.loads(r.read())
if __name__ == "__main__":
print("research", post("/research/run"))
print("recommendations", post("/recommendations/generate"))