awacke1 commited on
Commit
e73d5b7
·
1 Parent(s): 2faaefc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +32 -24
app.py CHANGED
@@ -36,11 +36,9 @@ def display_cosmos_db_structure():
36
  if st.button('Show Cosmos DB Structure'):
37
  display_cosmos_db_structure()
38
 
39
-
40
-
41
  # Function to Add or Update an Item
42
- def add_or_update_item(database_name, container_name, item_id, item_data):
43
- container = cosmos_client.get_database_client(database_name).get_container_client(container_name)
44
  try:
45
  existing_item = container.read_item(item_id, partition_key=PartitionKey(item_id))
46
  existing_item.update(item_data)
@@ -49,29 +47,39 @@ def add_or_update_item(database_name, container_name, item_id, item_data):
49
  container.create_item(item_data)
50
 
51
  # Test Function to Insert PNG Images
52
- def test_insert_png_images(database_name, container_name):
53
- png_files = glob.glob('*.png')
54
- for file_name in png_files:
55
- item_id = os.path.splitext(file_name)[0] # Use file name without extension as ID
56
- item_data = {"id": item_id, "file_name": file_name}
57
- add_or_update_item(database_name, container_name, item_id, item_data)
58
- st.write(f"Inserted: {file_name}")
59
-
60
- # Displaying Images
61
- st.subheader("Displaying Images in Container")
62
- items = list(cosmos_client.get_database_client(database_name).get_container_client(container_name).read_all_items())
63
- for item in items:
64
- if 'file_name' in item and item['file_name'].endswith('.png'):
65
- st.image(item['file_name'], caption=item['file_name'])
 
 
 
 
 
 
 
 
 
 
 
 
 
 
66
 
67
  # UI to Test Image Insertion Function
68
  if st.button('Test Insert PNG Images'):
69
- test_database_name = st.text_input('Enter Test Database Name')
70
- test_container_name = st.text_input('Enter Test Container Name')
71
- if test_database_name and test_container_name:
72
- test_insert_png_images(test_database_name, test_container_name)
73
- else:
74
- st.error('Please enter the test database and container names.')
75
 
76
 
77
  # Function to Add an Item
 
36
  if st.button('Show Cosmos DB Structure'):
37
  display_cosmos_db_structure()
38
 
 
 
39
  # Function to Add or Update an Item
40
+ def add_or_update_item(database_client, container_name, item_id, item_data):
41
+ container = database_client.get_container_client(container_name)
42
  try:
43
  existing_item = container.read_item(item_id, partition_key=PartitionKey(item_id))
44
  existing_item.update(item_data)
 
47
  container.create_item(item_data)
48
 
49
  # Test Function to Insert PNG Images
50
+ def test_insert_png_images():
51
+ # Get the first database and container
52
+ db_properties = next(cosmos_client.list_databases(), None)
53
+ if db_properties:
54
+ db_name = db_properties['id']
55
+ database_client = cosmos_client.get_database_client(db_name)
56
+ container_properties = next(database_client.list_containers(), None)
57
+ if container_properties:
58
+ container_name = container_properties['id']
59
+
60
+ # Insert PNG files
61
+ png_files = glob.glob('*.png')
62
+ for file_name in png_files:
63
+ item_id = os.path.splitext(file_name)[0] # Use file name without extension as ID
64
+ item_data = {"id": item_id, "file_name": file_name}
65
+ add_or_update_item(database_client, container_name, item_id, item_data)
66
+ st.write(f"Inserted: {file_name}")
67
+
68
+ # Displaying Images
69
+ st.subheader("Displaying Images in Container")
70
+ items = list(database_client.get_container_client(container_name).read_all_items())
71
+ for item in items:
72
+ if 'file_name' in item and item['file_name'].endswith('.png'):
73
+ st.image(item['file_name'], caption=item['file_name'])
74
+ else:
75
+ st.error("No container found in the database.")
76
+ else:
77
+ st.error("No database found.")
78
 
79
  # UI to Test Image Insertion Function
80
  if st.button('Test Insert PNG Images'):
81
+ test_insert_png_images()
82
+
 
 
 
 
83
 
84
 
85
  # Function to Add an Item