idan1356 / flask_OCR_Service

Optical Character Recognition (OCR) Web Service built with Flask-RESTx. Upload images (JPG, JPEG, PNG) and extract text content using OCR technology. Returns results and processed images.
MIT License
1 stars 0 forks source link

Does not work #1

Open Roboxkin opened 6 months ago

Roboxkin commented 6 months ago

Nothing happens when I start, I tried it several times on a clean installation of Python 3.9.0

idan1356 commented 6 months ago

Hi, this project was made for educational purpose only, and i suggest directly using EasyOCR which this project wraps. However if you would still like to use it, i fixed it by adding modifying the app.py file to include: if __name__ == "__main__": app.run(debug=True) This change ensures that the app runs when the script is executed.