From d0618e7d06e312c7a34bbbf7a80e1785be89fb8f Mon Sep 17 00:00:00 2001 From: admin Date: Mon, 7 Sep 2026 14:52:33 +0000 Subject: [PATCH] Update app.py --- app.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app.py b/app.py index 19197cd..6f19e2c 100644 --- a/app.py +++ b/app.py @@ -1 +1,5 @@ -print("DemoTel Product Catalog") \ No newline at end of file +import json + +with open("products.json","r") as f: + products = json.load(f) +print("products") \ No newline at end of file