awacke1 commited on
Commit
66fb743
·
1 Parent(s): 5f956b2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +58 -64
app.py CHANGED
@@ -3,88 +3,65 @@ import streamlit as st
3
  from azure.cosmos import CosmosClient, PartitionKey
4
  from azure.storage.blob import BlobServiceClient
5
  from azure.cosmos.exceptions import CosmosResourceNotFoundError
6
-
7
  import requests
8
  import glob
 
9
 
10
- # Environment Variables
11
  COSMOS_CONNECTION_STRING = os.getenv('COSMOS_CONNECTION_STRING')
12
  BLOB_STORAGE_CONNECTION_STRING = os.getenv('BLOB_STORAGE_CONNECTION_STRING')
13
-
14
- # Initialize Azure Cosmos DB Client
15
  cosmos_client = CosmosClient.from_connection_string(COSMOS_CONNECTION_STRING)
16
-
17
- # Initialize Azure Blob Storage Client
18
  blob_service = BlobServiceClient.from_connection_string(BLOB_STORAGE_CONNECTION_STRING)
19
 
20
- # Function to Retrieve and Display Cosmos DB Structure
21
- def display_cosmos_db_structure():
 
 
 
 
 
 
 
 
 
 
 
 
 
22
  st.subheader('Azure Cosmos DB Structure')
23
- db_properties = next(cosmos_client.list_databases(), None)
24
- if db_properties:
25
  db_name = db_properties['id']
26
  st.markdown(f"#### Database: {db_name}")
27
  database_client = cosmos_client.get_database_client(db_name)
28
- container_properties = next(database_client.list_containers(), None)
29
- if container_properties:
30
  container_name = container_properties['id']
31
  st.markdown(f"- **Container**: {container_name}")
32
  container_client = database_client.get_container_client(container_name)
33
- items = list(container_client.read_all_items())
34
- for item in items:
35
  item_desc = f" - Item: `{item['id']}`"
36
- if 'file_name' in item and item['file_name'].endswith('.png'):
37
- st.markdown(item_desc)
38
  st.image(item['file_name'])
39
- else:
40
- st.markdown(item_desc)
 
 
 
41
 
42
- # Button to Trigger Display of Cosmos DB Structure
43
- if st.button('Show Cosmos DB Structure'):
44
- display_cosmos_db_structure()
 
 
45
 
46
- # Function to Add or Update PNG Images
47
- def add_or_update_png_images():
48
- db_properties = next(cosmos_client.list_databases(), None)
49
- if db_properties:
50
- db_name = db_properties['id']
51
- database_client = cosmos_client.get_database_client(db_name)
52
- container_properties = next(database_client.list_containers(), None)
53
- if container_properties:
54
- container_name = container_properties['id']
55
- container_client = database_client.get_container_client(container_name)
56
- existing_items = list(container_client.read_all_items())
57
- existing_ids = {item['id'] for item in existing_items}
58
-
59
- # Add or update PNG files from directory
60
- png_files = glob.glob('*.png')
61
- for file_name in png_files:
62
- item_id = os.path.splitext(file_name)[0]
63
- item_data = {"id": item_id, "file_name": file_name}
64
-
65
- if item_id not in existing_ids:
66
- container_client.create_item(body=item_data)
67
- st.write(f"Added Item: {item_id}")
68
- else:
69
- delete_button = st.button(f"🗑️ Delete {item_id}", key=f"delete_{item_id}")
70
- if delete_button:
71
- # Attempt to delete the item
72
- try:
73
- container_client.delete_item(item=item_id, partition_key=item_id)
74
- # Verify deletion by trying to read the deleted item
75
- try:
76
- container_client.read_item(item=item_id, partition_key=item_id)
77
- st.error(f"Failed to delete Item: {item_id}")
78
- except CosmosResourceNotFoundError:
79
- st.success(f"Successfully deleted Item: {item_id}")
80
- except Exception as e:
81
- st.error(f"Error deleting Item: {item_id}. Error: {str(e)}")
82
-
83
- st.write(f"Item already exists: {item_id}")
84
-
85
- # UI to Add or Update PNG Images
86
- if st.button('Manage PNG Images'):
87
- add_or_update_png_images()
88
 
89
  # Azure Blob Storage - Upload/Download
90
  st.subheader('Azure Blob Storage - Upload/Download')
@@ -94,6 +71,7 @@ blob_file = st.file_uploader('Upload file to Blob')
94
  if blob_file is not None and st.button('Upload to Blob'):
95
  blob_client = blob_service.get_blob_client(container=blob_container, blob=blob_file.name)
96
  blob_client.upload_blob(blob_file.getvalue())
 
97
 
98
  # Azure Functions - Trigger
99
  st.subheader('Azure Functions - Trigger')
@@ -101,4 +79,20 @@ function_url = st.text_input('Function URL')
101
 
102
  if st.button('Call Azure Function'):
103
  response = requests.get(function_url)
