Files
jpm/jeAddons/registry.py
T
2026-02-05 22:01:07 +01:00

10 lines
222 B
Python

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)