Skip to content

Commit

Permalink
Add spanish videos and update pacakges
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlytoc committed Sep 26, 2024
1 parent fbb1723 commit e9b6501
Show file tree
Hide file tree
Showing 16 changed files with 59 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"extensions": ["learn-pack.learnpack-vscode"]
}
},
"onCreateCommand": "pip3 install pytest==6.2.5 pytest-testdox mock toml requests && npm i @learnpack/learnpack@2.1.56 -g && learnpack plugins:install @learnpack/[email protected]"
"onCreateCommand": "pip3 install pytest==6.2.5 pytest-testdox mock toml requests && npm i @learnpack/learnpack@4.0.8 -g && learnpack plugins:install @learnpack/[email protected]"

// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},
Expand Down
4 changes: 4 additions & 0 deletions exercises/00-welcome/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
intro: "https://www.youtube.com/watch?v=6H4Gn6-lpLI"
---

# `00` Welcome to Python API Requests!

Python Requests es una herramienta potente y ampliamente utilizada para interactuar con APIs y realizar solicitudes HTTP en aplicaciones Python. Simplifica el proceso de enviar solicitudes HTTP y manejar respuestas, convirtiéndose en una herramienta favorita entre los desarrolladores para integrarse con servicios web y obtener datos de APIs.
Expand Down
4 changes: 4 additions & 0 deletions exercises/01-creating-a-request/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=eZ_5p3vyYFY"
---

# `01` Creating a Request

Python tiene integrado un [paquete de solicitudes (*requests package*)](https://requests.readthedocs.io/en/master/) eso permite a los desarrolladores crear solicitudes HTTP con bastante facilidad.
Expand Down
4 changes: 4 additions & 0 deletions exercises/02-random-status/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=La95dYo4xOs"
---

# `02` Handle Response Status

La siguiente solicitud GET siempre devuelve un código de status diferente, nunca se sabe qué respuesta está recibiendo del servidor.
Expand Down
4 changes: 4 additions & 0 deletions exercises/03-response-body/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=kQGUUW4ycDQ"
---

# `03` Response Body

Haga clic en este enlace para ver la respuesta que esta solicitud GET está dando en el body:
Expand Down
4 changes: 4 additions & 0 deletions exercises/04-response-body-json/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=si3N6peHdjM"
---

# `04` Response JSON

Pero tener una respuesta basada en texto no es muy útil, es por eso que las API normalmente responden en formato CSV, JSON, YAML o XML.
Expand Down
5 changes: 5 additions & 0 deletions exercises/05-project-name/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
---
tutorial: "https://www.youtube.com/watch?v=sMA0NjIiVNs"
---


# `05` Project name

El siguiente endpoint es ideal para recuperar proyectos de estudiantes:
Expand Down
4 changes: 4 additions & 0 deletions exercises/06-project-list/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=S2qXbTLRyGA"
---

# `06` Project List

El siguiente endpoint devuelve una respuesta en formato JSON con varios proyectos en una lista:
Expand Down
4 changes: 4 additions & 0 deletions exercises/07-project-list-image/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=U7vhqOETpqk"
---

# `07` Project List Image

## 📝 Instrucciones:
Expand Down
4 changes: 4 additions & 0 deletions exercises/08-blog-post-author/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=NZMkq0cIIlU"
---

# `08` Post blog author

Tómate un momento para comprender el response body al hacer una solicitud GET a este endpoint:
Expand Down
4 changes: 4 additions & 0 deletions exercises/09-list-of-blog-titles/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=SWgyGk3d3yk"
---

# `09` List of blog titles

## 📝 Instrucciones:
Expand Down
4 changes: 4 additions & 0 deletions exercises/10-get-post-tags/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=l9e-lSsYNOI"
---

# `10` Get post tags

## 📝 Instrucciones:
Expand Down
4 changes: 4 additions & 0 deletions exercises/11-get-attachment-by-id/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=TR0PYXJUEPY"
---

# `11` Get attachment by id

## 📝 Instrucciones:
Expand Down
4 changes: 4 additions & 0 deletions exercises/12-post-request/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=1WsxHQ-_E1w"
---

# `12` POST request

Las solicitudes POST están destinadas a la creación, por ejemplo, si tu negocio es un e-commerce de camisetas, es probable que desees tener una forma de agregar nuevos clientes.
Expand Down
4 changes: 4 additions & 0 deletions exercises/13-post-request-body/README.es.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
---
tutorial: "https://www.youtube.com/watch?v=x5k6pOmxmWc"
---

# `13` POST request body

## 📝 Instrucciones:
Expand Down
2 changes: 1 addition & 1 deletion learn.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"autoPlay": true,
"bugsLink": "https://github.com/learnpack/learnpack/issues/new",
"editor": {
"version": "3.1.40"
"version": "4.0.10"
},
"telemetry": {
"batch": "https://breathecode.herokuapp.com/v1/assignment/me/telemetry"
Expand Down

0 comments on commit e9b6501

Please sign in to comment.