Omkar008 commited on
Commit
507f1f1
·
verified ·
1 Parent(s): 65deffd

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +5 -5
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
- # insert_response = (
77
- # supabase.table("imdb_outputs")
78
- # .insert()
79
- # .execute()
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: