Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -48,7 +48,7 @@ def load_data(table):
|
|
48 |
"""fertility, geo data, labor, population y predictions """
|
49 |
try:
|
50 |
if supabase:
|
51 |
-
response = supabase.from_(
|
52 |
print(f"Response object: {response}") # Inspect the entire response
|
53 |
print(f"Response type: {type(response)}") # Check the object type
|
54 |
|
|
|
48 |
"""fertility, geo data, labor, population y predictions """
|
49 |
try:
|
50 |
if supabase:
|
51 |
+
response = supabase.from_(table).select("*").execute()
|
52 |
print(f"Response object: {response}") # Inspect the entire response
|
53 |
print(f"Response type: {type(response)}") # Check the object type
|
54 |
|