Skip to content

Commit 1cfa514

Browse files
committed
Uploaded day 2.
1 parent b5d1c3f commit 1cfa514

9 files changed

+22322
-2
lines changed

Módulo 2.zip

143 KB
Binary file not shown.
Binary file not shown.

Módulo 2/base.py

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
def saludo():
2+
name = input("Introduce tu nombre: ")
3+
print(f"Mucho gusto, {name}")
4+
5+
6+
if __name__ == '__main__':
7+
saludo()

material.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
"title": "Módulo 2",
1111
"subtitle": "Python básico y web (pt. II)",
1212
"description": "Introducción básica a la sintaxis de Python, scripting y elementos web con Bootstrap.",
13-
"download": "/",
14-
"visible": False
13+
"download": "https://github.com/RodolfoFerro/Flask101/raw/master/M%C3%B3dulo%202.zip",
14+
"visible": True
1515
},
1616
{
1717
"title": "Módulo 3",

static/assets/get-pip.py

+22,308
Large diffs are not rendered by default.

static/assets/python-3.7.4-amd64.exe

25.4 MB
Binary file not shown.
26.8 MB
Binary file not shown.

static/assets/python-3.7.4.exe

24.5 MB
Binary file not shown.

templates/material.html

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@
77
<h2>Material</h2>
88
<hr>
99
<p>A continuación podrás encontrar el material a utilizar durante del curso.</p>
10+
<h4>Software</h4>
11+
<a href="/static/assets/get-pip.py" target="_blank"><button type="button" class="btn btn-success">PIP</button></a>
12+
<a href="/static/assets/python-3.7.4-amd64.exe" target="_blank"><button type="button" class="btn btn-success">Python 3.7 p/Windows 64 bits</button></a>
13+
<a href="/static/assets/python-3.7.4.exe" target="_blank"><button type="button" class="btn btn-success">Python 3.7 p/Windows 32 bits</button></a>
14+
<a href="/static/assets/python-3.7.4-macosx10.9.pkg" target="_blank"><button type="button" class="btn btn-success">Python 3.7 p/Mac</button></a>
1015
</div>
1116
{% for item in material %}
1217
{% if item.visible %}

0 commit comments

Comments
 (0)