├── .github └── ISSUE_TEMPLATE │ ├── bug.md │ ├── mejora-del-texto.md │ ├── sugerencia-de-contenido.md │ ├── texto-erroneo.md │ └── typo.md ├── .gitignore ├── LICENSE ├── README.md ├── alumni ├── __init__.py ├── delapuente │ ├── __init__.py │ ├── airdefense │ │ ├── __init__.py │ │ ├── control.py │ │ └── defense.py │ ├── exercises │ │ ├── __init__.py │ │ ├── __main__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── __main__.cpython-37.pyc │ │ │ └── fizzbuzz.cpython-37.pyc │ │ └── fizzbuzz.py │ └── fizzbuzz.py ├── eun-plata │ ├── __init__.py │ └── fizzbuzz.py ├── parr0x │ ├── __init__.py │ └── fizzbuzz.py ├── ramoncorominas │ ├── __init__.py │ ├── fizzbuzz.py │ └── repeated.py └── y4izus │ ├── __init__.py │ ├── fizzbuzz.py │ ├── param_decorators.py │ ├── repeated.py │ └── valid_annotations_decorator.py ├── fuentes ├── b01t03 │ ├── .ipynb_checkpoints │ │ └── fizzbuzz-checkpoint.py │ └── fizzbuzz.py ├── b02t01 │ └── httprequest.py ├── b02t02 │ ├── compiler_01_separado.py │ ├── compiler_02_progressbar.py │ ├── compiler_03_inyeccion_dependencias.py │ └── compiler_04_segregacion.py ├── b03t10 │ └── calc.py ├── b04t04 │ └── vector.py └── b07t01 │ ├── .ipynb_checkpoints │ └── jupyter-notebook-representations-checkpoint.ipynb │ └── jupyter-notebook-representations.ipynb └── teoria ├── b01t01.md ├── b01t02.md ├── b01t03.md ├── b01t04.md ├── b02t01.md ├── b02t02.md ├── b02t03.md ├── b03t01.md ├── b03t02.md ├── b03t03.md ├── b03t04.md ├── b03t05.md ├── b03t06.md ├── b03t07.md ├── b03t08.md ├── b03t09.md ├── b03t10.md ├── b03t11.md ├── b04t01.md ├── b04t02.md ├── b04t03.md ├── b04t04.md ├── b05t01.md ├── b05t02.md ├── b05t03.md ├── b05t04.md ├── b05t05.md ├── b05t06.md ├── b06t01.md ├── b06t02.md ├── b07t01.md ├── b07t02.md ├── b07t03.md └── imgs ├── anaconda-navigator.png ├── integration-vs-unit-test.gif ├── jupyter-lab.png ├── jupyter-notebook.png └── pycharm.png /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/mejora-del-texto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/.github/ISSUE_TEMPLATE/mejora-del-texto.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/sugerencia-de-contenido.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/.github/ISSUE_TEMPLATE/sugerencia-de-contenido.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/texto-erroneo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/.github/ISSUE_TEMPLATE/texto-erroneo.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/typo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/.github/ISSUE_TEMPLATE/typo.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/README.md -------------------------------------------------------------------------------- /alumni/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alumni/delapuente/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alumni/delapuente/airdefense/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alumni/delapuente/airdefense/control.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alumni/delapuente/airdefense/defense.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alumni/delapuente/exercises/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/delapuente/exercises/__init__.py -------------------------------------------------------------------------------- /alumni/delapuente/exercises/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/delapuente/exercises/__main__.py -------------------------------------------------------------------------------- /alumni/delapuente/exercises/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/delapuente/exercises/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /alumni/delapuente/exercises/__pycache__/__main__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/delapuente/exercises/__pycache__/__main__.cpython-37.pyc -------------------------------------------------------------------------------- /alumni/delapuente/exercises/__pycache__/fizzbuzz.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/delapuente/exercises/__pycache__/fizzbuzz.cpython-37.pyc -------------------------------------------------------------------------------- /alumni/delapuente/exercises/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/delapuente/exercises/fizzbuzz.py -------------------------------------------------------------------------------- /alumni/delapuente/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/delapuente/fizzbuzz.py -------------------------------------------------------------------------------- /alumni/eun-plata/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alumni/eun-plata/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/eun-plata/fizzbuzz.py -------------------------------------------------------------------------------- /alumni/parr0x/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alumni/parr0x/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/parr0x/fizzbuzz.py -------------------------------------------------------------------------------- /alumni/ramoncorominas/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alumni/ramoncorominas/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/ramoncorominas/fizzbuzz.py -------------------------------------------------------------------------------- /alumni/ramoncorominas/repeated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/ramoncorominas/repeated.py -------------------------------------------------------------------------------- /alumni/y4izus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /alumni/y4izus/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/y4izus/fizzbuzz.py -------------------------------------------------------------------------------- /alumni/y4izus/param_decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/y4izus/param_decorators.py -------------------------------------------------------------------------------- /alumni/y4izus/repeated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/y4izus/repeated.py -------------------------------------------------------------------------------- /alumni/y4izus/valid_annotations_decorator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/alumni/y4izus/valid_annotations_decorator.py -------------------------------------------------------------------------------- /fuentes/b01t03/.ipynb_checkpoints/fizzbuzz-checkpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b01t03/.ipynb_checkpoints/fizzbuzz-checkpoint.py -------------------------------------------------------------------------------- /fuentes/b01t03/fizzbuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b01t03/fizzbuzz.py -------------------------------------------------------------------------------- /fuentes/b02t01/httprequest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b02t01/httprequest.py -------------------------------------------------------------------------------- /fuentes/b02t02/compiler_01_separado.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b02t02/compiler_01_separado.py -------------------------------------------------------------------------------- /fuentes/b02t02/compiler_02_progressbar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b02t02/compiler_02_progressbar.py -------------------------------------------------------------------------------- /fuentes/b02t02/compiler_03_inyeccion_dependencias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b02t02/compiler_03_inyeccion_dependencias.py -------------------------------------------------------------------------------- /fuentes/b02t02/compiler_04_segregacion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b02t02/compiler_04_segregacion.py -------------------------------------------------------------------------------- /fuentes/b03t10/calc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b03t10/calc.py -------------------------------------------------------------------------------- /fuentes/b04t04/vector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b04t04/vector.py -------------------------------------------------------------------------------- /fuentes/b07t01/.ipynb_checkpoints/jupyter-notebook-representations-checkpoint.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b07t01/.ipynb_checkpoints/jupyter-notebook-representations-checkpoint.ipynb -------------------------------------------------------------------------------- /fuentes/b07t01/jupyter-notebook-representations.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/fuentes/b07t01/jupyter-notebook-representations.ipynb -------------------------------------------------------------------------------- /teoria/b01t01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b01t01.md -------------------------------------------------------------------------------- /teoria/b01t02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b01t02.md -------------------------------------------------------------------------------- /teoria/b01t03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b01t03.md -------------------------------------------------------------------------------- /teoria/b01t04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b01t04.md -------------------------------------------------------------------------------- /teoria/b02t01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b02t01.md -------------------------------------------------------------------------------- /teoria/b02t02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b02t02.md -------------------------------------------------------------------------------- /teoria/b02t03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b02t03.md -------------------------------------------------------------------------------- /teoria/b03t01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t01.md -------------------------------------------------------------------------------- /teoria/b03t02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t02.md -------------------------------------------------------------------------------- /teoria/b03t03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t03.md -------------------------------------------------------------------------------- /teoria/b03t04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t04.md -------------------------------------------------------------------------------- /teoria/b03t05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t05.md -------------------------------------------------------------------------------- /teoria/b03t06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t06.md -------------------------------------------------------------------------------- /teoria/b03t07.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t07.md -------------------------------------------------------------------------------- /teoria/b03t08.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t08.md -------------------------------------------------------------------------------- /teoria/b03t09.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t09.md -------------------------------------------------------------------------------- /teoria/b03t10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t10.md -------------------------------------------------------------------------------- /teoria/b03t11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b03t11.md -------------------------------------------------------------------------------- /teoria/b04t01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b04t01.md -------------------------------------------------------------------------------- /teoria/b04t02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b04t02.md -------------------------------------------------------------------------------- /teoria/b04t03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b04t03.md -------------------------------------------------------------------------------- /teoria/b04t04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b04t04.md -------------------------------------------------------------------------------- /teoria/b05t01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b05t01.md -------------------------------------------------------------------------------- /teoria/b05t02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b05t02.md -------------------------------------------------------------------------------- /teoria/b05t03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b05t03.md -------------------------------------------------------------------------------- /teoria/b05t04.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b05t04.md -------------------------------------------------------------------------------- /teoria/b05t05.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b05t05.md -------------------------------------------------------------------------------- /teoria/b05t06.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b05t06.md -------------------------------------------------------------------------------- /teoria/b06t01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b06t01.md -------------------------------------------------------------------------------- /teoria/b06t02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b06t02.md -------------------------------------------------------------------------------- /teoria/b07t01.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b07t01.md -------------------------------------------------------------------------------- /teoria/b07t02.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b07t02.md -------------------------------------------------------------------------------- /teoria/b07t03.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/b07t03.md -------------------------------------------------------------------------------- /teoria/imgs/anaconda-navigator.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/imgs/anaconda-navigator.png -------------------------------------------------------------------------------- /teoria/imgs/integration-vs-unit-test.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/imgs/integration-vs-unit-test.gif -------------------------------------------------------------------------------- /teoria/imgs/jupyter-lab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/imgs/jupyter-lab.png -------------------------------------------------------------------------------- /teoria/imgs/jupyter-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/imgs/jupyter-notebook.png -------------------------------------------------------------------------------- /teoria/imgs/pycharm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fictizia/Master-en-Programacion-con-Python_ed1/HEAD/teoria/imgs/pycharm.png --------------------------------------------------------------------------------