omkar56 commited on
Commit
8f445e9
·
1 Parent(s): b39d66b

Update main.py

Browse files
Files changed (1) hide show
  1. main.py +5 -5
main.py CHANGED
@@ -41,11 +41,11 @@ async def ocr(
41
  # languages: list = Body(["eng"])
42
  ):
43
  try:
44
- print("[Hello]", image.filename.split(".")[-1].lower())
45
- # Check if the file format is allowed
46
- file_extension = image.filename.split(".")[-1].lower()
47
- if file_extension not in VALID_IMAGE_EXTENSIONS:
48
- raise HTTPException(status_code=400, detail="Invalid file format. Only .jpg, .jpeg, and .png are allowed.")
49
 
50
  content = await image.read()
51
  image = Image.open(BytesIO(content))
 
41
  # languages: list = Body(["eng"])
42
  ):
43
  try:
44
+ # print("[Hello]", image.filename.split(".")[-1].lower())
45
+ # # Check if the file format is allowed
46
+ # file_extension = image.filename.split(".")[-1].lower()
47
+ # if file_extension not in VALID_IMAGE_EXTENSIONS:
48
+ # raise HTTPException(status_code=400, detail="Invalid file format. Only .jpg, .jpeg, and .png are allowed.")
49
 
50
  content = await image.read()
51
  image = Image.open(BytesIO(content))