test
All checks were successful
/ build (push) Successful in 37s

This commit is contained in:
Pal Kerecsenyi 2024-04-18 17:43:47 +01:00
parent bd0794bd28
commit 9ab0e74544
Signed by: palk
GPG Key ID: 6891661E25394C2C

View File

@ -13,6 +13,9 @@ bullets = ["▶"]
@app.post("/")
def process_file():
print(request)
print(request.content_type)
print(request.files)
file = request.files["file"]
if file is None:
return "file not found", 400