├── LICENSE ├── Procfile ├── README.md ├── app.json ├── constants.py ├── ocrbot.py ├── requirements.txt ├── runtime.txt └── testing.jpg /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/ocrbot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 ocrbot.py 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/ocrbot/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- 1 | { 2 | "stack": "heroku-16" 3 | } 4 | -------------------------------------------------------------------------------- /constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/ocrbot/HEAD/constants.py -------------------------------------------------------------------------------- /ocrbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/ocrbot/HEAD/ocrbot.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-telegram-bot 2 | pytesseract 3 | -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.9.0 2 | -------------------------------------------------------------------------------- /testing.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cyberboysumanjay/ocrbot/HEAD/testing.jpg --------------------------------------------------------------------------------