104
- st.write('Function Response:', response.text)
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3
  from azure.cosmos import CosmosClient, PartitionKey
4
  from azure.storage.blob import BlobServiceClient
5
  from azure.cosmos.exceptions import CosmosResourceNotFoundError
 
6
  import requests
7
  import glob
8
+ from datetime import datetime
9
 
10
+ # Initialize Azure Clients
11
  COSMOS_CONNECTION_STRING = os.getenv('COSMOS_CONNECTION_STRING')
12
  BLOB_STORAGE_CONNECTION_STRING = os.getenv('BLOB_STORAGE_CONNECTION_STRING')
 
 
13
  cosmos_client = CosmosClient.from_connection_string(COSMOS_CONNECTION_STRING)
 
 
14
  blob_service = BlobServiceClient.from_connection_string(BLOB_STORAGE_CONNECTION_STRING)
15
 
16
+ # Function to Delete All Items in a Container
17
+ def delete_all_items_in_container(db_name, container_name):
18
+ database_client = cosmos_client.get_database_client(db_name)
19
+ container_client = database_client.get_container_client(container_name)
20
+
21
+ for item in container_client.read_all_items():
22
+ try:
23
+ container_client.delete_item(item=item['id'], partition_key=item['id'])
24
+ st.write(f"Deleted Item: {item['id']}")
25
+ except CosmosResourceNotFoundError:
26
+ st.error(f"Item not found: {item['id']}")
27
+
28
+
29
+ # Display and Manage Cosmos DB Structure
30
+ def display_and_manage_cosmos_db():
31
  st.subheader('Azure Cosmos DB Structure')
32
+ for db_properties in cosmos_client.list_databases():
 
33
  db_name = db_properties['id']
34
  st.markdown(f"#### Database: {db_name}")
35
  database_client = cosmos_client.get_database_client(db_name)
36
+
37
+ for container_properties in database_client.list_containers():
38
  container_name = container_properties['id']
39
  st.markdown(f"- **Container**: {container_name}")
40
  container_client = database_client.get_container_client(container_name)
41
+
42
+ for item in container_client.read_all_items():
43
  item_desc = f" - Item: `{item['id']}`"
44
+ st.markdown(item_desc)
45
+ if 'file_name' in item:
46
  st.image(item['file_name'])
47
+
48
+ # Update and Delete buttons for each item
49
+ if st.button(f"🗑️ Delete {item['id']}", key=f"delete_{item['id']}"):
50
+ container_client.delete_item(item=item['id'], partition_key=item['id'])
51
+ st.success(f"Deleted Item: {item['id']}")
52
 
53
+ # Insert PNG Images with Unique Identifiers
54
+ def insert_png_images_with_unique_ids():
55
+ db_name = st.selectbox("Select Database", [db['id'] for db in cosmos_client.list_databases()])
56
+ container_name = st.selectbox("Select Container", [container['id'] for container in cosmos_client.get_database_client(db_name).list_containers()])
57
+ container_client = cosmos_client.get_database_client(db_name).get_container_client(container_name)
58
 
59
+ png_files = glob.glob('*.png')
60
+ for file_name in png_files:
61
+ unique_id = f"{os.path.splitext(file_name)[0]}_{datetime.now().strftime('%Y%m%d%H%M%S')}"
62
+ item_data = {"id": unique_id, "file_name": file_name}
63
+ container_client.create_item(body=item_data)
64
+ st.write(f"Inserted Item: {unique_id}")
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
65
 
66
  # Azure Blob Storage - Upload/Download
67
  st.subheader('Azure Blob Storage - Upload/Download')
 
71
  if blob_file is not None and st.button('Upload to Blob'):
72
  blob_client = blob_service.get_blob_client(container=blob_container, blob=blob_file.name)
73
  blob_client.upload_blob(blob_file.getvalue())
74
+ st.success('File uploaded successfully.')
75
 
76
  # Azure Functions - Trigger
77
  st.subheader('Azure Functions - Trigger')
 
79
 
80
  if st.button('Call Azure Function'):
81
  response = requests.get(function_url)
82
+ st.write('Function Response:', response.text)
83
+
84
+
85
+ # Display Cosmos DB Structure and Manage Items
86
+ display_and_manage_cosmos_db()
87
+
88
+ # Button to Insert PNG Images with Unique Identifiers
89
+ if st.button('Insert PNG Images with Unique IDs'):
90
+ insert_png_images_with_unique_ids()
91
+
92
+ # Button to Delete All Items in a Container
93
+ db_name_to_delete = st.selectbox("Select Database to Delete From", [db['id'] for db in cosmos_client.list_databases()])
94
+ container_name_to_delete = st.selectbox("Select Container to Delete From", [container['id'] for container in cosmos_client.get_database_client(db_name_to_delete).list_containers()])
95
+
96
+ if st.button('Delete All Items in Container'):
97
+ delete_all_items_in_container(db_name_to_delete, container_name_to_delete)
98
+ st.success("All items deleted successfully.")