├── .gitignore ├── .vscode └── settings.json ├── README.md ├── etc └── demo.py ├── parte01 ├── 1.1_base_datos_memoria.py ├── 1.2_parsing_datos_web.py ├── 1.3_parsing_json_persistencia_pickle.py ├── estudiantes.csv ├── programadores.json └── programadores.pkl ├── parte02 ├── 2.1_listas_comprension.py ├── 2.2_estadistica_counter_numpy.py └── 2.3_diccionarios_predeterminados.py ├── parte03 ├── 3.1_medicion_tiempo_ejecucion.py └── 3.2_perfilamiento_ejecucion_codigo.py ├── parte04 └── 4.1_programacion_concurrent.py ├── parte05 ├── 5.1_ejecucion_eficiente_paralelo.py └── 5.2_control_ejecucion_paralela.py └── parte06 ├── 6.1_generador_patron_diamante.py └── 6.2_formatear_codigo_black.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/README.md -------------------------------------------------------------------------------- /etc/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/etc/demo.py -------------------------------------------------------------------------------- /parte01/1.1_base_datos_memoria.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte01/1.1_base_datos_memoria.py -------------------------------------------------------------------------------- /parte01/1.2_parsing_datos_web.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte01/1.2_parsing_datos_web.py -------------------------------------------------------------------------------- /parte01/1.3_parsing_json_persistencia_pickle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte01/1.3_parsing_json_persistencia_pickle.py -------------------------------------------------------------------------------- /parte01/estudiantes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte01/estudiantes.csv -------------------------------------------------------------------------------- /parte01/programadores.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte01/programadores.json -------------------------------------------------------------------------------- /parte01/programadores.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte01/programadores.pkl -------------------------------------------------------------------------------- /parte02/2.1_listas_comprension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte02/2.1_listas_comprension.py -------------------------------------------------------------------------------- /parte02/2.2_estadistica_counter_numpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte02/2.2_estadistica_counter_numpy.py -------------------------------------------------------------------------------- /parte02/2.3_diccionarios_predeterminados.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte02/2.3_diccionarios_predeterminados.py -------------------------------------------------------------------------------- /parte03/3.1_medicion_tiempo_ejecucion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte03/3.1_medicion_tiempo_ejecucion.py -------------------------------------------------------------------------------- /parte03/3.2_perfilamiento_ejecucion_codigo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte03/3.2_perfilamiento_ejecucion_codigo.py -------------------------------------------------------------------------------- /parte04/4.1_programacion_concurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte04/4.1_programacion_concurrent.py -------------------------------------------------------------------------------- /parte05/5.1_ejecucion_eficiente_paralelo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte05/5.1_ejecucion_eficiente_paralelo.py -------------------------------------------------------------------------------- /parte05/5.2_control_ejecucion_paralela.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte05/5.2_control_ejecucion_paralela.py -------------------------------------------------------------------------------- /parte06/6.1_generador_patron_diamante.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte06/6.1_generador_patron_diamante.py -------------------------------------------------------------------------------- /parte06/6.2_formatear_codigo_black.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fhernd/Python-Curso/HEAD/parte06/6.2_formatear_codigo_black.py --------------------------------------------------------------------------------