add basics

This commit is contained in:
2026-02-05 22:01:07 +01:00
parent 7e75de3298
commit 24d8c9c8af
7 changed files with 173 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
import json
import urllib.request
REGISTRY_URL = "https://raw.githubusercontent.com/acme/registry/main/registry.json"
def load_registry():
with urllib.request.urlopen(REGISTRY_URL) as r:
return json.load(r)