├── 001_Abre_esta_carpeta ├── iformacion_del_curso.md └── preguntas_resueltas_aquí.md ├── 01_basic ├── 01_print.py ├── 02_types.py ├── 03_cast.py ├── 04_variables.py ├── 05_input.py ├── exercises.py └── soluciones.py ├── 02_flow_control ├── 01_if.py ├── 01_if_solutions.py ├── 02_booleans.py ├── 03_list.py ├── 03_list_solutions.py ├── 04_list_methods.py └── 04_list_methods_solutions.py ├── 03_loops ├── 01_loop_while.py ├── 01_loop_while_solutions.py ├── 02_loop_for.py ├── 02_loop_for_solutions.py ├── 03_range.py ├── 03_range_solutions.py └── 04_functions.py ├── 04_logic ├── 01_challenge_fantastic_four.py ├── 02_challenge_jurassic_park.py ├── 03_challenge_find_first_sum.py ├── 04_dictionaries.py └── 05_challenge_battle.py ├── 05_regex ├── 01_re.py ├── 02_metachars.py ├── 03_quantifiers.py └── 04_sets.py ├── 06_request_ai_dates ├── 01_dates.py ├── 02_requests.py └── 03_clases.py ├── 07_scraping ├── 01_basic.py ├── 02_beautiful.py ├── 03_wiki_scraper.py ├── 04_seo_cli.py ├── 05_playwright.py └── 06_playwright_scraping.py ├── LICENSE ├── README.md └── test.py /001_Abre_esta_carpeta/iformacion_del_curso.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/001_Abre_esta_carpeta/iformacion_del_curso.md -------------------------------------------------------------------------------- /001_Abre_esta_carpeta/preguntas_resueltas_aquí.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/001_Abre_esta_carpeta/preguntas_resueltas_aquí.md -------------------------------------------------------------------------------- /01_basic/01_print.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/01_basic/01_print.py -------------------------------------------------------------------------------- /01_basic/02_types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/01_basic/02_types.py -------------------------------------------------------------------------------- /01_basic/03_cast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/01_basic/03_cast.py -------------------------------------------------------------------------------- /01_basic/04_variables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/01_basic/04_variables.py -------------------------------------------------------------------------------- /01_basic/05_input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/01_basic/05_input.py -------------------------------------------------------------------------------- /01_basic/exercises.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/01_basic/exercises.py -------------------------------------------------------------------------------- /01_basic/soluciones.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/01_basic/soluciones.py -------------------------------------------------------------------------------- /02_flow_control/01_if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/02_flow_control/01_if.py -------------------------------------------------------------------------------- /02_flow_control/01_if_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/02_flow_control/01_if_solutions.py -------------------------------------------------------------------------------- /02_flow_control/02_booleans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/02_flow_control/02_booleans.py -------------------------------------------------------------------------------- /02_flow_control/03_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/02_flow_control/03_list.py -------------------------------------------------------------------------------- /02_flow_control/03_list_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/02_flow_control/03_list_solutions.py -------------------------------------------------------------------------------- /02_flow_control/04_list_methods.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/02_flow_control/04_list_methods.py -------------------------------------------------------------------------------- /02_flow_control/04_list_methods_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/02_flow_control/04_list_methods_solutions.py -------------------------------------------------------------------------------- /03_loops/01_loop_while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/03_loops/01_loop_while.py -------------------------------------------------------------------------------- /03_loops/01_loop_while_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/03_loops/01_loop_while_solutions.py -------------------------------------------------------------------------------- /03_loops/02_loop_for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/03_loops/02_loop_for.py -------------------------------------------------------------------------------- /03_loops/02_loop_for_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/03_loops/02_loop_for_solutions.py -------------------------------------------------------------------------------- /03_loops/03_range.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/03_loops/03_range.py -------------------------------------------------------------------------------- /03_loops/03_range_solutions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/03_loops/03_range_solutions.py -------------------------------------------------------------------------------- /03_loops/04_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/03_loops/04_functions.py -------------------------------------------------------------------------------- /04_logic/01_challenge_fantastic_four.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/04_logic/01_challenge_fantastic_four.py -------------------------------------------------------------------------------- /04_logic/02_challenge_jurassic_park.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/04_logic/02_challenge_jurassic_park.py -------------------------------------------------------------------------------- /04_logic/03_challenge_find_first_sum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/04_logic/03_challenge_find_first_sum.py -------------------------------------------------------------------------------- /04_logic/04_dictionaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/04_logic/04_dictionaries.py -------------------------------------------------------------------------------- /04_logic/05_challenge_battle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/04_logic/05_challenge_battle.py -------------------------------------------------------------------------------- /05_regex/01_re.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/05_regex/01_re.py -------------------------------------------------------------------------------- /05_regex/02_metachars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/05_regex/02_metachars.py -------------------------------------------------------------------------------- /05_regex/03_quantifiers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/05_regex/03_quantifiers.py -------------------------------------------------------------------------------- /05_regex/04_sets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/05_regex/04_sets.py -------------------------------------------------------------------------------- /06_request_ai_dates/01_dates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/06_request_ai_dates/01_dates.py -------------------------------------------------------------------------------- /06_request_ai_dates/02_requests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/06_request_ai_dates/02_requests.py -------------------------------------------------------------------------------- /06_request_ai_dates/03_clases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/06_request_ai_dates/03_clases.py -------------------------------------------------------------------------------- /07_scraping/01_basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/07_scraping/01_basic.py -------------------------------------------------------------------------------- /07_scraping/02_beautiful.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/07_scraping/02_beautiful.py -------------------------------------------------------------------------------- /07_scraping/03_wiki_scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/07_scraping/03_wiki_scraper.py -------------------------------------------------------------------------------- /07_scraping/04_seo_cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/07_scraping/04_seo_cli.py -------------------------------------------------------------------------------- /07_scraping/05_playwright.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/07_scraping/05_playwright.py -------------------------------------------------------------------------------- /07_scraping/06_playwright_scraping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/07_scraping/06_playwright_scraping.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/README.md -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/midudev/curso-python/HEAD/test.py --------------------------------------------------------------------------------