Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add spanish videos #108

Merged
merged 1 commit into from
Jan 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading