From 9ab0e74544d9e87acdc9d6c00f234a04a79e423f Mon Sep 17 00:00:00 2001 From: Pal Kerecsenyi Date: Thu, 18 Apr 2024 17:43:47 +0100 Subject: [PATCH] test --- main.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/main.py b/main.py index 0eef020..a2f04ae 100644 --- a/main.py +++ b/main.py @@ -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