├── .gitattributes ├── .github └── workflows │ └── verify.yml ├── .gitignore ├── .overmind.yml ├── .vscode └── settings.json ├── ABOUT.md ├── AI INTEGRATION ├── App.py ├── Dockerfile ├── LICENSE ├── MANUAL-UPDATE.md ├── Models.py ├── Project Structure ├── Project Structure ├── README.md ├── Scrap missing persons data.py ├── add_to_path.py ├── ai_integration.py ├── ai_module.py ├── ai_services.py ├── ai_utils.py ├── app.py ├── app ├── Templates │ └── templates │ │ ├── add_person.html │ │ ├── all-missing-persons.html │ │ ├── gallery.html │ │ ├── index.html │ │ └── monitor_person.html ├── __init__.py ├── models.py ├── static │ ├── assets │ │ └── validate.js │ ├── css │ │ ├── blog.css │ │ ├── bootstrap.min.css │ │ ├── custom.css │ │ ├── icon_fonts │ │ │ └── font │ │ │ │ ├── ElegantIcons.eot │ │ │ │ ├── ElegantIcons.svg │ │ │ │ ├── ElegantIcons.ttf │ │ │ │ ├── ElegantIcons.woff │ │ │ │ ├── ElegantIconsd41d.eot │ │ │ │ ├── Glyphter.eot │ │ │ │ ├── Glyphter.svg │ │ │ │ ├── Glyphter.ttf │ │ │ │ ├── Glyphter.woff │ │ │ │ ├── Glyphterd41d.eot │ │ │ │ ├── Pe-icon-7-strokebb1d.eot │ │ │ │ ├── Pe-icon-7-strokebb1d.svg │ │ │ │ ├── Pe-icon-7-strokebb1d.ttf │ │ │ │ ├── Pe-icon-7-strokebb1d.woff │ │ │ │ ├── Pe-icon-7-stroked41d.eot │ │ │ │ ├── fontello4508.eot │ │ │ │ ├── fontello4508.svg │ │ │ │ ├── fontello4508.ttf │ │ │ │ ├── fontello4508.woff │ │ │ │ ├── themify9f24.eot │ │ │ │ ├── themify9f24.svg │ │ │ │ ├── themify9f24.ttf │ │ │ │ ├── themify9f24.woff │ │ │ │ └── themifyd41d.eot │ │ ├── images │ │ │ ├── layers-2x.png │ │ │ └── layers.png │ │ ├── overlays │ │ │ └── 02.html │ │ ├── owl.video.play.png │ │ ├── style.css │ │ ├── tables.css │ │ ├── vegas.min.css │ │ └── vendors.css │ ├── img │ │ ├── logo.jpg │ │ └── user.jpg │ └── js │ │ ├── animated_canvas_min.js │ │ ├── common_scripts.js │ │ ├── functions.js │ │ ├── infobox.js │ │ ├── input_qty.js │ │ ├── isotope.min.js │ │ ├── jarallax-video.min.js │ │ ├── jarallax.min.js │ │ ├── jquery.cookiebar.js │ │ ├── leaflet_map │ │ ├── leaflet.min.js │ │ ├── leaflet_func.js │ │ ├── leaflet_half_screen_func.js │ │ ├── leaflet_markercluster.min.js │ │ ├── leaflet_markers.js │ │ └── leaflet_single_func.js │ │ ├── listing_map.js │ │ ├── map.js │ │ ├── map_single_hotel.js │ │ ├── map_single_restaurant.js │ │ ├── map_single_shop.js │ │ ├── mapmarker.jquery.js │ │ ├── mapmarker_func.jquery.js │ │ ├── markerclusterer.js │ │ ├── modernizr.js │ │ ├── modernizr_tables.js │ │ ├── pw_strenght.js │ │ ├── switcher.js │ │ ├── tables_func.js │ │ ├── vegas.min.js │ │ └── video_header.js └── views.py ├── bin └── setup.sh ├── config ├── __init__.py └── config.py ├── db └── create_db.py ├── deep_web_crawler.py ├── devcontainer.json ├── docker-compose-staging.yaml ├── docker-compose.yaml ├── dockerignore ├── extract_tweets.py ├── face_recognition.py ├── fingerprint_analysis.py ├── github └── workflows │ └── cd.yml ├── migrations ├── README ├── alembic.ini ├── env.py ├── script.py.mako └── versions │ └── 382a4c5bd305_create_missing_persons_table.py ├── procfile ├── requirements.txt ├── static ├── android-chrome-192x192.png ├── android-chrome-512x512.png ├── apple-touch-icon.png ├── css │ ├── style.css │ └── styles.css ├── favicon-16x16.png ├── favicon-32x32.png ├── favicon.ico ├── footer-copy.html ├── images │ ├── favicon.jpg │ ├── image_of_person.jpg │ └── logo-no-background.png ├── js │ ├── analytics.js │ ├── include.js │ ├── main.js │ ├── scripts.js │ └── time.js └── site.webmanifest ├── templates ├── add_person.html ├── analytics.html ├── app │ └── index.html ├── cookies.html ├── head.html ├── includes │ ├── footer.html │ └── navbar.html ├── index.bck.html ├── index.html ├── privacy.html └── register_users │ └── add_person.html ├── tests └── test_app.py └── train_model.py /.gitattributes: -------------------------------------------------------------------------------- 1 | 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/.gitignore -------------------------------------------------------------------------------- /.overmind.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/.overmind.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /ABOUT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/ABOUT.md -------------------------------------------------------------------------------- /AI INTEGRATION: -------------------------------------------------------------------------------- 1 | 1. -------------------------------------------------------------------------------- /App.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/App.py -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/LICENSE -------------------------------------------------------------------------------- /MANUAL-UPDATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/MANUAL-UPDATE.md -------------------------------------------------------------------------------- /Models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/Models.py -------------------------------------------------------------------------------- /Project Structure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/Project Structure -------------------------------------------------------------------------------- /Project Structure : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/Project Structure -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/README.md -------------------------------------------------------------------------------- /Scrap missing persons data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/Scrap missing persons data.py -------------------------------------------------------------------------------- /add_to_path.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/add_to_path.py -------------------------------------------------------------------------------- /ai_integration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/ai_integration.py -------------------------------------------------------------------------------- /ai_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/ai_module.py -------------------------------------------------------------------------------- /ai_services.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/ai_services.py -------------------------------------------------------------------------------- /ai_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/ai_utils.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app.py -------------------------------------------------------------------------------- /app/Templates/templates/add_person.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/Templates/templates/add_person.html -------------------------------------------------------------------------------- /app/Templates/templates/all-missing-persons.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/Templates/templates/all-missing-persons.html -------------------------------------------------------------------------------- /app/Templates/templates/gallery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/Templates/templates/gallery.html -------------------------------------------------------------------------------- /app/Templates/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/Templates/templates/index.html -------------------------------------------------------------------------------- /app/Templates/templates/monitor_person.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/Templates/templates/monitor_person.html -------------------------------------------------------------------------------- /app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/__init__.py -------------------------------------------------------------------------------- /app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/models.py -------------------------------------------------------------------------------- /app/static/assets/validate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/assets/validate.js -------------------------------------------------------------------------------- /app/static/css/blog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/blog.css -------------------------------------------------------------------------------- /app/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/custom.css -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/ElegantIcons.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/ElegantIcons.eot -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/ElegantIcons.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/ElegantIcons.svg -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/ElegantIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/ElegantIcons.ttf -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/ElegantIcons.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/ElegantIcons.woff -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/ElegantIconsd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/ElegantIconsd41d.eot -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Glyphter.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Glyphter.eot -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Glyphter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Glyphter.svg -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Glyphter.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Glyphter.ttf -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Glyphter.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Glyphter.woff -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Glyphterd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Glyphterd41d.eot -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Pe-icon-7-strokebb1d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Pe-icon-7-strokebb1d.eot -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Pe-icon-7-strokebb1d.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Pe-icon-7-strokebb1d.svg -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Pe-icon-7-strokebb1d.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Pe-icon-7-strokebb1d.ttf -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Pe-icon-7-strokebb1d.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Pe-icon-7-strokebb1d.woff -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/Pe-icon-7-stroked41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/Pe-icon-7-stroked41d.eot -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/fontello4508.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/fontello4508.eot -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/fontello4508.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/fontello4508.svg -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/fontello4508.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/fontello4508.ttf -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/fontello4508.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/fontello4508.woff -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/themify9f24.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/themify9f24.eot -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/themify9f24.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/themify9f24.svg -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/themify9f24.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/themify9f24.ttf -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/themify9f24.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/themify9f24.woff -------------------------------------------------------------------------------- /app/static/css/icon_fonts/font/themifyd41d.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/icon_fonts/font/themifyd41d.eot -------------------------------------------------------------------------------- /app/static/css/images/layers-2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/images/layers-2x.png -------------------------------------------------------------------------------- /app/static/css/images/layers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/images/layers.png -------------------------------------------------------------------------------- /app/static/css/overlays/02.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/overlays/02.html -------------------------------------------------------------------------------- /app/static/css/owl.video.play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/owl.video.play.png -------------------------------------------------------------------------------- /app/static/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/style.css -------------------------------------------------------------------------------- /app/static/css/tables.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/tables.css -------------------------------------------------------------------------------- /app/static/css/vegas.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/vegas.min.css -------------------------------------------------------------------------------- /app/static/css/vendors.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/css/vendors.css -------------------------------------------------------------------------------- /app/static/img/logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/img/logo.jpg -------------------------------------------------------------------------------- /app/static/img/user.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/img/user.jpg -------------------------------------------------------------------------------- /app/static/js/animated_canvas_min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/animated_canvas_min.js -------------------------------------------------------------------------------- /app/static/js/common_scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/common_scripts.js -------------------------------------------------------------------------------- /app/static/js/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/functions.js -------------------------------------------------------------------------------- /app/static/js/infobox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/infobox.js -------------------------------------------------------------------------------- /app/static/js/input_qty.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/input_qty.js -------------------------------------------------------------------------------- /app/static/js/isotope.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/isotope.min.js -------------------------------------------------------------------------------- /app/static/js/jarallax-video.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/jarallax-video.min.js -------------------------------------------------------------------------------- /app/static/js/jarallax.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/jarallax.min.js -------------------------------------------------------------------------------- /app/static/js/jquery.cookiebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/jquery.cookiebar.js -------------------------------------------------------------------------------- /app/static/js/leaflet_map/leaflet.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/leaflet_map/leaflet.min.js -------------------------------------------------------------------------------- /app/static/js/leaflet_map/leaflet_func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/leaflet_map/leaflet_func.js -------------------------------------------------------------------------------- /app/static/js/leaflet_map/leaflet_half_screen_func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/leaflet_map/leaflet_half_screen_func.js -------------------------------------------------------------------------------- /app/static/js/leaflet_map/leaflet_markercluster.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/leaflet_map/leaflet_markercluster.min.js -------------------------------------------------------------------------------- /app/static/js/leaflet_map/leaflet_markers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/leaflet_map/leaflet_markers.js -------------------------------------------------------------------------------- /app/static/js/leaflet_map/leaflet_single_func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/leaflet_map/leaflet_single_func.js -------------------------------------------------------------------------------- /app/static/js/listing_map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/listing_map.js -------------------------------------------------------------------------------- /app/static/js/map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/map.js -------------------------------------------------------------------------------- /app/static/js/map_single_hotel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/map_single_hotel.js -------------------------------------------------------------------------------- /app/static/js/map_single_restaurant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/map_single_restaurant.js -------------------------------------------------------------------------------- /app/static/js/map_single_shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/map_single_shop.js -------------------------------------------------------------------------------- /app/static/js/mapmarker.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/mapmarker.jquery.js -------------------------------------------------------------------------------- /app/static/js/mapmarker_func.jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/mapmarker_func.jquery.js -------------------------------------------------------------------------------- /app/static/js/markerclusterer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/markerclusterer.js -------------------------------------------------------------------------------- /app/static/js/modernizr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/modernizr.js -------------------------------------------------------------------------------- /app/static/js/modernizr_tables.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/modernizr_tables.js -------------------------------------------------------------------------------- /app/static/js/pw_strenght.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/pw_strenght.js -------------------------------------------------------------------------------- /app/static/js/switcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/switcher.js -------------------------------------------------------------------------------- /app/static/js/tables_func.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/tables_func.js -------------------------------------------------------------------------------- /app/static/js/vegas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/vegas.min.js -------------------------------------------------------------------------------- /app/static/js/video_header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/static/js/video_header.js -------------------------------------------------------------------------------- /app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/app/views.py -------------------------------------------------------------------------------- /bin/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/bin/setup.sh -------------------------------------------------------------------------------- /config/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/config/__init__.py -------------------------------------------------------------------------------- /config/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/config/config.py -------------------------------------------------------------------------------- /db/create_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/db/create_db.py -------------------------------------------------------------------------------- /deep_web_crawler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/deep_web_crawler.py -------------------------------------------------------------------------------- /devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/devcontainer.json -------------------------------------------------------------------------------- /docker-compose-staging.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/docker-compose-staging.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/dockerignore -------------------------------------------------------------------------------- /extract_tweets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/extract_tweets.py -------------------------------------------------------------------------------- /face_recognition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/face_recognition.py -------------------------------------------------------------------------------- /fingerprint_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/fingerprint_analysis.py -------------------------------------------------------------------------------- /github/workflows/cd.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/github/workflows/cd.yml -------------------------------------------------------------------------------- /migrations/README: -------------------------------------------------------------------------------- 1 | Single-database configuration for Flask. 2 | -------------------------------------------------------------------------------- /migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/migrations/alembic.ini -------------------------------------------------------------------------------- /migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/migrations/env.py -------------------------------------------------------------------------------- /migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/migrations/script.py.mako -------------------------------------------------------------------------------- /migrations/versions/382a4c5bd305_create_missing_persons_table.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/migrations/versions/382a4c5bd305_create_missing_persons_table.py -------------------------------------------------------------------------------- /procfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/procfile -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/requirements.txt -------------------------------------------------------------------------------- /static/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/apple-touch-icon.png -------------------------------------------------------------------------------- /static/css/style.css: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/css/styles.css -------------------------------------------------------------------------------- /static/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /static/footer-copy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/footer-copy.html -------------------------------------------------------------------------------- /static/images/favicon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/images/favicon.jpg -------------------------------------------------------------------------------- /static/images/image_of_person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/images/image_of_person.jpg -------------------------------------------------------------------------------- /static/images/logo-no-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/images/logo-no-background.png -------------------------------------------------------------------------------- /static/js/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/js/analytics.js -------------------------------------------------------------------------------- /static/js/include.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/js/include.js -------------------------------------------------------------------------------- /static/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/js/scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/js/scripts.js -------------------------------------------------------------------------------- /static/js/time.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/js/time.js -------------------------------------------------------------------------------- /static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/static/site.webmanifest -------------------------------------------------------------------------------- /templates/add_person.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/add_person.html -------------------------------------------------------------------------------- /templates/analytics.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/analytics.html -------------------------------------------------------------------------------- /templates/app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/app/index.html -------------------------------------------------------------------------------- /templates/cookies.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/cookies.html -------------------------------------------------------------------------------- /templates/head.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/head.html -------------------------------------------------------------------------------- /templates/includes/footer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/includes/footer.html -------------------------------------------------------------------------------- /templates/includes/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/includes/navbar.html -------------------------------------------------------------------------------- /templates/index.bck.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/index.bck.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/privacy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/privacy.html -------------------------------------------------------------------------------- /templates/register_users/add_person.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/templates/register_users/add_person.html -------------------------------------------------------------------------------- /tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/tests/test_app.py -------------------------------------------------------------------------------- /train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jojo-devv/MISSING-PERSONS-DATABASE-2024-KENYA-FINANCE-BILL-PROTESTS-/HEAD/train_model.py --------------------------------------------------------------------------------