awacke1 commited on
Commit
c55395e
Β·
1 Parent(s): 158a020

Create backup.py

Browse files
Files changed (1) hide show
  1. backup.py +78 -0
backup.py ADDED
@@ -0,0 +1,78 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ from azure.cosmos import CosmosClient
3
+ import os
4
+
5
+ # Load and save query files
6
+ def load_query(filename):
7
+ with open(filename, 'r') as file:
8
+ return file.read()
9
+
10
+ def save_query(filename, query):
11
+ with open(filename, 'w') as file:
12
+ file.write(query)
13
+
14
+ # Streamlit UI
15
+ st.title("Azure Cosmos DB Explorer πŸ‘½")
16
+
17
+ # Environment Variables for Cosmos DB Credentials
18
+ ACCOUNT_URI = os.environ.get('ACCOUNT_URI', 'Your Cosmos DB URI here')
19
+ ACCOUNT_KEY = os.environ.get('ACCOUNT_KEY', 'Your Cosmos DB Key here')
20
+
21
+ client = None
22
+
23
+ # Connection Details Expander
24
+ with st.expander("Connect 🌍"):
25
+ st.write("Environment Variables for Cosmos DB Credentials are pre-loaded.")
26
+ database_name = st.text_input("Database Name:", "")
27
+ container_name = st.text_input("Container Name:", "")
28
+ if st.button("Connect"):
29
+ try:
30
+ client = CosmosClient(ACCOUNT_URI, credential=ACCOUNT_KEY)
31
+ database_client = client.get_database_client(database_name)
32
+ container_client = database_client.get_container_client(container_name)
33
+ st.success("Connected successfully! πŸŽ‰")
34
+ except Exception as e:
35
+ st.error(f"Failed to connect: {e}")
36
+
37
+ # Query Editor Expander
38
+ with st.expander("Query Editor πŸ“"):
39
+ query = st.text_area("Enter your SQL query here:", "")
40
+ file_option = st.selectbox("File Options", ["New", "Open", "Save", "Save As"])
41
+
42
+ if file_option == "New":
43
+ query = ""
44
+ elif file_option == "Open":
45
+ open_file = st.file_uploader("Choose a file:", type=["txt"])
46
+ if open_file is not None:
47
+ query = load_query(open_file)
48
+ elif file_option == "Save":
49
+ save_filename = st.text_input("Enter filename to save:", "my_query.txt")
50
+ if st.button("Save Query"):
51
+ save_query(save_filename, query)
52
+ elif file_option == "Save As":
53
+ saveas_filename = st.text_input("Enter new filename:", "my_new_query.txt")
54
+ if st.button("Save As"):
55
+ save_query(saveas_filename, query)
56
+
57
+ if st.button("Execute Query πŸš€"):
58
+ if client:
59
+ try:
60
+ items = list(container_client.query_items(
61
+ query=query,
62
+ enable_cross_partition_query=True
63
+ ))
64
+ st.write("Results πŸ“‹:")
65
+ st.json(items)
66
+ except Exception as e:
67
+ st.error(f"Query failed: {e}")
68
+ else:
69
+ st.warning("Not connected to any Cosmos DB. Please connect first.")
70
+
71
+ # Instructions
72
+ st.markdown("""
73
+ ## Instructions to Run this App:
74
+ 1. **Environment Variables**: Set the `ACCOUNT_URI` and `ACCOUNT_KEY` environment variables with your Azure Cosmos DB URI and Key respectively.
75
+ 2. **Install Packages**: If you haven't, install the required Python packages:
76
+ 3. **Run App**: Save this code in a file, say `streamlit_cosmosdb_app.py`, and then run `streamlit run streamlit_cosmosdb_app.py`.
77
+ 4. **Execute**: Use the UI to connect and run SQL queries against your Cosmos DB.
78
+ """)