MarioPrzBasto commited on
Commit
0ff0ccc
·
verified ·
1 Parent(s): 51dcd2c

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +3 -1
main.py CHANGED
@@ -10,7 +10,9 @@ app = FastAPI()
10
  BASE_DIR = "/tmp/data"
11
 
12
  @app.post("/save")
13
- async def save(image_data: RequestModel):
 
 
14
  os.makedirs(BASE_DIR, exist_ok=True)
15
  filename = os.path.join(BASE_DIR, f"{image_data.originId}_{image_data.assetCode}.json")
16
  with open(filename, "w") as f:
 
10
  BASE_DIR = "/tmp/data"
11
 
12
  @app.post("/save")
13
+ async def save(image_data: RequestModel, request: Request):
14
+ body = await request.body()
15
+ print("RAW BODY RECEIVED →", body.decode())
16
  os.makedirs(BASE_DIR, exist_ok=True)
17
  filename = os.path.join(BASE_DIR, f"{image_data.originId}_{image_data.assetCode}.json")
18
  with open(filename, "w") as f: