├── .gitignore ├── Fibonacci ├── .vscode │ └── settings.json ├── fibonacci-iterativo.py └── fibonacci-recursivo.py ├── GUI Calculadora ├── config │ └── constantes.py ├── formulario │ └── form_calculadora.py ├── main.py └── util │ └── util_ventana.py ├── GUI Login Part 2 ├── build_db.py ├── forms │ ├── login │ │ ├── __init__.py │ │ ├── form_login.py │ │ └── form_login_designer.py │ ├── master │ │ ├── __init__.py │ │ └── form_master.py │ └── registration │ │ ├── __init__.py │ │ ├── form.py │ │ └── form_designer.py ├── imagenes │ └── logo.png ├── main.py ├── persistence │ ├── __init__.py │ ├── model.py │ └── repository │ │ ├── __init__.py │ │ └── auth_user_repository.py ├── requirements.txt └── util │ ├── __init__.py │ ├── encoding_decoding.py │ └── generic.py ├── GUI Login ├── README.md ├── forms │ ├── __init__.py │ ├── form_login.py │ └── form_master.py ├── imagenes │ ├── Carpeta.png │ ├── login.png │ └── logo.png ├── main.py ├── requirements.txt └── util │ ├── __init__.py │ └── generic.py ├── GUI QR ├── config.py ├── formulario │ ├── __init__.py │ ├── escanea_me.png │ ├── form_maestra.py │ └── form_maestra_design.py ├── imagenes │ ├── escanea_me.png │ ├── logo.ico │ └── qr_base.png ├── main.py ├── requirements.txt └── util │ ├── __init__.py │ ├── util_imagenes.py │ └── util_ventana.py ├── Modern GUI 2 ├── config.py ├── formularios │ ├── __init__.py │ ├── form_graficas_design.py │ ├── form_info_design.py │ ├── form_maestro_design.py │ └── form_sitio_construccion.py ├── imagenes │ ├── Perfil.png │ ├── logo.ico │ ├── logo.png │ └── sitio_construccion.png ├── main.py ├── requirements.txt └── util │ ├── __init__.py │ ├── util_imagenes.py │ └── util_ventana.py ├── Modern GUI ├── config.py ├── formularios │ ├── __init__.py │ └── form_maestro_design.py ├── imagenes │ ├── Perfil.png │ ├── logo.ico │ └── logo.png ├── main.py ├── requirements.txt └── util │ ├── __init__.py │ ├── util_imagenes.py │ └── util_ventana.py ├── README.md ├── python-tkinter-sqlite-crud ├── README.md ├── aplicacion │ └── servicio_producto.py ├── assets │ └── img │ │ └── python-tkinter-sqlite-crud_1.png ├── build_db.py ├── dominio │ └── modelos.py ├── form │ ├── __init__.py │ ├── registro_form.py │ └── registro_from_design.py ├── main.py ├── requirements.txt └── util │ ├── __init__.py │ ├── generico.py │ ├── util_imagenes.py │ └── util_ventana.py ├── python-web-scraping-selenium ├── README.md ├── assets │ └── img │ │ ├── ExtraccionDatosClimaticosService.png │ │ ├── ExtraccionTablaHidroestimadorService.png │ │ └── Resultados.png ├── conf │ └── rutas.py ├── main.py ├── requirements.txt ├── servicio │ ├── __init__.py │ ├── extraccion_datos_climaticos_service.py │ └── extraccion_tabla_service.py └── util │ ├── __init__.py │ └── util_ventana.py └── python_ejemplo_singleton ├── config.py ├── data └── ejemplo.csv ├── extraccion └── servicio_extraccion.py ├── main.py ├── modelo └── objeto_almacenamiento.py ├── requirements.txt ├── uso_singleton ├── config.py ├── data │ └── ejemplo.csv ├── extraccion │ └── servicio_extraccion.py ├── main.py ├── modelo │ └── objeto_almacenamiento.py ├── requirements.txt └── visualizacion │ └── servicio_exposicion.py └── visualizacion └── servicio_exposicion.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/.gitignore -------------------------------------------------------------------------------- /Fibonacci/.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Fibonacci/.vscode/settings.json -------------------------------------------------------------------------------- /Fibonacci/fibonacci-iterativo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Fibonacci/fibonacci-iterativo.py -------------------------------------------------------------------------------- /Fibonacci/fibonacci-recursivo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Fibonacci/fibonacci-recursivo.py -------------------------------------------------------------------------------- /GUI Calculadora/config/constantes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Calculadora/config/constantes.py -------------------------------------------------------------------------------- /GUI Calculadora/formulario/form_calculadora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Calculadora/formulario/form_calculadora.py -------------------------------------------------------------------------------- /GUI Calculadora/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Calculadora/main.py -------------------------------------------------------------------------------- /GUI Calculadora/util/util_ventana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Calculadora/util/util_ventana.py -------------------------------------------------------------------------------- /GUI Login Part 2/build_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/build_db.py -------------------------------------------------------------------------------- /GUI Login Part 2/forms/login/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI Login Part 2/forms/login/form_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/forms/login/form_login.py -------------------------------------------------------------------------------- /GUI Login Part 2/forms/login/form_login_designer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/forms/login/form_login_designer.py -------------------------------------------------------------------------------- /GUI Login Part 2/forms/master/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI Login Part 2/forms/master/form_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/forms/master/form_master.py -------------------------------------------------------------------------------- /GUI Login Part 2/forms/registration/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI Login Part 2/forms/registration/form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/forms/registration/form.py -------------------------------------------------------------------------------- /GUI Login Part 2/forms/registration/form_designer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/forms/registration/form_designer.py -------------------------------------------------------------------------------- /GUI Login Part 2/imagenes/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/imagenes/logo.png -------------------------------------------------------------------------------- /GUI Login Part 2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/main.py -------------------------------------------------------------------------------- /GUI Login Part 2/persistence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI Login Part 2/persistence/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/persistence/model.py -------------------------------------------------------------------------------- /GUI Login Part 2/persistence/repository/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI Login Part 2/persistence/repository/auth_user_repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/persistence/repository/auth_user_repository.py -------------------------------------------------------------------------------- /GUI Login Part 2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/requirements.txt -------------------------------------------------------------------------------- /GUI Login Part 2/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI Login Part 2/util/encoding_decoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/util/encoding_decoding.py -------------------------------------------------------------------------------- /GUI Login Part 2/util/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login Part 2/util/generic.py -------------------------------------------------------------------------------- /GUI Login/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login/README.md -------------------------------------------------------------------------------- /GUI Login/forms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI Login/forms/form_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login/forms/form_login.py -------------------------------------------------------------------------------- /GUI Login/forms/form_master.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login/forms/form_master.py -------------------------------------------------------------------------------- /GUI Login/imagenes/Carpeta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login/imagenes/Carpeta.png -------------------------------------------------------------------------------- /GUI Login/imagenes/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login/imagenes/login.png -------------------------------------------------------------------------------- /GUI Login/imagenes/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login/imagenes/logo.png -------------------------------------------------------------------------------- /GUI Login/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login/main.py -------------------------------------------------------------------------------- /GUI Login/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login/requirements.txt -------------------------------------------------------------------------------- /GUI Login/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI Login/util/generic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI Login/util/generic.py -------------------------------------------------------------------------------- /GUI QR/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/config.py -------------------------------------------------------------------------------- /GUI QR/formulario/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI QR/formulario/escanea_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/formulario/escanea_me.png -------------------------------------------------------------------------------- /GUI QR/formulario/form_maestra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/formulario/form_maestra.py -------------------------------------------------------------------------------- /GUI QR/formulario/form_maestra_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/formulario/form_maestra_design.py -------------------------------------------------------------------------------- /GUI QR/imagenes/escanea_me.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/imagenes/escanea_me.png -------------------------------------------------------------------------------- /GUI QR/imagenes/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/imagenes/logo.ico -------------------------------------------------------------------------------- /GUI QR/imagenes/qr_base.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/imagenes/qr_base.png -------------------------------------------------------------------------------- /GUI QR/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/main.py -------------------------------------------------------------------------------- /GUI QR/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/requirements.txt -------------------------------------------------------------------------------- /GUI QR/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /GUI QR/util/util_imagenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/util/util_imagenes.py -------------------------------------------------------------------------------- /GUI QR/util/util_ventana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/GUI QR/util/util_ventana.py -------------------------------------------------------------------------------- /Modern GUI 2/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/config.py -------------------------------------------------------------------------------- /Modern GUI 2/formularios/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modern GUI 2/formularios/form_graficas_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/formularios/form_graficas_design.py -------------------------------------------------------------------------------- /Modern GUI 2/formularios/form_info_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/formularios/form_info_design.py -------------------------------------------------------------------------------- /Modern GUI 2/formularios/form_maestro_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/formularios/form_maestro_design.py -------------------------------------------------------------------------------- /Modern GUI 2/formularios/form_sitio_construccion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/formularios/form_sitio_construccion.py -------------------------------------------------------------------------------- /Modern GUI 2/imagenes/Perfil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/imagenes/Perfil.png -------------------------------------------------------------------------------- /Modern GUI 2/imagenes/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/imagenes/logo.ico -------------------------------------------------------------------------------- /Modern GUI 2/imagenes/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/imagenes/logo.png -------------------------------------------------------------------------------- /Modern GUI 2/imagenes/sitio_construccion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/imagenes/sitio_construccion.png -------------------------------------------------------------------------------- /Modern GUI 2/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/main.py -------------------------------------------------------------------------------- /Modern GUI 2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/requirements.txt -------------------------------------------------------------------------------- /Modern GUI 2/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modern GUI 2/util/util_imagenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/util/util_imagenes.py -------------------------------------------------------------------------------- /Modern GUI 2/util/util_ventana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI 2/util/util_ventana.py -------------------------------------------------------------------------------- /Modern GUI/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI/config.py -------------------------------------------------------------------------------- /Modern GUI/formularios/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modern GUI/formularios/form_maestro_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI/formularios/form_maestro_design.py -------------------------------------------------------------------------------- /Modern GUI/imagenes/Perfil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI/imagenes/Perfil.png -------------------------------------------------------------------------------- /Modern GUI/imagenes/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI/imagenes/logo.ico -------------------------------------------------------------------------------- /Modern GUI/imagenes/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI/imagenes/logo.png -------------------------------------------------------------------------------- /Modern GUI/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI/main.py -------------------------------------------------------------------------------- /Modern GUI/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI/requirements.txt -------------------------------------------------------------------------------- /Modern GUI/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Modern GUI/util/util_imagenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI/util/util_imagenes.py -------------------------------------------------------------------------------- /Modern GUI/util/util_ventana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/Modern GUI/util/util_ventana.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/README.md -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/README.md -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/aplicacion/servicio_producto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/aplicacion/servicio_producto.py -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/assets/img/python-tkinter-sqlite-crud_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/assets/img/python-tkinter-sqlite-crud_1.png -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/build_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/build_db.py -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/dominio/modelos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/dominio/modelos.py -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/form/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/form/registro_form.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/form/registro_form.py -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/form/registro_from_design.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/form/registro_from_design.py -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/main.py -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/requirements.txt -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/util/generico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/util/generico.py -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/util/util_imagenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/util/util_imagenes.py -------------------------------------------------------------------------------- /python-tkinter-sqlite-crud/util/util_ventana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-tkinter-sqlite-crud/util/util_ventana.py -------------------------------------------------------------------------------- /python-web-scraping-selenium/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/README.md -------------------------------------------------------------------------------- /python-web-scraping-selenium/assets/img/ExtraccionDatosClimaticosService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/assets/img/ExtraccionDatosClimaticosService.png -------------------------------------------------------------------------------- /python-web-scraping-selenium/assets/img/ExtraccionTablaHidroestimadorService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/assets/img/ExtraccionTablaHidroestimadorService.png -------------------------------------------------------------------------------- /python-web-scraping-selenium/assets/img/Resultados.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/assets/img/Resultados.png -------------------------------------------------------------------------------- /python-web-scraping-selenium/conf/rutas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/conf/rutas.py -------------------------------------------------------------------------------- /python-web-scraping-selenium/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/main.py -------------------------------------------------------------------------------- /python-web-scraping-selenium/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/requirements.txt -------------------------------------------------------------------------------- /python-web-scraping-selenium/servicio/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-web-scraping-selenium/servicio/extraccion_datos_climaticos_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/servicio/extraccion_datos_climaticos_service.py -------------------------------------------------------------------------------- /python-web-scraping-selenium/servicio/extraccion_tabla_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/servicio/extraccion_tabla_service.py -------------------------------------------------------------------------------- /python-web-scraping-selenium/util/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /python-web-scraping-selenium/util/util_ventana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python-web-scraping-selenium/util/util_ventana.py -------------------------------------------------------------------------------- /python_ejemplo_singleton/config.py: -------------------------------------------------------------------------------- 1 | RUTA = './data' 2 | NOMBRE_ARCHIVO = 'ejemplo.csv' -------------------------------------------------------------------------------- /python_ejemplo_singleton/data/ejemplo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/data/ejemplo.csv -------------------------------------------------------------------------------- /python_ejemplo_singleton/extraccion/servicio_extraccion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/extraccion/servicio_extraccion.py -------------------------------------------------------------------------------- /python_ejemplo_singleton/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/main.py -------------------------------------------------------------------------------- /python_ejemplo_singleton/modelo/objeto_almacenamiento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/modelo/objeto_almacenamiento.py -------------------------------------------------------------------------------- /python_ejemplo_singleton/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/requirements.txt -------------------------------------------------------------------------------- /python_ejemplo_singleton/uso_singleton/config.py: -------------------------------------------------------------------------------- 1 | RUTA = './data' 2 | NOMBRE_ARCHIVO = 'ejemplo.csv' -------------------------------------------------------------------------------- /python_ejemplo_singleton/uso_singleton/data/ejemplo.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/uso_singleton/data/ejemplo.csv -------------------------------------------------------------------------------- /python_ejemplo_singleton/uso_singleton/extraccion/servicio_extraccion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/uso_singleton/extraccion/servicio_extraccion.py -------------------------------------------------------------------------------- /python_ejemplo_singleton/uso_singleton/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/uso_singleton/main.py -------------------------------------------------------------------------------- /python_ejemplo_singleton/uso_singleton/modelo/objeto_almacenamiento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/uso_singleton/modelo/objeto_almacenamiento.py -------------------------------------------------------------------------------- /python_ejemplo_singleton/uso_singleton/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/uso_singleton/requirements.txt -------------------------------------------------------------------------------- /python_ejemplo_singleton/uso_singleton/visualizacion/servicio_exposicion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/uso_singleton/visualizacion/servicio_exposicion.py -------------------------------------------------------------------------------- /python_ejemplo_singleton/visualizacion/servicio_exposicion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AutodidactaMx/Code-General-Python/HEAD/python_ejemplo_singleton/visualizacion/servicio_exposicion.py --------------------------------------------------------------------------------