Files
demotel-product-catalog/app.py
T
2026-09-07 14:52:33 +00:00

5 lines
95 B
Python

import json
with open("products.json","r") as f:
products = json.load(f)
print("products")