Your Name 3 år sedan
förälder
incheckning
fbf75666c0
1 ändrade filer med 1 tillägg och 1 borttagningar
  1. 1 1
      apis/main.py

+ 1 - 1
apis/main.py

@@ -10,7 +10,7 @@ app = FastAPI()
 
 @app.post("/items")
 async def read_item(search_query: str = Form(...)):
-    unq=urllib.parse.unquote(search_query)
+    unq=search_query.decode("utf-8")
     print(unq)
     fw=codecs.open('/tmp/script.txt','w','utf-8')
     fw.write(unq)