├── .gitattributes ├── .gitignore ├── Documentation.pdf ├── How to run this project.txt ├── LICENSE ├── Video link.txt ├── attendance ├── I2C_LCD_driver.py ├── __init__.py ├── app.db ├── attendanceKeypad.py ├── delete.py ├── enroll.py ├── keypad.py ├── lcd_hello.py ├── pyfingerprint.py └── test.py └── project ├── I2C_LCD_driver.py ├── __init__.py ├── db_sqlite3 └── app.db ├── delete.py ├── enroll.py ├── lcd_hello.py ├── project_app.py ├── pyfingerprint.py ├── static ├── css │ ├── bootstrap.css │ └── bootstrap.min.css ├── images │ ├── jntua.png │ └── logo.png └── js │ ├── bootstrap.bundle.js │ ├── bootstrap.bundle.min.js │ ├── bootstrap.js │ ├── bootstrap.min.js │ └── jquery-3.3.1.min.js ├── templates ├── by_date.html ├── by_group.html ├── by_roll.html ├── enroll_form.html ├── generate_reports.html ├── layout.html ├── login.html ├── logout.html └── main.html └── uwsgi_config.ini /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/.gitignore -------------------------------------------------------------------------------- /Documentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/Documentation.pdf -------------------------------------------------------------------------------- /How to run this project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/How to run this project.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/LICENSE -------------------------------------------------------------------------------- /Video link.txt: -------------------------------------------------------------------------------- 1 | https://youtu.be/TFRK6G71Jo4 -------------------------------------------------------------------------------- /attendance/I2C_LCD_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/I2C_LCD_driver.py -------------------------------------------------------------------------------- /attendance/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/__init__.py -------------------------------------------------------------------------------- /attendance/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/app.db -------------------------------------------------------------------------------- /attendance/attendanceKeypad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/attendanceKeypad.py -------------------------------------------------------------------------------- /attendance/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/delete.py -------------------------------------------------------------------------------- /attendance/enroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/enroll.py -------------------------------------------------------------------------------- /attendance/keypad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/keypad.py -------------------------------------------------------------------------------- /attendance/lcd_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/lcd_hello.py -------------------------------------------------------------------------------- /attendance/pyfingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/pyfingerprint.py -------------------------------------------------------------------------------- /attendance/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/attendance/test.py -------------------------------------------------------------------------------- /project/I2C_LCD_driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/I2C_LCD_driver.py -------------------------------------------------------------------------------- /project/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/__init__.py -------------------------------------------------------------------------------- /project/db_sqlite3/app.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/db_sqlite3/app.db -------------------------------------------------------------------------------- /project/delete.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/delete.py -------------------------------------------------------------------------------- /project/enroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/enroll.py -------------------------------------------------------------------------------- /project/lcd_hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/lcd_hello.py -------------------------------------------------------------------------------- /project/project_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/project_app.py -------------------------------------------------------------------------------- /project/pyfingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/pyfingerprint.py -------------------------------------------------------------------------------- /project/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/static/css/bootstrap.css -------------------------------------------------------------------------------- /project/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /project/static/images/jntua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/static/images/jntua.png -------------------------------------------------------------------------------- /project/static/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/static/images/logo.png -------------------------------------------------------------------------------- /project/static/js/bootstrap.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/static/js/bootstrap.bundle.js -------------------------------------------------------------------------------- /project/static/js/bootstrap.bundle.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/static/js/bootstrap.bundle.min.js -------------------------------------------------------------------------------- /project/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/static/js/bootstrap.js -------------------------------------------------------------------------------- /project/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /project/static/js/jquery-3.3.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/static/js/jquery-3.3.1.min.js -------------------------------------------------------------------------------- /project/templates/by_date.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/templates/by_date.html -------------------------------------------------------------------------------- /project/templates/by_group.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/templates/by_group.html -------------------------------------------------------------------------------- /project/templates/by_roll.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/templates/by_roll.html -------------------------------------------------------------------------------- /project/templates/enroll_form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/templates/enroll_form.html -------------------------------------------------------------------------------- /project/templates/generate_reports.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/templates/generate_reports.html -------------------------------------------------------------------------------- /project/templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/templates/layout.html -------------------------------------------------------------------------------- /project/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/templates/login.html -------------------------------------------------------------------------------- /project/templates/logout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/templates/logout.html -------------------------------------------------------------------------------- /project/templates/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/templates/main.html -------------------------------------------------------------------------------- /project/uwsgi_config.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/moka1309/Biometric-Attendance-System-using-Python-and-Raspberry-pi-3-/HEAD/project/uwsgi_config.ini --------------------------------------------------------------------------------