├── .gitignore ├── HelperFunctions.py ├── License.txt ├── Message.py ├── README.md ├── Test Files ├── PyTesseract.py └── SpeechRecog.py ├── bunk_bot.py ├── coordinate_finder.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | .idea -------------------------------------------------------------------------------- /HelperFunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaysathya/Automated_Attending_System/HEAD/HelperFunctions.py -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaysathya/Automated_Attending_System/HEAD/License.txt -------------------------------------------------------------------------------- /Message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaysathya/Automated_Attending_System/HEAD/Message.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaysathya/Automated_Attending_System/HEAD/README.md -------------------------------------------------------------------------------- /Test Files/PyTesseract.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaysathya/Automated_Attending_System/HEAD/Test Files/PyTesseract.py -------------------------------------------------------------------------------- /Test Files/SpeechRecog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaysathya/Automated_Attending_System/HEAD/Test Files/SpeechRecog.py -------------------------------------------------------------------------------- /bunk_bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaysathya/Automated_Attending_System/HEAD/bunk_bot.py -------------------------------------------------------------------------------- /coordinate_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaysathya/Automated_Attending_System/HEAD/coordinate_finder.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sujaysathya/Automated_Attending_System/HEAD/requirements.txt --------------------------------------------------------------------------------