├── .gitignore ├── README.md ├── app ├── app.py ├── conexionBD.py ├── controller │ └── controllerCarro.py ├── static │ └── assets │ │ ├── css │ │ ├── bootstrap.min.css │ │ ├── custom_alert.css │ │ ├── style.css │ │ └── tooltip.css │ │ ├── fotos_carros │ │ ├── 39J76T1CLDM_8SX2FHYB.jpg │ │ ├── 4IQKOW_31NFYL7BU9TPM.png │ │ ├── 97IP2YRTG80ELHMZ4ACD.png │ │ ├── IMWSBJD4O1UCA97N_R0P.jpg │ │ ├── R5Q2IZSTU6BVDWL3CA9H.png │ │ ├── SM_A2NQ13GZKOW0JIDP9.jpg │ │ ├── TVGSICKM2957QYDN4O3H.png │ │ ├── Z1UR8IQMVSE3JWDLFNOT.jpg │ │ └── ZHKTJE319UCDIB6F7A_5.png │ │ ├── imgs │ │ ├── favicon.png │ │ └── logo.png │ │ └── js │ │ ├── alerta.js │ │ ├── bootstrap.min.js │ │ └── loader.js └── templates │ └── public │ ├── acciones │ ├── add.html │ ├── lista.html │ ├── update.html │ └── view.html │ ├── alerta.html │ ├── layout.html │ └── navbar.html ├── bd └── carros.sql └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/README.md -------------------------------------------------------------------------------- /app/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/app.py -------------------------------------------------------------------------------- /app/conexionBD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/conexionBD.py -------------------------------------------------------------------------------- /app/controller/controllerCarro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/controller/controllerCarro.py -------------------------------------------------------------------------------- /app/static/assets/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/css/bootstrap.min.css -------------------------------------------------------------------------------- /app/static/assets/css/custom_alert.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/css/custom_alert.css -------------------------------------------------------------------------------- /app/static/assets/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/css/style.css -------------------------------------------------------------------------------- /app/static/assets/css/tooltip.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/css/tooltip.css -------------------------------------------------------------------------------- /app/static/assets/fotos_carros/39J76T1CLDM_8SX2FHYB.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/fotos_carros/39J76T1CLDM_8SX2FHYB.jpg -------------------------------------------------------------------------------- /app/static/assets/fotos_carros/4IQKOW_31NFYL7BU9TPM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/fotos_carros/4IQKOW_31NFYL7BU9TPM.png -------------------------------------------------------------------------------- /app/static/assets/fotos_carros/97IP2YRTG80ELHMZ4ACD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/fotos_carros/97IP2YRTG80ELHMZ4ACD.png -------------------------------------------------------------------------------- /app/static/assets/fotos_carros/IMWSBJD4O1UCA97N_R0P.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/fotos_carros/IMWSBJD4O1UCA97N_R0P.jpg -------------------------------------------------------------------------------- /app/static/assets/fotos_carros/R5Q2IZSTU6BVDWL3CA9H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/fotos_carros/R5Q2IZSTU6BVDWL3CA9H.png -------------------------------------------------------------------------------- /app/static/assets/fotos_carros/SM_A2NQ13GZKOW0JIDP9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/fotos_carros/SM_A2NQ13GZKOW0JIDP9.jpg -------------------------------------------------------------------------------- /app/static/assets/fotos_carros/TVGSICKM2957QYDN4O3H.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/fotos_carros/TVGSICKM2957QYDN4O3H.png -------------------------------------------------------------------------------- /app/static/assets/fotos_carros/Z1UR8IQMVSE3JWDLFNOT.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/fotos_carros/Z1UR8IQMVSE3JWDLFNOT.jpg -------------------------------------------------------------------------------- /app/static/assets/fotos_carros/ZHKTJE319UCDIB6F7A_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/fotos_carros/ZHKTJE319UCDIB6F7A_5.png -------------------------------------------------------------------------------- /app/static/assets/imgs/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/imgs/favicon.png -------------------------------------------------------------------------------- /app/static/assets/imgs/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/imgs/logo.png -------------------------------------------------------------------------------- /app/static/assets/js/alerta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/js/alerta.js -------------------------------------------------------------------------------- /app/static/assets/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/js/bootstrap.min.js -------------------------------------------------------------------------------- /app/static/assets/js/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/static/assets/js/loader.js -------------------------------------------------------------------------------- /app/templates/public/acciones/add.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/templates/public/acciones/add.html -------------------------------------------------------------------------------- /app/templates/public/acciones/lista.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/templates/public/acciones/lista.html -------------------------------------------------------------------------------- /app/templates/public/acciones/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/templates/public/acciones/update.html -------------------------------------------------------------------------------- /app/templates/public/acciones/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/templates/public/acciones/view.html -------------------------------------------------------------------------------- /app/templates/public/alerta.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/templates/public/alerta.html -------------------------------------------------------------------------------- /app/templates/public/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/templates/public/layout.html -------------------------------------------------------------------------------- /app/templates/public/navbar.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/app/templates/public/navbar.html -------------------------------------------------------------------------------- /bd/carros.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/bd/carros.sql -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/urian121/Crud-con-FLASK-PYTHON-y-MySQL/HEAD/requirements.txt --------------------------------------------------------------------------------