├── .gitignore ├── .vscode └── settings.json ├── README.md ├── etc ├── demo.py └── demo_idle.py ├── parte04 ├── 4.1_primer_programa.py ├── 4.2_primer_programa.py ├── 4.3_variables.py ├── 4.4_variables_cadenas_caracteres.py ├── 4.5_ejercicios.txt ├── ex4.1_version_python.py ├── ex4.2_fecha_hora_actuales.py ├── ex4.3_area_circulo.py ├── ex4.4_invertir_nombre.py └── ex4.5_area_triangulo.py ├── parte05 ├── 5.01_enteros_int.py ├── 5.02_reales_float.py ├── 5.03_complejos_complex.py ├── 5.04_booleanos_bool.py ├── 5.05_cadena_caracteres_string.py ├── 5.06_tuplas_tuple.py ├── 5.07_lista_list.py ├── 5.08_diccionario_dict.py ├── 5.09_conjunto_set.py ├── 5.10_Ejercicios.txt ├── ex5.01_conversion_lista_a_tupla.py ├── ex5.02_invertir_tupla.py ├── ex5.03_seccion_tupla.py ├── ex5.04_remover_elemento_tupla.py ├── ex5.05_remover_duplicados_lista.py ├── ex5.06_palabras_longitud_mayor_o_igual_5.py ├── ex5.07_elemento_aleatorio_lista.py ├── ex5.08_frecuencia_elementos_lista.py ├── ex5.09_suma_valores_diccionario.py ├── ex5.10_remover_duplicados_diccionario.py ├── ex5.11_top_3_valores_diccionario.py ├── ex5.12_conversion_diccionario_json.py ├── ex5.13_union_interseccion_conjuntos.py ├── ex5.14_diferencia_conjuntos.py └── ex5.15_diferencia_simetrica_conjuntos.py ├── parte06 ├── 6.01_operadores_numericos.py ├── 6.02_operadores_comparacion.py ├── 6.03_operadores_logicos.py ├── 6.04_operadores_nivel_bits.py ├── 6.05_operadores_asignacion.py ├── 6.06_precedencia_operadores.py ├── 6.07_linealizacion_expresiones_algebraicas.py ├── 6.08_ejercicios.txt ├── ex6.1_conversion_grados_radianes.py ├── ex6.2_conversion_radianes_grados.py ├── ex6.3_area_trapezoide.py ├── ex6.4_area_volumen_cilindro.py ├── ex6.5_discriminante_ecuacion_cuadratica.py └── ex6.6_linealizacion_expresiones_algebraicas.py ├── parte07 ├── 7.1_funcion_input.py └── 7.2_funcion_print.py ├── parte08 ├── 8.1_condicionales_intro.py ├── 8.2_numero_mayor.py ├── 8.3_incremento_ahorros.py ├── 8.4_condiciones_multiples.py ├── 8.5_condiciones_multiples_mejora.py ├── 8.6_condiciones_compuestas_operador_logico_or.py ├── 8.7_ejercicios.txt ├── ex8.01_temperatura.py ├── ex8.02_adivinar_numero.py ├── ex8.03_precio_producto_mayor.py ├── ex8.04_recta_punto.py ├── ex8.05_punto_area_rectas.py ├── ex8.06_aplicar_descuento.py ├── ex8.07_categorizar_jugador.py ├── ex8.08_par_impar.py ├── ex8.09_numero_entero_es_capicua.py └── ex8.10_esquema_rgb.py ├── parte09 ├── 9.1_ciclo_for.py ├── 9.2_ciclo_while.py ├── 9.3_ejercicios.txt ├── ex9.01_patron_asteriscos.py ├── ex9.02_invertir_frase.py ├── ex9.03_generar_numeros_fibonacci.py ├── ex9.04_factorial_numero.py ├── ex9.05_patron_letra_A.py ├── ex9.06_pares_rango_100_400.py ├── ex9.07_patron_letra_E.py ├── ex9.08_cantidad_digitos_letras.py ├── ex9.09_patron_letra_Z.py ├── ex9.10_estadisticas_basicas.py └── ex9.11_sumataria_productoria.py ├── parte10 ├── 10.1_excepciones.py ├── 10.2_excepciones_aritmetica.py ├── 10.3_indices_lista.py ├── 10.4_llaves_diccionario_excepcion.py ├── 10.5_error_atributos_clase.py ├── 10.6_archivo_no_existente.py └── 10.7_excepcion_personalizada.py ├── parte11 ├── 11.1_intro_funciones.py ├── 11.2_argumentos_valor_referencia.py ├── 11.3_argumentos_variables.py ├── 11.4_argumentos_nombrados_variables.py ├── 11.5_argumentos_por_defecto.py ├── 11.6_funciones_recursivas.py ├── 11.7_expresiones_lambda.py ├── 11.8_ejercicios.txt ├── ex11.01_funcion_mayor_numeros.py ├── ex11.02_suma_lista_tupla.py ├── ex11.03_producto_lista_tupla.py ├── ex11.04_invertir_cadena_caracteres.py ├── ex11.05_valor_en_rango.py ├── ex11.06_funcion_conteo_minusculas_mayusculas.py ├── ex11.07_numeros_unicos.py ├── ex11.08_suma_recursiva.py ├── ex11.09_funcion_recursiva_palindromo.py └── ex11.10_division_recursiva.py ├── parte12 ├── 12.1_programa_python.py ├── 12.3_uso_programa_python.py ├── demo_122_programa_python_punto_entrada.py └── proyecto │ ├── calculadora │ ├── __init__.py │ ├── __main__.py │ └── funciones_aritmeticas.py │ └── setup.py ├── parte13 ├── proyecto0 │ ├── inventario │ │ ├── __init__.py │ │ ├── __main__.py │ │ └── inventario_funciones.py │ └── setup.py └── proyecto_0_inventario.txt ├── parte14 ├── 14.1_introduccion_manipulacion_archivos.py ├── 14.2_creacion_archivo_texto_plano.py ├── 14.3_adicion_contenido_archivo.py ├── 14.4_intro_archivos_binarios.py ├── 14.5_lectura_archivo_binario.py ├── 14.6_archivos_binarios_with.py ├── 14.7_modulo_pickle.py ├── 14.8_operaciones_adicionales.py ├── 14.9_ejercicio.txt ├── archivo1.txt ├── lenguajes.txt ├── numeros.bin ├── paises.txt ├── paises_capitales.pickle └── proyecto0 │ ├── inventario │ ├── __init__.py │ ├── __main__.py │ ├── inventario.pickle │ └── inventario_funciones.py │ └── setup.py ├── parte15 └── inventario │ ├── __init__.py │ ├── __main__.py │ ├── base_datos │ ├── __init__.py │ └── conexion.py │ ├── gui │ ├── __init__.py │ ├── dialogos.py │ ├── formularios.py │ ├── menus.py │ └── ventana.py │ └── modelos │ ├── __init__.py │ ├── cliente.py │ ├── factura.py │ ├── producto.py │ └── proveedor.py ├── parte16 ├── animales │ ├── main.py │ └── modelos │ │ ├── __init__.py │ │ ├── animal.py │ │ ├── gato.py │ │ ├── pato.py │ │ └── perro.py ├── carros │ ├── main.py │ └── modelos │ │ ├── __init__.py │ │ ├── camion.py │ │ ├── carro.py │ │ ├── deportivo.py │ │ ├── formula1.py │ │ └── volqueta.py ├── ejercicio1.txt ├── empleados │ ├── main.py │ └── modelos │ │ ├── __init__.py │ │ ├── empleado.py │ │ ├── empleado_comision.py │ │ ├── empleado_horas.py │ │ └── empleado_nomina.py ├── figuras │ ├── main.py │ └── modelos │ │ ├── __init__.py │ │ ├── circulo.py │ │ ├── figura.py │ │ ├── rectangulo.py │ │ └── triangulo.py └── proyecto0 │ ├── inventario │ ├── __init__.py │ ├── __main__.py │ ├── inventario.pickle │ ├── inventario_funciones.py │ └── modelos │ │ ├── __init__.py │ │ ├── inventario.py │ │ ├── producto.py │ │ └── venta.py │ └── setup.py ├── parte17 ├── Parte17-Ejercicios.txt ├── ball.jpg ├── circuloIcon.ico ├── datos.db ├── demo01_hola_pyqt5.py ├── demo02_qlabel.py ├── demo03_qpushbutton.py ├── demo04_qmessagebox.py ├── demo05_qlineedit.py ├── demo06_mensaje_saludo.py ├── demo07_calculadora_suma.py ├── demo08_calculadora_suma_qdoublevalidator.py ├── demo09_calculadora_suma_qintvalidator.py ├── demo10_dialog_confirmacion_eliminacion.py ├── demo11_aplicacion_con_barra_menu.py ├── demo12_qinputdialog.py ├── demo13_qradiobutton.py ├── demo14_pizza_qcheckbox.py ├── demo15_imagen.py ├── demo16_seleccionar_color.py ├── demo17_seleccionar_fuente.py ├── demo18_mdi.py ├── demo19_qfiledialog.py ├── demo20_qcombobox.py ├── demo21_qspinbox.py ├── demo22_qslider.py ├── demo23_barra_herramientas.py ├── demo24_portapapeles.py ├── demo25_qcalendarwidget.py ├── demo26_qwidget.py ├── demo27_lista_qlistwidget.py ├── demo28_qtabwidget.py ├── demo29_mostrar_saludo.py ├── demo30_pintar_puntos.py ├── demo31_tabla_datos_qtablewidget.py ├── demo32_colores_lienzo.py ├── demo33_dialogo_captura_datos.py ├── demo34_distribucion_horizontal_componentes.py ├── demo35_qgridlayout.py ├── demo36_qtreeview.py ├── demo37_arrastrar_y_soltar.py ├── demo38_saludo_qt_designer.ui ├── demo39_lanzar_archivo_gui_ui.py ├── demo40_traduccion_gui.py ├── demo41_aplicacion.py ├── demo42_traduccion_gui.py ├── demo43_traduccion_gui.py ├── demo44_aplicacion_calculadora.py ├── demo44_calculadora_basica.py ├── demo44_calculadora_basica.ui ├── demo45_aplicacion_saludo.py ├── demo45_saludo.py ├── demo45_saludo.ui ├── demo46_aplicacion_seleccion_vuelo.py ├── demo46_seleccion_vuelo.py ├── demo46_seleccion_vuelo.ui ├── demo47_aplicacion_venta.py ├── demo47_venta.py ├── demo47_venta.ui ├── demo48_aplicacion_pizzeria.py ├── demo48_pizzeria.py ├── demo48_pizzeria.ui ├── demo49_aplicacion_inicio_sesion.py ├── demo49_inicio_sesion.py ├── demo49_inicio_sesion.ui ├── demo50_aplicacion_heladeria.py ├── demo50_heladeria.py ├── demo50_heladeria.ui ├── demo51_aplicacion_segniales_slots.py ├── demo51_segniales_slots.py ├── demo51_segniales_slots.ui ├── demo52_aplicacion_calculadora.py ├── demo52_calculadora.py ├── demo52_calculadora.ui ├── demo53_aplicacion_punto_venta.py ├── demo53_punto_venta.py ├── demo53_punto_venta.ui ├── demo54_aplicacion_niveles.py ├── demo54_niveles.py ├── demo54_niveles.ui ├── demo55_aplicacion_diagnosticos.py ├── demo55_diagnosticos.py ├── demo55_diagnosticos.ui ├── demo56_aplicacion_diagnosticos.py ├── demo56_diagnosticos.py ├── demo56_diagnosticos.ui ├── demo57_aplicacion_comidas_favoritas.py ├── demo57_comidas_favoritas.py ├── demo57_comidas_favoritas.ui ├── demo58_aplicacion_editor_comidas_favoritas.py ├── demo58_editor_comidas_favoritas.py ├── demo58_editor_comidas_favoritas.ui ├── demo59_aplicacion_seleccion_lenguaje.py ├── demo59_seleccion_lenguaje.py ├── demo59_seleccion_lenguaje.ui ├── demo60_aplicacion_editor_texto.py ├── demo60_editor_texto.py ├── demo60_editor_texto.ui ├── demo61_aplicacion_editor_texto.py ├── demo61_editor_texto.py ├── demo61_editor_texto.ui ├── demo62_aplicacion_gestor_descargas.py ├── demo62_gestor_descargas.py ├── demo62_gestor_descargas.ui ├── demo63_aplicacion_visor.py ├── demo63_visor.py ├── demo63_visor.ui ├── demo64_aplicacion_reloj_digital.py ├── demo64_reloj_digital.py ├── demo64_reloj_digital.ui ├── demo65_aplicacion_calendario.py ├── demo65_calendario.py ├── demo65_calendario.ui ├── demo66_aplicacion_hotel.py ├── demo66_hotel.py ├── demo66_hotel.ui ├── demo67_aplicacion_tabla_lenguajes.py ├── demo67_tabla_lenguajes.py ├── demo67_tabla_lenguajes.ui ├── demo68_aplicacion_registro_estudiante.py ├── demo68_registro_estudiante.py ├── demo68_registro_estudiante.ui ├── demo69_aplicacion_registro_profesor_emerito.py ├── demo69_registro_profesor_emerito.py ├── demo69_registro_profesor_emerito.ui ├── demo70_aplicacion_seleccion_pais.py ├── demo70_seleccion_pais.py ├── demo70_seleccion_pais.ui ├── demo71_aplicacion_selector_color.py ├── demo71_selector_color.py ├── demo71_selector_color.ui ├── demo72_aplicacion_selector_fuente.py ├── demo72_selector_fuente.py ├── demo72_selector_fuente.ui ├── demo73_aplicacion_editor_texto.py ├── demo73_editor_texto.py ├── demo73_editor_texto.ui ├── demo74_aplicacion_contenedor_ventanas.py ├── demo74_contenedor_ventanas.py ├── demo74_contenedor_ventanas.ui ├── demo75_aplicacion_restaurante_pedidos.py ├── demo75_restaurante_pedidos.py ├── demo75_restaurante_pedidos.ui ├── demo76_aplicacion_editor_grafico.py ├── demo76_editor_grafico.py ├── demo76_editor_grafico.ui ├── demo77_aplicacion_descarga_archivo.py ├── demo77_descarga_archivo.py ├── demo77_descarga_archivo.ui ├── demo78_aplicacion_descarga_analisis.py ├── demo78_descarga_analisis_archivo.py ├── demo78_descarga_analisis_archivo.ui ├── demo79_aplicacion_descarga_analisis_async.py ├── demo79_descarga_analisis_async.py ├── demo79_descarga_analisis_async.ui ├── demo80.db ├── demo80_aplicacion_creacion_base_datos.py ├── demo80_creacion_base_datos.py ├── demo80_creacion_base_datos.ui ├── demo81_aplicacion_base_datos_sqlite.py ├── demo81_base_datos_sqlite.py ├── demo81_base_datos_sqlite.ui ├── demo82.db ├── demo82_aplicacion_insercion_registros.py ├── demo82_insercion_registros.py ├── demo82_insercion_registros.ui ├── demo83.db ├── demo83_aplicacion_consulta_base_datos.py ├── demo83_consulta_base_datos.py ├── demo83_consulta_base_datos.ui ├── demo84.db ├── demo84_aplicacion_busqueda_datos.py ├── demo84_busqueda_datos.py ├── demo84_busqueda_datos.ui ├── demo85.db ├── demo85_aplicacion_navegacion_registros.py ├── demo85_navegacion_registros.py ├── demo85_navegacion_registros.ui ├── demo86.db ├── demo86_aplicacion_inicio_sesion.py ├── demo86_hashing.py ├── demo86_inicio_sesion.py ├── demo86_inicio_sesion.ui ├── demo87.db ├── demo87_aplicacion_cambio_clave.py ├── demo87_cambio_clave.py ├── demo87_cambio_clave.ui ├── demo88.db ├── demo88_aplicacion_remocion_cuenta.py ├── demo88_remocion_cuenta.py ├── demo88_remocion_cuenta.ui ├── demo89_aplicacion_puntero_mouse.py ├── demo89_posicion_puntero_mouse.py ├── demo89_posicion_puntero_mouse.ui ├── demo90_aplicacion_dibujo_punto.py ├── demo90_dibujo_punto.py ├── demo90_dibujo_punto.ui ├── demo91_aplicacion_dibujo_linea.py ├── demo91_dibujo_linea.py ├── demo91_dibujo_linea.ui ├── demo92_aplicacion_dibujo_lineas.py ├── demo92_dibujo_lineas.py ├── demo92_dibujo_lineas.ui ├── demo93_aplicacion_dibujo_circulo.py ├── demo93_dibujo_circulo.py ├── demo93_dibujo_circulo.ui ├── demo94_aplicacion_dibujo_rectangulo.py ├── demo94_dibujo_rectangulo.py ├── demo94_dibujo_rectangulo.ui ├── demo95_aplicacion_dibujo_texto.py ├── demo95_dibujo_texto.py ├── demo95_dibujo_texto.ui ├── demo96_animacion_objeto.py ├── demo96_animacion_objeto.ui ├── demo96_aplicacion_animacion_objeto.py ├── demo97_aplicacion_datos_ubicacion.py ├── demo97_datos_ubicacion.py ├── demo97_datos_ubicacion.ui ├── demo98_aplicacion_ubicacion.py ├── demo98_ubicacion_latitud_longitud.py ├── demo98_ubicacion_latitud_longitud.ui ├── demo99_aplicacion_distancia.py ├── demo99_distancia_ubicaciones.py ├── demo99_distancia_ubicaciones.ui ├── ex1-iconos-recursos.qrc ├── ex1_aplicacion_graficos.py ├── ex1_graficos.py ├── ex1_graficos.ui ├── ex1_iconos_recursos.py ├── ex1_iconos_recursos.qrc ├── ex2_gestor_inventario.ui ├── ex2_producto_buscar.ui ├── ex2_producto_cambiar_disponibilidad.ui ├── ex2_producto_crear.ui ├── ex2_producto_vender.ui ├── ex2_reporte_top_5.ui ├── ex2_reporte_ventas_rango_fechas.ui ├── lineaIcon.ico ├── new.png ├── open.png ├── proyecto0 │ ├── inventario │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── ex2_gestor_inventario.py │ │ ├── ex2_gestor_inventario.ui │ │ ├── ex2_producto_buscar.py │ │ ├── ex2_producto_buscar.ui │ │ ├── ex2_producto_cambiar_disponibilidad.py │ │ ├── ex2_producto_cambiar_disponibilidad.ui │ │ ├── ex2_producto_crear.py │ │ ├── ex2_producto_crear.ui │ │ ├── ex2_producto_vender.py │ │ ├── ex2_producto_vender.ui │ │ ├── ex2_reporte_top_5.py │ │ ├── ex2_reporte_top_5.ui │ │ ├── ex2_reporte_ventas_rango_fechas.py │ │ ├── ex2_reporte_ventas_rango_fechas.ui │ │ ├── inventario.pickle │ │ ├── inventario_funciones.py │ │ └── modelos │ │ │ ├── __init__.py │ │ │ ├── inventario.py │ │ │ ├── producto.py │ │ │ └── venta.py │ └── setup.py ├── pyqt_logo.png ├── rectanguloIcon.ico └── save.png ├── parte18 ├── Parte18-Ejercicios.txt ├── demo01_introduccion_tkinter.py ├── demo02_ventana_tkinter.py ├── demo03_ventana_mensaje.py ├── demo03_ventana_mensaje_oop.py ├── demo04_dialogo_mensaje_messagebox.py ├── demo05_mensaje_saludo_click_boton.py ├── demo06_mensaje_saludo_terminar.py ├── demo07_captura_datos.py ├── demo08_lista_desplegable_combobox.py ├── demo09_casilla_comprobacion_checkbox.py ├── demo10_seleccion_excluiva_radiobutton.py ├── demo11_registro_usuario.py ├── demo12_calculadora_spinbox.py ├── demo13_barra_progreso_progressbar.py ├── demo14_lista_elementos_listbox.py ├── demo15_area_texto_scrolledtext.py ├── demo16_selector_dato_scale.py ├── demo17_apertura_archivo.py ├── demo18_guardar_archivo.py ├── demo19_organizacion_gui_panedwindow.py ├── demo20_barra_menus.py ├── demo21_pestanas_tabs.py ├── demo22_formulario_inicio_sesion.py ├── demo23_botones_colores.py ├── demo24_cambio_color_boton.py ├── demo25_colores_fondo.py ├── demo26_bandera.py ├── demo27_grilla_grid.py ├── demo28_grilla_grid_autoajustable.py ├── demo29_posicion_etiquetas_extremos_ventana.py ├── demo30_botones_4_esquinas.py ├── demo31_conversion_temperatura.py ├── demo32_editor_texto.py ├── demo33_calculadora.py ├── demo34_deteccion_pulsacion_click.py ├── demo35_imagen.py ├── demo35_python_logo.jpg ├── demo35_python_logo.png ├── demo36_contador.py ├── demo37_pil.py ├── demo38_imagenes_gui_pillow.py ├── demo39_cargar_imagenes.py ├── demo40_gestion_lenguajes_programacion.py ├── demo41_aplicacion_login.py ├── demo42_app_contactos.py ├── demo42_contactos.txt ├── demo43_calculadora.py ├── demo44_circulo.py ├── demo45_plot.py ├── demo46_tamagnio_flecha.py ├── demo47_ovalos.py ├── demo48_eventos_canvas.py ├── demo49_efecto_botones.py ├── demo50_dibujo.py ├── demo51_imagen_canvas.py ├── demo52_botón_menú.py ├── demo53_dialogo_color.py ├── demo54_barra_progreso.py ├── demo55_menu_contextual_boton.py ├── demo56_tema_colores.py ├── demo57_ventana_pantallla_completa.py ├── demo58_area_texto_spinbox.py ├── demo59_app_comentarios.py ├── demo59_comentarios.txt ├── demo60_copia_texto_app.py ├── demo61_validacion_datos_campos.py ├── demo62_meses_tabs.py ├── demo63_uso_basico_requests.py ├── demo64_cielo.jpg ├── demo64_estado_clima_app.py ├── demo65_github_usuario.py ├── demo65_perfil.jpg ├── demo65_perfil.png ├── demo66_componentes.db ├── demo66_gestor_accesorios_computadores.py ├── demo67_descargador_html_app.py ├── demo67_multiples_hilos.py ├── demo68_gestor_descargas_app.py ├── demo70_configuracion_botones.py ├── demo71_trastro_campo_texto_stringvar.py ├── demo72_validacion_campo_texto.py ├── demo73_demo_uso_scale_spinbox.py ├── demo74_seleccion_color.py ├── demo75_modos_seleccion_lista.py ├── demo76_eventos_mouse_ventana.py ├── demo77_eventos_teclado.py ├── demo78_icono.ico ├── demo78_icono_ventana.py ├── demo79_seleccion_listas.py ├── demo80_organizacion_interfaz.py ├── demo81_formulario_registro.py ├── demo82_formulario_registro.py ├── demo83_apariencia_componentes.py ├── demo84_cambio_fuente_texto.py ├── demo85_opciones_base_datos.py ├── demo86_cambiar_cursores_mouse.py ├── demo87_texto_etiquetas.py ├── demo88_mensajes_alerta.py ├── demo89_mensajes_confirmacion.py ├── demo90_archivos_carpetas_seleccion.py ├── demo91_guardar_contenido.py ├── demo91_python.txt ├── demo92_barra_menu.py ├── demo93_menu_radio_checkbox.py ├── demo94_menu_contextual.py ├── demo95_contactos.csv ├── demo95_visor_lista_contactos.py ├── demo96_contactos.db ├── demo96_migracion_datos.py ├── demo96_visor_lista_contactos.py ├── demo97_descargador_html.py ├── demo98_gestor_productos.py ├── demo99_extra.py ├── demo99_lectura_datos_api.py ├── productos.db ├── proyecto0 │ ├── inventario │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── exportados │ │ │ ├── inventario-20230525.json │ │ │ ├── inventario-20230525.xlsx │ │ │ ├── productos-20230524.csv │ │ │ └── ventas-20230524.csv │ │ ├── inventario.pickle │ │ ├── inventario_funciones.py │ │ └── modelos │ │ │ ├── __init__.py │ │ │ ├── inventario.py │ │ │ ├── producto.py │ │ │ ├── test │ │ │ └── ventana_mdi.py │ │ │ └── venta.py │ └── setup.py ├── python-logo-black.gif ├── python-logo-black.png ├── python-logo-file-black.png ├── python-logo-name-black.png └── python-logo.png ├── parte19_proyecto1_scraping ├── __init__.py ├── demo_beautifulsoup.py ├── demo_flet.py ├── main.py ├── tabla.csv ├── tabla_1.csv └── tabla_2.csv ├── parte20_inventario_flet ├── __init__.py ├── inventario │ ├── __init__.py │ ├── __main__.py │ ├── conexion.py │ ├── exportados │ │ ├── inventario-20230525.json │ │ ├── inventario-20230525.xlsx │ │ ├── productos-20230524.csv │ │ └── ventas-20230524.csv │ ├── inventario.db │ └── modelos │ │ ├── __init__.py │ │ ├── inventario.py │ │ ├── producto.py │ │ ├── test │ │ └── ventana_mdi.py │ │ └── venta.py └── setup.py ├── parte21_intro_base_datos └── __init__.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/README.md -------------------------------------------------------------------------------- /etc/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/etc/demo.py -------------------------------------------------------------------------------- /etc/demo_idle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/etc/demo_idle.py -------------------------------------------------------------------------------- /parte04/4.1_primer_programa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/4.1_primer_programa.py -------------------------------------------------------------------------------- /parte04/4.2_primer_programa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/4.2_primer_programa.py -------------------------------------------------------------------------------- /parte04/4.3_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/4.3_variables.py -------------------------------------------------------------------------------- /parte04/4.4_variables_cadenas_caracteres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/4.4_variables_cadenas_caracteres.py -------------------------------------------------------------------------------- /parte04/4.5_ejercicios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/4.5_ejercicios.txt -------------------------------------------------------------------------------- /parte04/ex4.1_version_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/ex4.1_version_python.py -------------------------------------------------------------------------------- /parte04/ex4.2_fecha_hora_actuales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/ex4.2_fecha_hora_actuales.py -------------------------------------------------------------------------------- /parte04/ex4.3_area_circulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/ex4.3_area_circulo.py -------------------------------------------------------------------------------- /parte04/ex4.4_invertir_nombre.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/ex4.4_invertir_nombre.py -------------------------------------------------------------------------------- /parte04/ex4.5_area_triangulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte04/ex4.5_area_triangulo.py -------------------------------------------------------------------------------- /parte05/5.01_enteros_int.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.01_enteros_int.py -------------------------------------------------------------------------------- /parte05/5.02_reales_float.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.02_reales_float.py -------------------------------------------------------------------------------- /parte05/5.03_complejos_complex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.03_complejos_complex.py -------------------------------------------------------------------------------- /parte05/5.04_booleanos_bool.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.04_booleanos_bool.py -------------------------------------------------------------------------------- /parte05/5.05_cadena_caracteres_string.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.05_cadena_caracteres_string.py -------------------------------------------------------------------------------- /parte05/5.06_tuplas_tuple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.06_tuplas_tuple.py -------------------------------------------------------------------------------- /parte05/5.07_lista_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.07_lista_list.py -------------------------------------------------------------------------------- /parte05/5.08_diccionario_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.08_diccionario_dict.py -------------------------------------------------------------------------------- /parte05/5.09_conjunto_set.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.09_conjunto_set.py -------------------------------------------------------------------------------- /parte05/5.10_Ejercicios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/5.10_Ejercicios.txt -------------------------------------------------------------------------------- /parte05/ex5.01_conversion_lista_a_tupla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.01_conversion_lista_a_tupla.py -------------------------------------------------------------------------------- /parte05/ex5.02_invertir_tupla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.02_invertir_tupla.py -------------------------------------------------------------------------------- /parte05/ex5.03_seccion_tupla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.03_seccion_tupla.py -------------------------------------------------------------------------------- /parte05/ex5.04_remover_elemento_tupla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.04_remover_elemento_tupla.py -------------------------------------------------------------------------------- /parte05/ex5.05_remover_duplicados_lista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.05_remover_duplicados_lista.py -------------------------------------------------------------------------------- /parte05/ex5.06_palabras_longitud_mayor_o_igual_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.06_palabras_longitud_mayor_o_igual_5.py -------------------------------------------------------------------------------- /parte05/ex5.07_elemento_aleatorio_lista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.07_elemento_aleatorio_lista.py -------------------------------------------------------------------------------- /parte05/ex5.08_frecuencia_elementos_lista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.08_frecuencia_elementos_lista.py -------------------------------------------------------------------------------- /parte05/ex5.09_suma_valores_diccionario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.09_suma_valores_diccionario.py -------------------------------------------------------------------------------- /parte05/ex5.10_remover_duplicados_diccionario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.10_remover_duplicados_diccionario.py -------------------------------------------------------------------------------- /parte05/ex5.11_top_3_valores_diccionario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.11_top_3_valores_diccionario.py -------------------------------------------------------------------------------- /parte05/ex5.12_conversion_diccionario_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.12_conversion_diccionario_json.py -------------------------------------------------------------------------------- /parte05/ex5.13_union_interseccion_conjuntos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.13_union_interseccion_conjuntos.py -------------------------------------------------------------------------------- /parte05/ex5.14_diferencia_conjuntos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.14_diferencia_conjuntos.py -------------------------------------------------------------------------------- /parte05/ex5.15_diferencia_simetrica_conjuntos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte05/ex5.15_diferencia_simetrica_conjuntos.py -------------------------------------------------------------------------------- /parte06/6.01_operadores_numericos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/6.01_operadores_numericos.py -------------------------------------------------------------------------------- /parte06/6.02_operadores_comparacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/6.02_operadores_comparacion.py -------------------------------------------------------------------------------- /parte06/6.03_operadores_logicos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/6.03_operadores_logicos.py -------------------------------------------------------------------------------- /parte06/6.04_operadores_nivel_bits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/6.04_operadores_nivel_bits.py -------------------------------------------------------------------------------- /parte06/6.05_operadores_asignacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/6.05_operadores_asignacion.py -------------------------------------------------------------------------------- /parte06/6.06_precedencia_operadores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/6.06_precedencia_operadores.py -------------------------------------------------------------------------------- /parte06/6.07_linealizacion_expresiones_algebraicas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/6.07_linealizacion_expresiones_algebraicas.py -------------------------------------------------------------------------------- /parte06/6.08_ejercicios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/6.08_ejercicios.txt -------------------------------------------------------------------------------- /parte06/ex6.1_conversion_grados_radianes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/ex6.1_conversion_grados_radianes.py -------------------------------------------------------------------------------- /parte06/ex6.2_conversion_radianes_grados.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/ex6.2_conversion_radianes_grados.py -------------------------------------------------------------------------------- /parte06/ex6.3_area_trapezoide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/ex6.3_area_trapezoide.py -------------------------------------------------------------------------------- /parte06/ex6.4_area_volumen_cilindro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/ex6.4_area_volumen_cilindro.py -------------------------------------------------------------------------------- /parte06/ex6.5_discriminante_ecuacion_cuadratica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/ex6.5_discriminante_ecuacion_cuadratica.py -------------------------------------------------------------------------------- /parte06/ex6.6_linealizacion_expresiones_algebraicas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte06/ex6.6_linealizacion_expresiones_algebraicas.py -------------------------------------------------------------------------------- /parte07/7.1_funcion_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte07/7.1_funcion_input.py -------------------------------------------------------------------------------- /parte07/7.2_funcion_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte07/7.2_funcion_print.py -------------------------------------------------------------------------------- /parte08/8.1_condicionales_intro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/8.1_condicionales_intro.py -------------------------------------------------------------------------------- /parte08/8.2_numero_mayor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/8.2_numero_mayor.py -------------------------------------------------------------------------------- /parte08/8.3_incremento_ahorros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/8.3_incremento_ahorros.py -------------------------------------------------------------------------------- /parte08/8.4_condiciones_multiples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/8.4_condiciones_multiples.py -------------------------------------------------------------------------------- /parte08/8.5_condiciones_multiples_mejora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/8.5_condiciones_multiples_mejora.py -------------------------------------------------------------------------------- /parte08/8.6_condiciones_compuestas_operador_logico_or.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/8.6_condiciones_compuestas_operador_logico_or.py -------------------------------------------------------------------------------- /parte08/8.7_ejercicios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/8.7_ejercicios.txt -------------------------------------------------------------------------------- /parte08/ex8.01_temperatura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.01_temperatura.py -------------------------------------------------------------------------------- /parte08/ex8.02_adivinar_numero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.02_adivinar_numero.py -------------------------------------------------------------------------------- /parte08/ex8.03_precio_producto_mayor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.03_precio_producto_mayor.py -------------------------------------------------------------------------------- /parte08/ex8.04_recta_punto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.04_recta_punto.py -------------------------------------------------------------------------------- /parte08/ex8.05_punto_area_rectas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.05_punto_area_rectas.py -------------------------------------------------------------------------------- /parte08/ex8.06_aplicar_descuento.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.06_aplicar_descuento.py -------------------------------------------------------------------------------- /parte08/ex8.07_categorizar_jugador.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.07_categorizar_jugador.py -------------------------------------------------------------------------------- /parte08/ex8.08_par_impar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.08_par_impar.py -------------------------------------------------------------------------------- /parte08/ex8.09_numero_entero_es_capicua.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.09_numero_entero_es_capicua.py -------------------------------------------------------------------------------- /parte08/ex8.10_esquema_rgb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte08/ex8.10_esquema_rgb.py -------------------------------------------------------------------------------- /parte09/9.1_ciclo_for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/9.1_ciclo_for.py -------------------------------------------------------------------------------- /parte09/9.2_ciclo_while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/9.2_ciclo_while.py -------------------------------------------------------------------------------- /parte09/9.3_ejercicios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/9.3_ejercicios.txt -------------------------------------------------------------------------------- /parte09/ex9.01_patron_asteriscos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.01_patron_asteriscos.py -------------------------------------------------------------------------------- /parte09/ex9.02_invertir_frase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.02_invertir_frase.py -------------------------------------------------------------------------------- /parte09/ex9.03_generar_numeros_fibonacci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.03_generar_numeros_fibonacci.py -------------------------------------------------------------------------------- /parte09/ex9.04_factorial_numero.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.04_factorial_numero.py -------------------------------------------------------------------------------- /parte09/ex9.05_patron_letra_A.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.05_patron_letra_A.py -------------------------------------------------------------------------------- /parte09/ex9.06_pares_rango_100_400.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.06_pares_rango_100_400.py -------------------------------------------------------------------------------- /parte09/ex9.07_patron_letra_E.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.07_patron_letra_E.py -------------------------------------------------------------------------------- /parte09/ex9.08_cantidad_digitos_letras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.08_cantidad_digitos_letras.py -------------------------------------------------------------------------------- /parte09/ex9.09_patron_letra_Z.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.09_patron_letra_Z.py -------------------------------------------------------------------------------- /parte09/ex9.10_estadisticas_basicas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.10_estadisticas_basicas.py -------------------------------------------------------------------------------- /parte09/ex9.11_sumataria_productoria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte09/ex9.11_sumataria_productoria.py -------------------------------------------------------------------------------- /parte10/10.1_excepciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte10/10.1_excepciones.py -------------------------------------------------------------------------------- /parte10/10.2_excepciones_aritmetica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte10/10.2_excepciones_aritmetica.py -------------------------------------------------------------------------------- /parte10/10.3_indices_lista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte10/10.3_indices_lista.py -------------------------------------------------------------------------------- /parte10/10.4_llaves_diccionario_excepcion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte10/10.4_llaves_diccionario_excepcion.py -------------------------------------------------------------------------------- /parte10/10.5_error_atributos_clase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte10/10.5_error_atributos_clase.py -------------------------------------------------------------------------------- /parte10/10.6_archivo_no_existente.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte10/10.6_archivo_no_existente.py -------------------------------------------------------------------------------- /parte10/10.7_excepcion_personalizada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte10/10.7_excepcion_personalizada.py -------------------------------------------------------------------------------- /parte11/11.1_intro_funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/11.1_intro_funciones.py -------------------------------------------------------------------------------- /parte11/11.2_argumentos_valor_referencia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/11.2_argumentos_valor_referencia.py -------------------------------------------------------------------------------- /parte11/11.3_argumentos_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/11.3_argumentos_variables.py -------------------------------------------------------------------------------- /parte11/11.4_argumentos_nombrados_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/11.4_argumentos_nombrados_variables.py -------------------------------------------------------------------------------- /parte11/11.5_argumentos_por_defecto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/11.5_argumentos_por_defecto.py -------------------------------------------------------------------------------- /parte11/11.6_funciones_recursivas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/11.6_funciones_recursivas.py -------------------------------------------------------------------------------- /parte11/11.7_expresiones_lambda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/11.7_expresiones_lambda.py -------------------------------------------------------------------------------- /parte11/11.8_ejercicios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/11.8_ejercicios.txt -------------------------------------------------------------------------------- /parte11/ex11.01_funcion_mayor_numeros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.01_funcion_mayor_numeros.py -------------------------------------------------------------------------------- /parte11/ex11.02_suma_lista_tupla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.02_suma_lista_tupla.py -------------------------------------------------------------------------------- /parte11/ex11.03_producto_lista_tupla.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.03_producto_lista_tupla.py -------------------------------------------------------------------------------- /parte11/ex11.04_invertir_cadena_caracteres.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.04_invertir_cadena_caracteres.py -------------------------------------------------------------------------------- /parte11/ex11.05_valor_en_rango.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.05_valor_en_rango.py -------------------------------------------------------------------------------- /parte11/ex11.06_funcion_conteo_minusculas_mayusculas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.06_funcion_conteo_minusculas_mayusculas.py -------------------------------------------------------------------------------- /parte11/ex11.07_numeros_unicos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.07_numeros_unicos.py -------------------------------------------------------------------------------- /parte11/ex11.08_suma_recursiva.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.08_suma_recursiva.py -------------------------------------------------------------------------------- /parte11/ex11.09_funcion_recursiva_palindromo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.09_funcion_recursiva_palindromo.py -------------------------------------------------------------------------------- /parte11/ex11.10_division_recursiva.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte11/ex11.10_division_recursiva.py -------------------------------------------------------------------------------- /parte12/12.1_programa_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte12/12.1_programa_python.py -------------------------------------------------------------------------------- /parte12/12.3_uso_programa_python.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte12/12.3_uso_programa_python.py -------------------------------------------------------------------------------- /parte12/demo_122_programa_python_punto_entrada.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte12/demo_122_programa_python_punto_entrada.py -------------------------------------------------------------------------------- /parte12/proyecto/calculadora/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte12/proyecto/calculadora/__init__.py -------------------------------------------------------------------------------- /parte12/proyecto/calculadora/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte12/proyecto/calculadora/__main__.py -------------------------------------------------------------------------------- /parte12/proyecto/calculadora/funciones_aritmeticas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte12/proyecto/calculadora/funciones_aritmeticas.py -------------------------------------------------------------------------------- /parte12/proyecto/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte12/proyecto/setup.py -------------------------------------------------------------------------------- /parte13/proyecto0/inventario/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte13/proyecto0/inventario/__init__.py -------------------------------------------------------------------------------- /parte13/proyecto0/inventario/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte13/proyecto0/inventario/__main__.py -------------------------------------------------------------------------------- /parte13/proyecto0/inventario/inventario_funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte13/proyecto0/inventario/inventario_funciones.py -------------------------------------------------------------------------------- /parte13/proyecto0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte13/proyecto0/setup.py -------------------------------------------------------------------------------- /parte13/proyecto_0_inventario.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte13/proyecto_0_inventario.txt -------------------------------------------------------------------------------- /parte14/14.1_introduccion_manipulacion_archivos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/14.1_introduccion_manipulacion_archivos.py -------------------------------------------------------------------------------- /parte14/14.2_creacion_archivo_texto_plano.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/14.2_creacion_archivo_texto_plano.py -------------------------------------------------------------------------------- /parte14/14.3_adicion_contenido_archivo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/14.3_adicion_contenido_archivo.py -------------------------------------------------------------------------------- /parte14/14.4_intro_archivos_binarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/14.4_intro_archivos_binarios.py -------------------------------------------------------------------------------- /parte14/14.5_lectura_archivo_binario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/14.5_lectura_archivo_binario.py -------------------------------------------------------------------------------- /parte14/14.6_archivos_binarios_with.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/14.6_archivos_binarios_with.py -------------------------------------------------------------------------------- /parte14/14.7_modulo_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/14.7_modulo_pickle.py -------------------------------------------------------------------------------- /parte14/14.8_operaciones_adicionales.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/14.8_operaciones_adicionales.py -------------------------------------------------------------------------------- /parte14/14.9_ejercicio.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/14.9_ejercicio.txt -------------------------------------------------------------------------------- /parte14/archivo1.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte14/lenguajes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/lenguajes.txt -------------------------------------------------------------------------------- /parte14/numeros.bin: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /parte14/paises.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/paises.txt -------------------------------------------------------------------------------- /parte14/paises_capitales.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/paises_capitales.pickle -------------------------------------------------------------------------------- /parte14/proyecto0/inventario/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/proyecto0/inventario/__init__.py -------------------------------------------------------------------------------- /parte14/proyecto0/inventario/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/proyecto0/inventario/__main__.py -------------------------------------------------------------------------------- /parte14/proyecto0/inventario/inventario.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/proyecto0/inventario/inventario.pickle -------------------------------------------------------------------------------- /parte14/proyecto0/inventario/inventario_funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/proyecto0/inventario/inventario_funciones.py -------------------------------------------------------------------------------- /parte14/proyecto0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte14/proyecto0/setup.py -------------------------------------------------------------------------------- /parte15/inventario/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/__main__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/base_datos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/base_datos/conexion.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/gui/dialogos.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/gui/formularios.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/gui/menus.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/gui/ventana.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/modelos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/modelos/cliente.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/modelos/factura.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/modelos/producto.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte15/inventario/modelos/proveedor.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte16/animales/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/animales/main.py -------------------------------------------------------------------------------- /parte16/animales/modelos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte16/animales/modelos/animal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/animales/modelos/animal.py -------------------------------------------------------------------------------- /parte16/animales/modelos/gato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/animales/modelos/gato.py -------------------------------------------------------------------------------- /parte16/animales/modelos/pato.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/animales/modelos/pato.py -------------------------------------------------------------------------------- /parte16/animales/modelos/perro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/animales/modelos/perro.py -------------------------------------------------------------------------------- /parte16/carros/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/carros/main.py -------------------------------------------------------------------------------- /parte16/carros/modelos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte16/carros/modelos/camion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/carros/modelos/camion.py -------------------------------------------------------------------------------- /parte16/carros/modelos/carro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/carros/modelos/carro.py -------------------------------------------------------------------------------- /parte16/carros/modelos/deportivo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/carros/modelos/deportivo.py -------------------------------------------------------------------------------- /parte16/carros/modelos/formula1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/carros/modelos/formula1.py -------------------------------------------------------------------------------- /parte16/carros/modelos/volqueta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/carros/modelos/volqueta.py -------------------------------------------------------------------------------- /parte16/ejercicio1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/ejercicio1.txt -------------------------------------------------------------------------------- /parte16/empleados/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/empleados/main.py -------------------------------------------------------------------------------- /parte16/empleados/modelos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte16/empleados/modelos/empleado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/empleados/modelos/empleado.py -------------------------------------------------------------------------------- /parte16/empleados/modelos/empleado_comision.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/empleados/modelos/empleado_comision.py -------------------------------------------------------------------------------- /parte16/empleados/modelos/empleado_horas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/empleados/modelos/empleado_horas.py -------------------------------------------------------------------------------- /parte16/empleados/modelos/empleado_nomina.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/empleados/modelos/empleado_nomina.py -------------------------------------------------------------------------------- /parte16/figuras/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/figuras/main.py -------------------------------------------------------------------------------- /parte16/figuras/modelos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte16/figuras/modelos/circulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/figuras/modelos/circulo.py -------------------------------------------------------------------------------- /parte16/figuras/modelos/figura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/figuras/modelos/figura.py -------------------------------------------------------------------------------- /parte16/figuras/modelos/rectangulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/figuras/modelos/rectangulo.py -------------------------------------------------------------------------------- /parte16/figuras/modelos/triangulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/figuras/modelos/triangulo.py -------------------------------------------------------------------------------- /parte16/proyecto0/inventario/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/proyecto0/inventario/__init__.py -------------------------------------------------------------------------------- /parte16/proyecto0/inventario/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/proyecto0/inventario/__main__.py -------------------------------------------------------------------------------- /parte16/proyecto0/inventario/inventario.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/proyecto0/inventario/inventario.pickle -------------------------------------------------------------------------------- /parte16/proyecto0/inventario/inventario_funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/proyecto0/inventario/inventario_funciones.py -------------------------------------------------------------------------------- /parte16/proyecto0/inventario/modelos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte16/proyecto0/inventario/modelos/inventario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/proyecto0/inventario/modelos/inventario.py -------------------------------------------------------------------------------- /parte16/proyecto0/inventario/modelos/producto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/proyecto0/inventario/modelos/producto.py -------------------------------------------------------------------------------- /parte16/proyecto0/inventario/modelos/venta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/proyecto0/inventario/modelos/venta.py -------------------------------------------------------------------------------- /parte16/proyecto0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte16/proyecto0/setup.py -------------------------------------------------------------------------------- /parte17/Parte17-Ejercicios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/Parte17-Ejercicios.txt -------------------------------------------------------------------------------- /parte17/ball.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ball.jpg -------------------------------------------------------------------------------- /parte17/circuloIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/circuloIcon.ico -------------------------------------------------------------------------------- /parte17/datos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/datos.db -------------------------------------------------------------------------------- /parte17/demo01_hola_pyqt5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo01_hola_pyqt5.py -------------------------------------------------------------------------------- /parte17/demo02_qlabel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo02_qlabel.py -------------------------------------------------------------------------------- /parte17/demo03_qpushbutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo03_qpushbutton.py -------------------------------------------------------------------------------- /parte17/demo04_qmessagebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo04_qmessagebox.py -------------------------------------------------------------------------------- /parte17/demo05_qlineedit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo05_qlineedit.py -------------------------------------------------------------------------------- /parte17/demo06_mensaje_saludo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo06_mensaje_saludo.py -------------------------------------------------------------------------------- /parte17/demo07_calculadora_suma.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo07_calculadora_suma.py -------------------------------------------------------------------------------- /parte17/demo08_calculadora_suma_qdoublevalidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo08_calculadora_suma_qdoublevalidator.py -------------------------------------------------------------------------------- /parte17/demo09_calculadora_suma_qintvalidator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo09_calculadora_suma_qintvalidator.py -------------------------------------------------------------------------------- /parte17/demo10_dialog_confirmacion_eliminacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo10_dialog_confirmacion_eliminacion.py -------------------------------------------------------------------------------- /parte17/demo11_aplicacion_con_barra_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo11_aplicacion_con_barra_menu.py -------------------------------------------------------------------------------- /parte17/demo12_qinputdialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo12_qinputdialog.py -------------------------------------------------------------------------------- /parte17/demo13_qradiobutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo13_qradiobutton.py -------------------------------------------------------------------------------- /parte17/demo14_pizza_qcheckbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo14_pizza_qcheckbox.py -------------------------------------------------------------------------------- /parte17/demo15_imagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo15_imagen.py -------------------------------------------------------------------------------- /parte17/demo16_seleccionar_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo16_seleccionar_color.py -------------------------------------------------------------------------------- /parte17/demo17_seleccionar_fuente.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo17_seleccionar_fuente.py -------------------------------------------------------------------------------- /parte17/demo18_mdi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo18_mdi.py -------------------------------------------------------------------------------- /parte17/demo19_qfiledialog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo19_qfiledialog.py -------------------------------------------------------------------------------- /parte17/demo20_qcombobox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo20_qcombobox.py -------------------------------------------------------------------------------- /parte17/demo21_qspinbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo21_qspinbox.py -------------------------------------------------------------------------------- /parte17/demo22_qslider.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo22_qslider.py -------------------------------------------------------------------------------- /parte17/demo23_barra_herramientas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo23_barra_herramientas.py -------------------------------------------------------------------------------- /parte17/demo24_portapapeles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo24_portapapeles.py -------------------------------------------------------------------------------- /parte17/demo25_qcalendarwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo25_qcalendarwidget.py -------------------------------------------------------------------------------- /parte17/demo26_qwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo26_qwidget.py -------------------------------------------------------------------------------- /parte17/demo27_lista_qlistwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo27_lista_qlistwidget.py -------------------------------------------------------------------------------- /parte17/demo28_qtabwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo28_qtabwidget.py -------------------------------------------------------------------------------- /parte17/demo29_mostrar_saludo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo29_mostrar_saludo.py -------------------------------------------------------------------------------- /parte17/demo30_pintar_puntos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo30_pintar_puntos.py -------------------------------------------------------------------------------- /parte17/demo31_tabla_datos_qtablewidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo31_tabla_datos_qtablewidget.py -------------------------------------------------------------------------------- /parte17/demo32_colores_lienzo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo32_colores_lienzo.py -------------------------------------------------------------------------------- /parte17/demo33_dialogo_captura_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo33_dialogo_captura_datos.py -------------------------------------------------------------------------------- /parte17/demo34_distribucion_horizontal_componentes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo34_distribucion_horizontal_componentes.py -------------------------------------------------------------------------------- /parte17/demo35_qgridlayout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo35_qgridlayout.py -------------------------------------------------------------------------------- /parte17/demo36_qtreeview.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo36_qtreeview.py -------------------------------------------------------------------------------- /parte17/demo37_arrastrar_y_soltar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo37_arrastrar_y_soltar.py -------------------------------------------------------------------------------- /parte17/demo38_saludo_qt_designer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo38_saludo_qt_designer.ui -------------------------------------------------------------------------------- /parte17/demo39_lanzar_archivo_gui_ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo39_lanzar_archivo_gui_ui.py -------------------------------------------------------------------------------- /parte17/demo40_traduccion_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo40_traduccion_gui.py -------------------------------------------------------------------------------- /parte17/demo41_aplicacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo41_aplicacion.py -------------------------------------------------------------------------------- /parte17/demo42_traduccion_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo42_traduccion_gui.py -------------------------------------------------------------------------------- /parte17/demo43_traduccion_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo43_traduccion_gui.py -------------------------------------------------------------------------------- /parte17/demo44_aplicacion_calculadora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo44_aplicacion_calculadora.py -------------------------------------------------------------------------------- /parte17/demo44_calculadora_basica.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo44_calculadora_basica.py -------------------------------------------------------------------------------- /parte17/demo44_calculadora_basica.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo44_calculadora_basica.ui -------------------------------------------------------------------------------- /parte17/demo45_aplicacion_saludo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo45_aplicacion_saludo.py -------------------------------------------------------------------------------- /parte17/demo45_saludo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo45_saludo.py -------------------------------------------------------------------------------- /parte17/demo45_saludo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo45_saludo.ui -------------------------------------------------------------------------------- /parte17/demo46_aplicacion_seleccion_vuelo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo46_aplicacion_seleccion_vuelo.py -------------------------------------------------------------------------------- /parte17/demo46_seleccion_vuelo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo46_seleccion_vuelo.py -------------------------------------------------------------------------------- /parte17/demo46_seleccion_vuelo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo46_seleccion_vuelo.ui -------------------------------------------------------------------------------- /parte17/demo47_aplicacion_venta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo47_aplicacion_venta.py -------------------------------------------------------------------------------- /parte17/demo47_venta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo47_venta.py -------------------------------------------------------------------------------- /parte17/demo47_venta.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo47_venta.ui -------------------------------------------------------------------------------- /parte17/demo48_aplicacion_pizzeria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo48_aplicacion_pizzeria.py -------------------------------------------------------------------------------- /parte17/demo48_pizzeria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo48_pizzeria.py -------------------------------------------------------------------------------- /parte17/demo48_pizzeria.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo48_pizzeria.ui -------------------------------------------------------------------------------- /parte17/demo49_aplicacion_inicio_sesion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo49_aplicacion_inicio_sesion.py -------------------------------------------------------------------------------- /parte17/demo49_inicio_sesion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo49_inicio_sesion.py -------------------------------------------------------------------------------- /parte17/demo49_inicio_sesion.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo49_inicio_sesion.ui -------------------------------------------------------------------------------- /parte17/demo50_aplicacion_heladeria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo50_aplicacion_heladeria.py -------------------------------------------------------------------------------- /parte17/demo50_heladeria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo50_heladeria.py -------------------------------------------------------------------------------- /parte17/demo50_heladeria.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo50_heladeria.ui -------------------------------------------------------------------------------- /parte17/demo51_aplicacion_segniales_slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo51_aplicacion_segniales_slots.py -------------------------------------------------------------------------------- /parte17/demo51_segniales_slots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo51_segniales_slots.py -------------------------------------------------------------------------------- /parte17/demo51_segniales_slots.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo51_segniales_slots.ui -------------------------------------------------------------------------------- /parte17/demo52_aplicacion_calculadora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo52_aplicacion_calculadora.py -------------------------------------------------------------------------------- /parte17/demo52_calculadora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo52_calculadora.py -------------------------------------------------------------------------------- /parte17/demo52_calculadora.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo52_calculadora.ui -------------------------------------------------------------------------------- /parte17/demo53_aplicacion_punto_venta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo53_aplicacion_punto_venta.py -------------------------------------------------------------------------------- /parte17/demo53_punto_venta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo53_punto_venta.py -------------------------------------------------------------------------------- /parte17/demo53_punto_venta.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo53_punto_venta.ui -------------------------------------------------------------------------------- /parte17/demo54_aplicacion_niveles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo54_aplicacion_niveles.py -------------------------------------------------------------------------------- /parte17/demo54_niveles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo54_niveles.py -------------------------------------------------------------------------------- /parte17/demo54_niveles.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo54_niveles.ui -------------------------------------------------------------------------------- /parte17/demo55_aplicacion_diagnosticos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo55_aplicacion_diagnosticos.py -------------------------------------------------------------------------------- /parte17/demo55_diagnosticos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo55_diagnosticos.py -------------------------------------------------------------------------------- /parte17/demo55_diagnosticos.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo55_diagnosticos.ui -------------------------------------------------------------------------------- /parte17/demo56_aplicacion_diagnosticos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo56_aplicacion_diagnosticos.py -------------------------------------------------------------------------------- /parte17/demo56_diagnosticos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo56_diagnosticos.py -------------------------------------------------------------------------------- /parte17/demo56_diagnosticos.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo56_diagnosticos.ui -------------------------------------------------------------------------------- /parte17/demo57_aplicacion_comidas_favoritas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo57_aplicacion_comidas_favoritas.py -------------------------------------------------------------------------------- /parte17/demo57_comidas_favoritas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo57_comidas_favoritas.py -------------------------------------------------------------------------------- /parte17/demo57_comidas_favoritas.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo57_comidas_favoritas.ui -------------------------------------------------------------------------------- /parte17/demo58_aplicacion_editor_comidas_favoritas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo58_aplicacion_editor_comidas_favoritas.py -------------------------------------------------------------------------------- /parte17/demo58_editor_comidas_favoritas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo58_editor_comidas_favoritas.py -------------------------------------------------------------------------------- /parte17/demo58_editor_comidas_favoritas.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo58_editor_comidas_favoritas.ui -------------------------------------------------------------------------------- /parte17/demo59_aplicacion_seleccion_lenguaje.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo59_aplicacion_seleccion_lenguaje.py -------------------------------------------------------------------------------- /parte17/demo59_seleccion_lenguaje.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo59_seleccion_lenguaje.py -------------------------------------------------------------------------------- /parte17/demo59_seleccion_lenguaje.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo59_seleccion_lenguaje.ui -------------------------------------------------------------------------------- /parte17/demo60_aplicacion_editor_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo60_aplicacion_editor_texto.py -------------------------------------------------------------------------------- /parte17/demo60_editor_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo60_editor_texto.py -------------------------------------------------------------------------------- /parte17/demo60_editor_texto.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo60_editor_texto.ui -------------------------------------------------------------------------------- /parte17/demo61_aplicacion_editor_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo61_aplicacion_editor_texto.py -------------------------------------------------------------------------------- /parte17/demo61_editor_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo61_editor_texto.py -------------------------------------------------------------------------------- /parte17/demo61_editor_texto.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo61_editor_texto.ui -------------------------------------------------------------------------------- /parte17/demo62_aplicacion_gestor_descargas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo62_aplicacion_gestor_descargas.py -------------------------------------------------------------------------------- /parte17/demo62_gestor_descargas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo62_gestor_descargas.py -------------------------------------------------------------------------------- /parte17/demo62_gestor_descargas.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo62_gestor_descargas.ui -------------------------------------------------------------------------------- /parte17/demo63_aplicacion_visor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo63_aplicacion_visor.py -------------------------------------------------------------------------------- /parte17/demo63_visor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo63_visor.py -------------------------------------------------------------------------------- /parte17/demo63_visor.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo63_visor.ui -------------------------------------------------------------------------------- /parte17/demo64_aplicacion_reloj_digital.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo64_aplicacion_reloj_digital.py -------------------------------------------------------------------------------- /parte17/demo64_reloj_digital.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo64_reloj_digital.py -------------------------------------------------------------------------------- /parte17/demo64_reloj_digital.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo64_reloj_digital.ui -------------------------------------------------------------------------------- /parte17/demo65_aplicacion_calendario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo65_aplicacion_calendario.py -------------------------------------------------------------------------------- /parte17/demo65_calendario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo65_calendario.py -------------------------------------------------------------------------------- /parte17/demo65_calendario.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo65_calendario.ui -------------------------------------------------------------------------------- /parte17/demo66_aplicacion_hotel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo66_aplicacion_hotel.py -------------------------------------------------------------------------------- /parte17/demo66_hotel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo66_hotel.py -------------------------------------------------------------------------------- /parte17/demo66_hotel.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo66_hotel.ui -------------------------------------------------------------------------------- /parte17/demo67_aplicacion_tabla_lenguajes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo67_aplicacion_tabla_lenguajes.py -------------------------------------------------------------------------------- /parte17/demo67_tabla_lenguajes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo67_tabla_lenguajes.py -------------------------------------------------------------------------------- /parte17/demo67_tabla_lenguajes.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo67_tabla_lenguajes.ui -------------------------------------------------------------------------------- /parte17/demo68_aplicacion_registro_estudiante.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo68_aplicacion_registro_estudiante.py -------------------------------------------------------------------------------- /parte17/demo68_registro_estudiante.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo68_registro_estudiante.py -------------------------------------------------------------------------------- /parte17/demo68_registro_estudiante.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo68_registro_estudiante.ui -------------------------------------------------------------------------------- /parte17/demo69_aplicacion_registro_profesor_emerito.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo69_aplicacion_registro_profesor_emerito.py -------------------------------------------------------------------------------- /parte17/demo69_registro_profesor_emerito.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo69_registro_profesor_emerito.py -------------------------------------------------------------------------------- /parte17/demo69_registro_profesor_emerito.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo69_registro_profesor_emerito.ui -------------------------------------------------------------------------------- /parte17/demo70_aplicacion_seleccion_pais.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo70_aplicacion_seleccion_pais.py -------------------------------------------------------------------------------- /parte17/demo70_seleccion_pais.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo70_seleccion_pais.py -------------------------------------------------------------------------------- /parte17/demo70_seleccion_pais.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo70_seleccion_pais.ui -------------------------------------------------------------------------------- /parte17/demo71_aplicacion_selector_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo71_aplicacion_selector_color.py -------------------------------------------------------------------------------- /parte17/demo71_selector_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo71_selector_color.py -------------------------------------------------------------------------------- /parte17/demo71_selector_color.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo71_selector_color.ui -------------------------------------------------------------------------------- /parte17/demo72_aplicacion_selector_fuente.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo72_aplicacion_selector_fuente.py -------------------------------------------------------------------------------- /parte17/demo72_selector_fuente.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo72_selector_fuente.py -------------------------------------------------------------------------------- /parte17/demo72_selector_fuente.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo72_selector_fuente.ui -------------------------------------------------------------------------------- /parte17/demo73_aplicacion_editor_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo73_aplicacion_editor_texto.py -------------------------------------------------------------------------------- /parte17/demo73_editor_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo73_editor_texto.py -------------------------------------------------------------------------------- /parte17/demo73_editor_texto.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo73_editor_texto.ui -------------------------------------------------------------------------------- /parte17/demo74_aplicacion_contenedor_ventanas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo74_aplicacion_contenedor_ventanas.py -------------------------------------------------------------------------------- /parte17/demo74_contenedor_ventanas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo74_contenedor_ventanas.py -------------------------------------------------------------------------------- /parte17/demo74_contenedor_ventanas.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo74_contenedor_ventanas.ui -------------------------------------------------------------------------------- /parte17/demo75_aplicacion_restaurante_pedidos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo75_aplicacion_restaurante_pedidos.py -------------------------------------------------------------------------------- /parte17/demo75_restaurante_pedidos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo75_restaurante_pedidos.py -------------------------------------------------------------------------------- /parte17/demo75_restaurante_pedidos.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo75_restaurante_pedidos.ui -------------------------------------------------------------------------------- /parte17/demo76_aplicacion_editor_grafico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo76_aplicacion_editor_grafico.py -------------------------------------------------------------------------------- /parte17/demo76_editor_grafico.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo76_editor_grafico.py -------------------------------------------------------------------------------- /parte17/demo76_editor_grafico.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo76_editor_grafico.ui -------------------------------------------------------------------------------- /parte17/demo77_aplicacion_descarga_archivo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo77_aplicacion_descarga_archivo.py -------------------------------------------------------------------------------- /parte17/demo77_descarga_archivo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo77_descarga_archivo.py -------------------------------------------------------------------------------- /parte17/demo77_descarga_archivo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo77_descarga_archivo.ui -------------------------------------------------------------------------------- /parte17/demo78_aplicacion_descarga_analisis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo78_aplicacion_descarga_analisis.py -------------------------------------------------------------------------------- /parte17/demo78_descarga_analisis_archivo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo78_descarga_analisis_archivo.py -------------------------------------------------------------------------------- /parte17/demo78_descarga_analisis_archivo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo78_descarga_analisis_archivo.ui -------------------------------------------------------------------------------- /parte17/demo79_aplicacion_descarga_analisis_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo79_aplicacion_descarga_analisis_async.py -------------------------------------------------------------------------------- /parte17/demo79_descarga_analisis_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo79_descarga_analisis_async.py -------------------------------------------------------------------------------- /parte17/demo79_descarga_analisis_async.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo79_descarga_analisis_async.ui -------------------------------------------------------------------------------- /parte17/demo80.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte17/demo80_aplicacion_creacion_base_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo80_aplicacion_creacion_base_datos.py -------------------------------------------------------------------------------- /parte17/demo80_creacion_base_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo80_creacion_base_datos.py -------------------------------------------------------------------------------- /parte17/demo80_creacion_base_datos.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo80_creacion_base_datos.ui -------------------------------------------------------------------------------- /parte17/demo81_aplicacion_base_datos_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo81_aplicacion_base_datos_sqlite.py -------------------------------------------------------------------------------- /parte17/demo81_base_datos_sqlite.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo81_base_datos_sqlite.py -------------------------------------------------------------------------------- /parte17/demo81_base_datos_sqlite.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo81_base_datos_sqlite.ui -------------------------------------------------------------------------------- /parte17/demo82.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo82.db -------------------------------------------------------------------------------- /parte17/demo82_aplicacion_insercion_registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo82_aplicacion_insercion_registros.py -------------------------------------------------------------------------------- /parte17/demo82_insercion_registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo82_insercion_registros.py -------------------------------------------------------------------------------- /parte17/demo82_insercion_registros.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo82_insercion_registros.ui -------------------------------------------------------------------------------- /parte17/demo83.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo83.db -------------------------------------------------------------------------------- /parte17/demo83_aplicacion_consulta_base_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo83_aplicacion_consulta_base_datos.py -------------------------------------------------------------------------------- /parte17/demo83_consulta_base_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo83_consulta_base_datos.py -------------------------------------------------------------------------------- /parte17/demo83_consulta_base_datos.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo83_consulta_base_datos.ui -------------------------------------------------------------------------------- /parte17/demo84.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo84.db -------------------------------------------------------------------------------- /parte17/demo84_aplicacion_busqueda_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo84_aplicacion_busqueda_datos.py -------------------------------------------------------------------------------- /parte17/demo84_busqueda_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo84_busqueda_datos.py -------------------------------------------------------------------------------- /parte17/demo84_busqueda_datos.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo84_busqueda_datos.ui -------------------------------------------------------------------------------- /parte17/demo85.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo85.db -------------------------------------------------------------------------------- /parte17/demo85_aplicacion_navegacion_registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo85_aplicacion_navegacion_registros.py -------------------------------------------------------------------------------- /parte17/demo85_navegacion_registros.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo85_navegacion_registros.py -------------------------------------------------------------------------------- /parte17/demo85_navegacion_registros.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo85_navegacion_registros.ui -------------------------------------------------------------------------------- /parte17/demo86.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo86.db -------------------------------------------------------------------------------- /parte17/demo86_aplicacion_inicio_sesion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo86_aplicacion_inicio_sesion.py -------------------------------------------------------------------------------- /parte17/demo86_hashing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo86_hashing.py -------------------------------------------------------------------------------- /parte17/demo86_inicio_sesion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo86_inicio_sesion.py -------------------------------------------------------------------------------- /parte17/demo86_inicio_sesion.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo86_inicio_sesion.ui -------------------------------------------------------------------------------- /parte17/demo87.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo87.db -------------------------------------------------------------------------------- /parte17/demo87_aplicacion_cambio_clave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo87_aplicacion_cambio_clave.py -------------------------------------------------------------------------------- /parte17/demo87_cambio_clave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo87_cambio_clave.py -------------------------------------------------------------------------------- /parte17/demo87_cambio_clave.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo87_cambio_clave.ui -------------------------------------------------------------------------------- /parte17/demo88.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo88.db -------------------------------------------------------------------------------- /parte17/demo88_aplicacion_remocion_cuenta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo88_aplicacion_remocion_cuenta.py -------------------------------------------------------------------------------- /parte17/demo88_remocion_cuenta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo88_remocion_cuenta.py -------------------------------------------------------------------------------- /parte17/demo88_remocion_cuenta.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo88_remocion_cuenta.ui -------------------------------------------------------------------------------- /parte17/demo89_aplicacion_puntero_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo89_aplicacion_puntero_mouse.py -------------------------------------------------------------------------------- /parte17/demo89_posicion_puntero_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo89_posicion_puntero_mouse.py -------------------------------------------------------------------------------- /parte17/demo89_posicion_puntero_mouse.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo89_posicion_puntero_mouse.ui -------------------------------------------------------------------------------- /parte17/demo90_aplicacion_dibujo_punto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo90_aplicacion_dibujo_punto.py -------------------------------------------------------------------------------- /parte17/demo90_dibujo_punto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo90_dibujo_punto.py -------------------------------------------------------------------------------- /parte17/demo90_dibujo_punto.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo90_dibujo_punto.ui -------------------------------------------------------------------------------- /parte17/demo91_aplicacion_dibujo_linea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo91_aplicacion_dibujo_linea.py -------------------------------------------------------------------------------- /parte17/demo91_dibujo_linea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo91_dibujo_linea.py -------------------------------------------------------------------------------- /parte17/demo91_dibujo_linea.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo91_dibujo_linea.ui -------------------------------------------------------------------------------- /parte17/demo92_aplicacion_dibujo_lineas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo92_aplicacion_dibujo_lineas.py -------------------------------------------------------------------------------- /parte17/demo92_dibujo_lineas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo92_dibujo_lineas.py -------------------------------------------------------------------------------- /parte17/demo92_dibujo_lineas.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo92_dibujo_lineas.ui -------------------------------------------------------------------------------- /parte17/demo93_aplicacion_dibujo_circulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo93_aplicacion_dibujo_circulo.py -------------------------------------------------------------------------------- /parte17/demo93_dibujo_circulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo93_dibujo_circulo.py -------------------------------------------------------------------------------- /parte17/demo93_dibujo_circulo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo93_dibujo_circulo.ui -------------------------------------------------------------------------------- /parte17/demo94_aplicacion_dibujo_rectangulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo94_aplicacion_dibujo_rectangulo.py -------------------------------------------------------------------------------- /parte17/demo94_dibujo_rectangulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo94_dibujo_rectangulo.py -------------------------------------------------------------------------------- /parte17/demo94_dibujo_rectangulo.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo94_dibujo_rectangulo.ui -------------------------------------------------------------------------------- /parte17/demo95_aplicacion_dibujo_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo95_aplicacion_dibujo_texto.py -------------------------------------------------------------------------------- /parte17/demo95_dibujo_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo95_dibujo_texto.py -------------------------------------------------------------------------------- /parte17/demo95_dibujo_texto.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo95_dibujo_texto.ui -------------------------------------------------------------------------------- /parte17/demo96_animacion_objeto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo96_animacion_objeto.py -------------------------------------------------------------------------------- /parte17/demo96_animacion_objeto.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo96_animacion_objeto.ui -------------------------------------------------------------------------------- /parte17/demo96_aplicacion_animacion_objeto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo96_aplicacion_animacion_objeto.py -------------------------------------------------------------------------------- /parte17/demo97_aplicacion_datos_ubicacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo97_aplicacion_datos_ubicacion.py -------------------------------------------------------------------------------- /parte17/demo97_datos_ubicacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo97_datos_ubicacion.py -------------------------------------------------------------------------------- /parte17/demo97_datos_ubicacion.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo97_datos_ubicacion.ui -------------------------------------------------------------------------------- /parte17/demo98_aplicacion_ubicacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo98_aplicacion_ubicacion.py -------------------------------------------------------------------------------- /parte17/demo98_ubicacion_latitud_longitud.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo98_ubicacion_latitud_longitud.py -------------------------------------------------------------------------------- /parte17/demo98_ubicacion_latitud_longitud.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo98_ubicacion_latitud_longitud.ui -------------------------------------------------------------------------------- /parte17/demo99_aplicacion_distancia.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo99_aplicacion_distancia.py -------------------------------------------------------------------------------- /parte17/demo99_distancia_ubicaciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo99_distancia_ubicaciones.py -------------------------------------------------------------------------------- /parte17/demo99_distancia_ubicaciones.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/demo99_distancia_ubicaciones.ui -------------------------------------------------------------------------------- /parte17/ex1-iconos-recursos.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex1-iconos-recursos.qrc -------------------------------------------------------------------------------- /parte17/ex1_aplicacion_graficos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex1_aplicacion_graficos.py -------------------------------------------------------------------------------- /parte17/ex1_graficos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex1_graficos.py -------------------------------------------------------------------------------- /parte17/ex1_graficos.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex1_graficos.ui -------------------------------------------------------------------------------- /parte17/ex1_iconos_recursos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex1_iconos_recursos.py -------------------------------------------------------------------------------- /parte17/ex1_iconos_recursos.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex1_iconos_recursos.qrc -------------------------------------------------------------------------------- /parte17/ex2_gestor_inventario.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex2_gestor_inventario.ui -------------------------------------------------------------------------------- /parte17/ex2_producto_buscar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex2_producto_buscar.ui -------------------------------------------------------------------------------- /parte17/ex2_producto_cambiar_disponibilidad.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex2_producto_cambiar_disponibilidad.ui -------------------------------------------------------------------------------- /parte17/ex2_producto_crear.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex2_producto_crear.ui -------------------------------------------------------------------------------- /parte17/ex2_producto_vender.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex2_producto_vender.ui -------------------------------------------------------------------------------- /parte17/ex2_reporte_top_5.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex2_reporte_top_5.ui -------------------------------------------------------------------------------- /parte17/ex2_reporte_ventas_rango_fechas.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/ex2_reporte_ventas_rango_fechas.ui -------------------------------------------------------------------------------- /parte17/lineaIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/lineaIcon.ico -------------------------------------------------------------------------------- /parte17/new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/new.png -------------------------------------------------------------------------------- /parte17/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/open.png -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/__init__.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/__main__.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_gestor_inventario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_gestor_inventario.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_gestor_inventario.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_gestor_inventario.ui -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_producto_buscar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_producto_buscar.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_producto_buscar.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_producto_buscar.ui -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_producto_cambiar_disponibilidad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_producto_cambiar_disponibilidad.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_producto_cambiar_disponibilidad.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_producto_cambiar_disponibilidad.ui -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_producto_crear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_producto_crear.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_producto_crear.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_producto_crear.ui -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_producto_vender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_producto_vender.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_producto_vender.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_producto_vender.ui -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_reporte_top_5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_reporte_top_5.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_reporte_top_5.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_reporte_top_5.ui -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_reporte_ventas_rango_fechas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_reporte_ventas_rango_fechas.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/ex2_reporte_ventas_rango_fechas.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/ex2_reporte_ventas_rango_fechas.ui -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/inventario.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/inventario.pickle -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/inventario_funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/inventario_funciones.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/modelos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/modelos/inventario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/modelos/inventario.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/modelos/producto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/modelos/producto.py -------------------------------------------------------------------------------- /parte17/proyecto0/inventario/modelos/venta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/inventario/modelos/venta.py -------------------------------------------------------------------------------- /parte17/proyecto0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/proyecto0/setup.py -------------------------------------------------------------------------------- /parte17/pyqt_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/pyqt_logo.png -------------------------------------------------------------------------------- /parte17/rectanguloIcon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/rectanguloIcon.ico -------------------------------------------------------------------------------- /parte17/save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte17/save.png -------------------------------------------------------------------------------- /parte18/Parte18-Ejercicios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/Parte18-Ejercicios.txt -------------------------------------------------------------------------------- /parte18/demo01_introduccion_tkinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo01_introduccion_tkinter.py -------------------------------------------------------------------------------- /parte18/demo02_ventana_tkinter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo02_ventana_tkinter.py -------------------------------------------------------------------------------- /parte18/demo03_ventana_mensaje.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo03_ventana_mensaje.py -------------------------------------------------------------------------------- /parte18/demo03_ventana_mensaje_oop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo03_ventana_mensaje_oop.py -------------------------------------------------------------------------------- /parte18/demo04_dialogo_mensaje_messagebox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo04_dialogo_mensaje_messagebox.py -------------------------------------------------------------------------------- /parte18/demo05_mensaje_saludo_click_boton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo05_mensaje_saludo_click_boton.py -------------------------------------------------------------------------------- /parte18/demo06_mensaje_saludo_terminar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo06_mensaje_saludo_terminar.py -------------------------------------------------------------------------------- /parte18/demo07_captura_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo07_captura_datos.py -------------------------------------------------------------------------------- /parte18/demo08_lista_desplegable_combobox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo08_lista_desplegable_combobox.py -------------------------------------------------------------------------------- /parte18/demo09_casilla_comprobacion_checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo09_casilla_comprobacion_checkbox.py -------------------------------------------------------------------------------- /parte18/demo10_seleccion_excluiva_radiobutton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo10_seleccion_excluiva_radiobutton.py -------------------------------------------------------------------------------- /parte18/demo11_registro_usuario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo11_registro_usuario.py -------------------------------------------------------------------------------- /parte18/demo12_calculadora_spinbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo12_calculadora_spinbox.py -------------------------------------------------------------------------------- /parte18/demo13_barra_progreso_progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo13_barra_progreso_progressbar.py -------------------------------------------------------------------------------- /parte18/demo14_lista_elementos_listbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo14_lista_elementos_listbox.py -------------------------------------------------------------------------------- /parte18/demo15_area_texto_scrolledtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo15_area_texto_scrolledtext.py -------------------------------------------------------------------------------- /parte18/demo16_selector_dato_scale.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo16_selector_dato_scale.py -------------------------------------------------------------------------------- /parte18/demo17_apertura_archivo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo17_apertura_archivo.py -------------------------------------------------------------------------------- /parte18/demo18_guardar_archivo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo18_guardar_archivo.py -------------------------------------------------------------------------------- /parte18/demo19_organizacion_gui_panedwindow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo19_organizacion_gui_panedwindow.py -------------------------------------------------------------------------------- /parte18/demo20_barra_menus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo20_barra_menus.py -------------------------------------------------------------------------------- /parte18/demo21_pestanas_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo21_pestanas_tabs.py -------------------------------------------------------------------------------- /parte18/demo22_formulario_inicio_sesion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo22_formulario_inicio_sesion.py -------------------------------------------------------------------------------- /parte18/demo23_botones_colores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo23_botones_colores.py -------------------------------------------------------------------------------- /parte18/demo24_cambio_color_boton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo24_cambio_color_boton.py -------------------------------------------------------------------------------- /parte18/demo25_colores_fondo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo25_colores_fondo.py -------------------------------------------------------------------------------- /parte18/demo26_bandera.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo26_bandera.py -------------------------------------------------------------------------------- /parte18/demo27_grilla_grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo27_grilla_grid.py -------------------------------------------------------------------------------- /parte18/demo28_grilla_grid_autoajustable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo28_grilla_grid_autoajustable.py -------------------------------------------------------------------------------- /parte18/demo29_posicion_etiquetas_extremos_ventana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo29_posicion_etiquetas_extremos_ventana.py -------------------------------------------------------------------------------- /parte18/demo30_botones_4_esquinas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo30_botones_4_esquinas.py -------------------------------------------------------------------------------- /parte18/demo31_conversion_temperatura.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo31_conversion_temperatura.py -------------------------------------------------------------------------------- /parte18/demo32_editor_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo32_editor_texto.py -------------------------------------------------------------------------------- /parte18/demo33_calculadora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo33_calculadora.py -------------------------------------------------------------------------------- /parte18/demo34_deteccion_pulsacion_click.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo34_deteccion_pulsacion_click.py -------------------------------------------------------------------------------- /parte18/demo35_imagen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo35_imagen.py -------------------------------------------------------------------------------- /parte18/demo35_python_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo35_python_logo.jpg -------------------------------------------------------------------------------- /parte18/demo35_python_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo35_python_logo.png -------------------------------------------------------------------------------- /parte18/demo36_contador.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo36_contador.py -------------------------------------------------------------------------------- /parte18/demo37_pil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo37_pil.py -------------------------------------------------------------------------------- /parte18/demo38_imagenes_gui_pillow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo38_imagenes_gui_pillow.py -------------------------------------------------------------------------------- /parte18/demo39_cargar_imagenes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo39_cargar_imagenes.py -------------------------------------------------------------------------------- /parte18/demo40_gestion_lenguajes_programacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo40_gestion_lenguajes_programacion.py -------------------------------------------------------------------------------- /parte18/demo41_aplicacion_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo41_aplicacion_login.py -------------------------------------------------------------------------------- /parte18/demo42_app_contactos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo42_app_contactos.py -------------------------------------------------------------------------------- /parte18/demo42_contactos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo42_contactos.txt -------------------------------------------------------------------------------- /parte18/demo43_calculadora.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo43_calculadora.py -------------------------------------------------------------------------------- /parte18/demo44_circulo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo44_circulo.py -------------------------------------------------------------------------------- /parte18/demo45_plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo45_plot.py -------------------------------------------------------------------------------- /parte18/demo46_tamagnio_flecha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo46_tamagnio_flecha.py -------------------------------------------------------------------------------- /parte18/demo47_ovalos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo47_ovalos.py -------------------------------------------------------------------------------- /parte18/demo48_eventos_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo48_eventos_canvas.py -------------------------------------------------------------------------------- /parte18/demo49_efecto_botones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo49_efecto_botones.py -------------------------------------------------------------------------------- /parte18/demo50_dibujo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo50_dibujo.py -------------------------------------------------------------------------------- /parte18/demo51_imagen_canvas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo51_imagen_canvas.py -------------------------------------------------------------------------------- /parte18/demo52_botón_menú.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo52_botón_menú.py -------------------------------------------------------------------------------- /parte18/demo53_dialogo_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo53_dialogo_color.py -------------------------------------------------------------------------------- /parte18/demo54_barra_progreso.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo54_barra_progreso.py -------------------------------------------------------------------------------- /parte18/demo55_menu_contextual_boton.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo55_menu_contextual_boton.py -------------------------------------------------------------------------------- /parte18/demo56_tema_colores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo56_tema_colores.py -------------------------------------------------------------------------------- /parte18/demo57_ventana_pantallla_completa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo57_ventana_pantallla_completa.py -------------------------------------------------------------------------------- /parte18/demo58_area_texto_spinbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo58_area_texto_spinbox.py -------------------------------------------------------------------------------- /parte18/demo59_app_comentarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo59_app_comentarios.py -------------------------------------------------------------------------------- /parte18/demo59_comentarios.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo59_comentarios.txt -------------------------------------------------------------------------------- /parte18/demo60_copia_texto_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo60_copia_texto_app.py -------------------------------------------------------------------------------- /parte18/demo61_validacion_datos_campos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo61_validacion_datos_campos.py -------------------------------------------------------------------------------- /parte18/demo62_meses_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo62_meses_tabs.py -------------------------------------------------------------------------------- /parte18/demo63_uso_basico_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo63_uso_basico_requests.py -------------------------------------------------------------------------------- /parte18/demo64_cielo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo64_cielo.jpg -------------------------------------------------------------------------------- /parte18/demo64_estado_clima_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo64_estado_clima_app.py -------------------------------------------------------------------------------- /parte18/demo65_github_usuario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo65_github_usuario.py -------------------------------------------------------------------------------- /parte18/demo65_perfil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo65_perfil.jpg -------------------------------------------------------------------------------- /parte18/demo65_perfil.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo65_perfil.png -------------------------------------------------------------------------------- /parte18/demo66_componentes.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo66_componentes.db -------------------------------------------------------------------------------- /parte18/demo66_gestor_accesorios_computadores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo66_gestor_accesorios_computadores.py -------------------------------------------------------------------------------- /parte18/demo67_descargador_html_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo67_descargador_html_app.py -------------------------------------------------------------------------------- /parte18/demo67_multiples_hilos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo67_multiples_hilos.py -------------------------------------------------------------------------------- /parte18/demo68_gestor_descargas_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo68_gestor_descargas_app.py -------------------------------------------------------------------------------- /parte18/demo70_configuracion_botones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo70_configuracion_botones.py -------------------------------------------------------------------------------- /parte18/demo71_trastro_campo_texto_stringvar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo71_trastro_campo_texto_stringvar.py -------------------------------------------------------------------------------- /parte18/demo72_validacion_campo_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo72_validacion_campo_texto.py -------------------------------------------------------------------------------- /parte18/demo73_demo_uso_scale_spinbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo73_demo_uso_scale_spinbox.py -------------------------------------------------------------------------------- /parte18/demo74_seleccion_color.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo74_seleccion_color.py -------------------------------------------------------------------------------- /parte18/demo75_modos_seleccion_lista.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo75_modos_seleccion_lista.py -------------------------------------------------------------------------------- /parte18/demo76_eventos_mouse_ventana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo76_eventos_mouse_ventana.py -------------------------------------------------------------------------------- /parte18/demo77_eventos_teclado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo77_eventos_teclado.py -------------------------------------------------------------------------------- /parte18/demo78_icono.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo78_icono.ico -------------------------------------------------------------------------------- /parte18/demo78_icono_ventana.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo78_icono_ventana.py -------------------------------------------------------------------------------- /parte18/demo79_seleccion_listas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo79_seleccion_listas.py -------------------------------------------------------------------------------- /parte18/demo80_organizacion_interfaz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo80_organizacion_interfaz.py -------------------------------------------------------------------------------- /parte18/demo81_formulario_registro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo81_formulario_registro.py -------------------------------------------------------------------------------- /parte18/demo82_formulario_registro.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo82_formulario_registro.py -------------------------------------------------------------------------------- /parte18/demo83_apariencia_componentes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo83_apariencia_componentes.py -------------------------------------------------------------------------------- /parte18/demo84_cambio_fuente_texto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo84_cambio_fuente_texto.py -------------------------------------------------------------------------------- /parte18/demo85_opciones_base_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo85_opciones_base_datos.py -------------------------------------------------------------------------------- /parte18/demo86_cambiar_cursores_mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo86_cambiar_cursores_mouse.py -------------------------------------------------------------------------------- /parte18/demo87_texto_etiquetas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo87_texto_etiquetas.py -------------------------------------------------------------------------------- /parte18/demo88_mensajes_alerta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo88_mensajes_alerta.py -------------------------------------------------------------------------------- /parte18/demo89_mensajes_confirmacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo89_mensajes_confirmacion.py -------------------------------------------------------------------------------- /parte18/demo90_archivos_carpetas_seleccion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo90_archivos_carpetas_seleccion.py -------------------------------------------------------------------------------- /parte18/demo91_guardar_contenido.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo91_guardar_contenido.py -------------------------------------------------------------------------------- /parte18/demo91_python.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo91_python.txt -------------------------------------------------------------------------------- /parte18/demo92_barra_menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo92_barra_menu.py -------------------------------------------------------------------------------- /parte18/demo93_menu_radio_checkbox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo93_menu_radio_checkbox.py -------------------------------------------------------------------------------- /parte18/demo94_menu_contextual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo94_menu_contextual.py -------------------------------------------------------------------------------- /parte18/demo95_contactos.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo95_contactos.csv -------------------------------------------------------------------------------- /parte18/demo95_visor_lista_contactos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo95_visor_lista_contactos.py -------------------------------------------------------------------------------- /parte18/demo96_contactos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo96_contactos.db -------------------------------------------------------------------------------- /parte18/demo96_migracion_datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo96_migracion_datos.py -------------------------------------------------------------------------------- /parte18/demo96_visor_lista_contactos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo96_visor_lista_contactos.py -------------------------------------------------------------------------------- /parte18/demo97_descargador_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo97_descargador_html.py -------------------------------------------------------------------------------- /parte18/demo98_gestor_productos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo98_gestor_productos.py -------------------------------------------------------------------------------- /parte18/demo99_extra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo99_extra.py -------------------------------------------------------------------------------- /parte18/demo99_lectura_datos_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/demo99_lectura_datos_api.py -------------------------------------------------------------------------------- /parte18/productos.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/productos.db -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/__init__.py -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/__main__.py -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/exportados/inventario-20230525.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/exportados/inventario-20230525.json -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/exportados/inventario-20230525.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/exportados/inventario-20230525.xlsx -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/exportados/productos-20230524.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/exportados/productos-20230524.csv -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/exportados/ventas-20230524.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/exportados/ventas-20230524.csv -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/inventario.pickle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/inventario.pickle -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/inventario_funciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/inventario_funciones.py -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/modelos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/modelos/inventario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/modelos/inventario.py -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/modelos/producto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/modelos/producto.py -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/modelos/test/ventana_mdi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/modelos/test/ventana_mdi.py -------------------------------------------------------------------------------- /parte18/proyecto0/inventario/modelos/venta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/inventario/modelos/venta.py -------------------------------------------------------------------------------- /parte18/proyecto0/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/proyecto0/setup.py -------------------------------------------------------------------------------- /parte18/python-logo-black.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/python-logo-black.gif -------------------------------------------------------------------------------- /parte18/python-logo-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/python-logo-black.png -------------------------------------------------------------------------------- /parte18/python-logo-file-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/python-logo-file-black.png -------------------------------------------------------------------------------- /parte18/python-logo-name-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/python-logo-name-black.png -------------------------------------------------------------------------------- /parte18/python-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte18/python-logo.png -------------------------------------------------------------------------------- /parte19_proyecto1_scraping/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte19_proyecto1_scraping/demo_beautifulsoup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte19_proyecto1_scraping/demo_beautifulsoup.py -------------------------------------------------------------------------------- /parte19_proyecto1_scraping/demo_flet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte19_proyecto1_scraping/demo_flet.py -------------------------------------------------------------------------------- /parte19_proyecto1_scraping/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte19_proyecto1_scraping/main.py -------------------------------------------------------------------------------- /parte19_proyecto1_scraping/tabla.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte19_proyecto1_scraping/tabla.csv -------------------------------------------------------------------------------- /parte19_proyecto1_scraping/tabla_1.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte19_proyecto1_scraping/tabla_1.csv -------------------------------------------------------------------------------- /parte19_proyecto1_scraping/tabla_2.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte19_proyecto1_scraping/tabla_2.csv -------------------------------------------------------------------------------- /parte20_inventario_flet/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/__init__.py -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/__main__.py -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/conexion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/conexion.py -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/exportados/inventario-20230525.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/exportados/inventario-20230525.json -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/exportados/inventario-20230525.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/exportados/inventario-20230525.xlsx -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/exportados/productos-20230524.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/exportados/productos-20230524.csv -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/exportados/ventas-20230524.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/exportados/ventas-20230524.csv -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/inventario.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/inventario.db -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/modelos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/modelos/inventario.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/modelos/inventario.py -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/modelos/producto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/modelos/producto.py -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/modelos/test/ventana_mdi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/modelos/test/ventana_mdi.py -------------------------------------------------------------------------------- /parte20_inventario_flet/inventario/modelos/venta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/inventario/modelos/venta.py -------------------------------------------------------------------------------- /parte20_inventario_flet/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/parte20_inventario_flet/setup.py -------------------------------------------------------------------------------- /parte21_intro_base_datos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-CursoV2/HEAD/requirements.txt --------------------------------------------------------------------------------