Skip to content

Commit

Permalink
Add spanish videos
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlytoc committed Sep 18, 2024
1 parent 72d33d3 commit 03854cc
Show file tree
Hide file tree
Showing 12 changed files with 50 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .learn/exercises/00-intro/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
intro: "https://www.youtube.com/watch?v=O5R0QVGWwEs"
---

# Welcome to Flask!

En este tutorial vamos a construir una REST API que expone 3 endpoints a Internet:
Expand Down
4 changes: 4 additions & 0 deletions .learn/exercises/01-hello-world/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=5ZyRzKESrEM"
---

# `01` Hello World with Flask

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).
Expand Down
4 changes: 4 additions & 0 deletions .learn/exercises/02-pipenv-installation/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=rL8seYExJ0E"
---

# `02` Initialize Pipenv

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.
Expand Down
4 changes: 4 additions & 0 deletions .learn/exercises/02.1-flask-installation/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=BnHD7yW9Gmw"
---

# `02.1` Install Flask

Ahora tenemos que instalar la dependencia de nuestro primer paquete para este proyecto: [Flask](https://flask.palletsprojects.com/).
Expand Down
4 changes: 4 additions & 0 deletions .learn/exercises/03-first-flask-app/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=zy2WAPNbdgk"
---

# `03` First Flask App

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).
Expand Down
4 changes: 4 additions & 0 deletions .learn/exercises/03.1-app-run/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=NDjImfVUTd8"
---

# `03.1` Running your new application

Después de crear nuestra app, debemos ejecutar e inicializar la aplicación.
Expand Down
4 changes: 4 additions & 0 deletions .learn/exercises/03.2-check-for-live/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=40eRmpTYVBo"
---

# `03.2` Check for Live URL

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í:
Expand Down
5 changes: 5 additions & 0 deletions .learn/exercises/03.3-your-first-route/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
tutorial: "https://www.youtube.com/watch?v=g13zIxQ9c6Y"
---


# `03.3` Creating Your First Endpoint (route)

Como Flask es un servidor, no tiene sentido no añadirle URLs para exponerlas/publicarlas en internet, por ejemplo:
Expand Down
5 changes: 5 additions & 0 deletions .learn/exercises/05-returning-json/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
tutorial: "https://www.youtube.com/watch?v=0uZ4fKWeT1o"
---


# `05` Returning JSON

Las REST APIs tienen que retornar datos en formato JSON, no en formato HTML.
Expand Down
4 changes: 4 additions & 0 deletions .learn/exercises/07-post_todo/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=umTVZKucaDw"
---

# `07` POST /todos (add a new task)

Ahora que ya está hecho el método GET `/todos`, debemos pensar en el resto de los endpoints de nuestra API:
Expand Down
4 changes: 4 additions & 0 deletions .learn/exercises/07.1-test-post-todo/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=tUXgOjOgpho"
---

# `07.1` Test your endpoint

Hasta ahora esto lo que tienes sobre el endpoint `POST /todos`, tomate el tiempo para analizar cada línea:
Expand Down
4 changes: 4 additions & 0 deletions .learn/exercises/07.2-finish-post-todo/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=rZbXlG7Vl-4"
---

# `07.2` Finish the POST /todos

Tu código debería verse así ahora:
Expand Down

0 comments on commit 03854cc

Please sign in to comment.