Spaces:
Sleeping
Sleeping
hide information
Browse files
main.py
CHANGED
@@ -99,7 +99,7 @@ async def upload_image(image: UploadFile = File(...)):
|
|
99 |
# 画像ファイルの内容を保存または処理する
|
100 |
with open(temp_file_path, "wb") as buffer:
|
101 |
shutil.copyfileobj(image.file, buffer)
|
102 |
-
logger.info(f"target file : {temp_file_path}")
|
103 |
result = qrdec(temp_file_path)
|
104 |
-
logger.info(f"response : {result}")
|
105 |
return result
|
|
|
99 |
# 画像ファイルの内容を保存または処理する
|
100 |
with open(temp_file_path, "wb") as buffer:
|
101 |
shutil.copyfileobj(image.file, buffer)
|
102 |
+
# logger.info(f"target file : {temp_file_path}")
|
103 |
result = qrdec(temp_file_path)
|
104 |
+
# logger.info(f"response : {result}")
|
105 |
return result
|