Spaces:
Sleeping
Sleeping
Update main.py
Browse files
main.py
CHANGED
|
@@ -73,11 +73,11 @@ async def process_batch_data(batch_id: str):
|
|
| 73 |
print("Printing the the data")
|
| 74 |
print(supa_data)
|
| 75 |
|
| 76 |
-
|
| 77 |
-
|
| 78 |
-
|
| 79 |
-
|
| 80 |
-
|
| 81 |
print("Completed processing")
|
| 82 |
|
| 83 |
except Exception as e:
|
|
|
|
| 73 |
print("Printing the the data")
|
| 74 |
print(supa_data)
|
| 75 |
|
| 76 |
+
insert_response = (
|
| 77 |
+
supabase.table("receipt_radar_structured_data_duplicate")
|
| 78 |
+
.insert(supa_data)
|
| 79 |
+
.execute()
|
| 80 |
+
)
|
| 81 |
print("Completed processing")
|
| 82 |
|
| 83 |
except Exception as e:
|