Spaces:
Sleeping
Sleeping
Update database.py
Browse files- database.py +10 -2
database.py
CHANGED
@@ -6,13 +6,20 @@ metadata_obj = MetaData()
|
|
6 |
|
7 |
# Function to check existing tables
|
8 |
def get_existing_tables():
|
9 |
-
"""
|
|
|
|
|
|
|
|
|
|
|
10 |
inspector = inspect(engine)
|
11 |
return inspector.get_table_names()
|
12 |
|
13 |
# Function to initialize database if empty
|
14 |
def initialize_database():
|
15 |
-
"""
|
|
|
|
|
16 |
tables = get_existing_tables()
|
17 |
if not tables:
|
18 |
print("No tables found in the database. Please upload an SQL file.")
|
@@ -20,3 +27,4 @@ def initialize_database():
|
|
20 |
print(f"Database initialized with tables: {tables}")
|
21 |
|
22 |
initialize_database()
|
|
|
|
6 |
|
7 |
# Function to check existing tables
|
8 |
def get_existing_tables():
|
9 |
+
"""
|
10 |
+
Returns a list of existing tables in the database.
|
11 |
+
|
12 |
+
Returns:
|
13 |
+
list: List of table names.
|
14 |
+
"""
|
15 |
inspector = inspect(engine)
|
16 |
return inspector.get_table_names()
|
17 |
|
18 |
# Function to initialize database if empty
|
19 |
def initialize_database():
|
20 |
+
"""
|
21 |
+
Checks if database is empty and prompts user to upload an SQL file if needed.
|
22 |
+
"""
|
23 |
tables = get_existing_tables()
|
24 |
if not tables:
|
25 |
print("No tables found in the database. Please upload an SQL file.")
|
|
|
27 |
print(f"Database initialized with tables: {tables}")
|
28 |
|
29 |
initialize_database()
|
30 |
+
|