├── .gitignore ├── Documents ├── Ambulance alerting system-FR.pdf └── Project Theseas.pdf ├── LICENSE ├── Planning ├── Ambulance Alerting System.pdf ├── Project Status 1st review.pdf └── Rough planning.txt ├── README.md └── code ├── Ambulance-Alerting-System.py ├── Discord ├── .env ├── bot.py └── test.py ├── Mapmyindia ├── index.html ├── mapmyindia.html └── nearby.html ├── SQL └── Database_Ambulance_alerting_system.sql ├── dev-in-jupyter ├── .ipynb_checkpoints │ └── Test-checkpoint.ipynb └── Test.ipynb └── python ├── app.py ├── mysql_connect.py ├── rough └── fun.html └── templates ├── Admin-Page.html ├── Ambulance_driver_Page.html ├── hospital.html ├── index.html └── traffic_police.html /.gitignore: -------------------------------------------------------------------------------- 1 | .env 2 | -------------------------------------------------------------------------------- /Documents/Ambulance alerting system-FR.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/Documents/Ambulance alerting system-FR.pdf -------------------------------------------------------------------------------- /Documents/Project Theseas.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/Documents/Project Theseas.pdf -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/LICENSE -------------------------------------------------------------------------------- /Planning/Ambulance Alerting System.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/Planning/Ambulance Alerting System.pdf -------------------------------------------------------------------------------- /Planning/Project Status 1st review.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/Planning/Project Status 1st review.pdf -------------------------------------------------------------------------------- /Planning/Rough planning.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/Planning/Rough planning.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/README.md -------------------------------------------------------------------------------- /code/Ambulance-Alerting-System.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/Ambulance-Alerting-System.py -------------------------------------------------------------------------------- /code/Discord/.env: -------------------------------------------------------------------------------- 1 | TOKEN="MTA0NTkwMjA4NjkxNjgyMTAxMg.Gn8zpD.O8U35G2Y4xgHtuWb7LMgE8KZpmco9-aSHs_N_w" -------------------------------------------------------------------------------- /code/Discord/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/Discord/bot.py -------------------------------------------------------------------------------- /code/Discord/test.py: -------------------------------------------------------------------------------- 1 | import os 2 | 3 | print(os.getenv("TOKEN")) -------------------------------------------------------------------------------- /code/Mapmyindia/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/Mapmyindia/index.html -------------------------------------------------------------------------------- /code/Mapmyindia/mapmyindia.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/Mapmyindia/mapmyindia.html -------------------------------------------------------------------------------- /code/Mapmyindia/nearby.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/Mapmyindia/nearby.html -------------------------------------------------------------------------------- /code/SQL/Database_Ambulance_alerting_system.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/SQL/Database_Ambulance_alerting_system.sql -------------------------------------------------------------------------------- /code/dev-in-jupyter/.ipynb_checkpoints/Test-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/dev-in-jupyter/.ipynb_checkpoints/Test-checkpoint.ipynb -------------------------------------------------------------------------------- /code/dev-in-jupyter/Test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/dev-in-jupyter/Test.ipynb -------------------------------------------------------------------------------- /code/python/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/python/app.py -------------------------------------------------------------------------------- /code/python/mysql_connect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/python/mysql_connect.py -------------------------------------------------------------------------------- /code/python/rough/fun.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/python/rough/fun.html -------------------------------------------------------------------------------- /code/python/templates/Admin-Page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/python/templates/Admin-Page.html -------------------------------------------------------------------------------- /code/python/templates/Ambulance_driver_Page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/python/templates/Ambulance_driver_Page.html -------------------------------------------------------------------------------- /code/python/templates/hospital.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/python/templates/hospital.html -------------------------------------------------------------------------------- /code/python/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/python/templates/index.html -------------------------------------------------------------------------------- /code/python/templates/traffic_police.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cibi-p/Ambulance-Alerting-System/HEAD/code/python/templates/traffic_police.html --------------------------------------------------------------------------------