Spaces:
Running
Running
Update main.py
Browse files
main.py
CHANGED
@@ -10,12 +10,11 @@ app = FastAPI()
|
|
10 |
BASE_DIR = "/tmp/data"
|
11 |
|
12 |
@app.post("/save")
|
13 |
-
async def save(
|
14 |
os.makedirs(BASE_DIR, exist_ok=True)
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
json.dump(image_data.dict(), f, indent=4)
|
19 |
return True
|
20 |
|
21 |
@app.get("/files")
|
|
|
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:
|
17 |
+
json.dump(image_data.dict(), f, indent=4)
|
|
|
18 |
return True
|
19 |
|
20 |
@app.get("/files")
|