Skip to content

Commit 70ab4cc

Browse files
authored
Merge pull request #108 from Charlytoc/master
Add spanish videos
2 parents 98b26a0 + 03854cc commit 70ab4cc

File tree

12 files changed

+50
-0
lines changed

12 files changed

+50
-0
lines changed

.learn/exercises/00-intro/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
intro: "https://www.youtube.com/watch?v=O5R0QVGWwEs"
3+
---
4+
15
# Welcome to Flask!
26

37
En este tutorial vamos a construir una REST API que expone 3 endpoints a Internet:

.learn/exercises/01-hello-world/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=5ZyRzKESrEM"
3+
---
4+
15
# `01` Hello World with Flask
26

37
En este tutorial construiremos una REST API utilizando el lenguaje de programación Python y la librería de [Flask](https://flask.palletsprojects.com/) (ideal para crear APIs).

.learn/exercises/02-pipenv-installation/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=rL8seYExJ0E"
3+
---
4+
15
# `02` Initialize Pipenv
26

37
Es posible tener varios proyectos con Python con diferentes versiones de Python, por esta razón debes especificar que versión de Python quieres usar en cada proyecto durante su configuración.

.learn/exercises/02.1-flask-installation/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=BnHD7yW9Gmw"
3+
---
4+
15
# `02.1` Install Flask
26

37
Ahora tenemos que instalar la dependencia de nuestro primer paquete para este proyecto: [Flask](https://flask.palletsprojects.com/).

.learn/exercises/03-first-flask-app/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=zy2WAPNbdgk"
3+
---
4+
15
# `03` First Flask App
26

37
Flask es una app que se comporta como un servidor web, es decir, que expone (publica) un grupo de URLs en internet (como una API o un sitio web).

.learn/exercises/03.1-app-run/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=NDjImfVUTd8"
3+
---
4+
15
# `03.1` Running your new application
26

37
Después de crear nuestra app, debemos ejecutar e inicializar la aplicación.

.learn/exercises/03.2-check-for-live/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=40eRmpTYVBo"
3+
---
4+
15
# `03.2` Check for Live URL
26

37
Puedes verificarlo haciendo clic en la URL que se ve en la línea de comandos una vez que Flask haya comenzado a ejecutarse, así:

.learn/exercises/03.3-your-first-route/README.es.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=g13zIxQ9c6Y"
3+
---
4+
5+
16
# `03.3` Creating Your First Endpoint (route)
27

38
Como Flask es un servidor, no tiene sentido no añadirle URLs para exponerlas/publicarlas en internet, por ejemplo:

.learn/exercises/05-returning-json/README.es.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=0uZ4fKWeT1o"
3+
---
4+
5+
16
# `05` Returning JSON
27

38
Las REST APIs tienen que retornar datos en formato JSON, no en formato HTML.

.learn/exercises/07-post_todo/README.es.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
---
2+
tutorial: "https://www.youtube.com/watch?v=umTVZKucaDw"
3+
---
4+
15
# `07` POST /todos (add a new task)
26

37
Ahora que ya está hecho el método GET `/todos`, debemos pensar en el resto de los endpoints de nuestra API:

0 commit comments

Comments
 (0)