You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Por <ahref="https://twitter.com/alesanchezr">@alesanchezr</a> y <ahref="https://github.com/4GeeksAcademy/python-functions-programming-exercises/graphs/contributors">otros contribuidores</a> at <ahref="http://4geeksacademy.co/">4Geeks Academy</a>
4
+
Por <ahref="https://twitter.com/alesanchezr">@alesanchezr</a> y <ahref="https://github.com/4GeeksAcademy/python-functions-programming-exercises/graphs/contributors">otros contribuidores</a> de <ahref="http://4geeksacademy.co/">4Geeks Academy</a>
5
5
<!-- endhide -->
6
6
7
-
En esta serie, aprenderás HTTP y cómo usar el package requests de Python para crear solicitudes HTTP GET, POST, PUT, DELETE.
7
+
En esta serie, aprenderás HTTP (*Hypertext Transfer Protocol*) y cómo usar el **package requests** de Python para crear solicitudes HTTP GET, POST, PUT, DELETE.
8
8
9
9
Todo el tutorial es 👆 interactivo, ✅ calificado automáticamente y con 📹 videos tutoriales.
10
10
11
-
Estos Ejercicios son colaborativos, ¡te necesitamos! Si encuentras algún error o falta de ortografía, por favor contribuye y repórtalo.
11
+
Estos ejercicios son colaborativos, ¡te necesitamos! Si encuentras algún error o falta de ortografía, por favor contribuye y repórtalo.
12
12
13
13
<!-- hide -->
14
14
15
15
## Instalación en un clic (recomendado)
16
16
17
17
Puedes empezar estos ejercicios en pocos segundos haciendo clic en: [Abrir en Codespaces](https://codespaces.new/?repo=4GeeksAcademy/python-http-requests-api-tutorial-exercises) (recomendado) o [Abrir en Gitpod](https://gitpod.io#https://github.com/4GeeksAcademy/python-http-requests-api-tutorial-exercises).
18
18
19
-
> Una vez ya tengas abirto VSCode los ejercicios de LearnPack deberían empezar automáticamente, si esto no sucede puedes intentar empezar los ejercicios escribiendo este comando en tu terminal: `$ learnpack start`
19
+
> Una vez ya tengas abierto VSCode los ejercicios de LearnPack deberían empezar automáticamente, si esto no sucede puedes intentar empezar los ejercicios escribiendo este comando en tu terminal: `$ learnpack start`
20
20
21
21
### Instalación local:
22
22
23
23
Clona el repositorio en tu ambiente local y sigue los siguientes pasos:
24
24
25
-
1.Instala learnpack, el administrador de paquetes para tutoriales de aprendizaje y el complemento del compilador html para learnpack, asegúrate de tener también node.js 14+:
25
+
1.Asegúrate de instalar [LearnPack](https://www.learnpack.co/), node.js versión 14+ y Python versión 3+. Este es el comando para instalar LearnPack:
26
26
27
27
```bash
28
28
$ npm i learnpack -g
29
29
$ learnpack plugins:install learnpack-python
30
30
```
31
31
32
-
2.Descarga este ejercicio en particular usando learnpack y `cd` para entrar en la carpeta:
32
+
2.Comienza con los ejercicios ejecutando el siguiente comando al mismo nivel que tu archivo `learn.json`:
Cada ejercicio es un pequeño proyecto en Python que contiene los siguientes archivos:
52
43
53
-
1.**app.py:** representa el archivo de entrada de python que será ejecutado en el computador.
44
+
1.**app.py:** representa el archivo de entrada de Python que será ejecutado en el computador.
54
45
2.**README.md:** contiene las instrucciones del ejercicio.
55
46
3.**test.py:** no tienes que abrir este archivo. Contiene los scripts de pruebas del ejercicio.
56
47
57
-
> Nota: Estos ejercicios tienen calificación automática pero es un tanto rígida, te recomiendo ignorar los tests, considéralos como una recomendación o podrías frustrarte.
48
+
> Nota: Estos ejercicios tienen calificación automática. Los tests son muy rígidos y estrictos, mi recomendación es que no prestes demasiada atención a los tests y los uses solo como una sugerencia o podrías frustrarte.
58
49
59
50
## Colaboradores
60
51
61
52
Gracias a estas personas maravillosas ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
Este proyecto sigue la especificación [all-contributors](https://github.com/kentcdodds/all-contributors). ¡Todas las contribuciones son bienvenidas!
68
59
69
-
Este y otros ejercicios son usados para [aprender a programar](https://4geeksacademy.com/es/aprender-a-programar/aprender-a-programar-desde-cero) por parte de los alumnos de 4Geeks Academy [Coding Bootcamp](https://4geeksacademy.com/us/coding-bootcamp) realizado por [Alejandro Sánchez](https://twitter.com/alesanchezr) y muchos otros contribuyentes. Conoce más sobre nuestros [Curso de Programación](https://4geeksacademy.com/es/curso-de-programacion-desde-cero?lang=es) para convertirte en [Full Stack Developer](https://4geeksacademy.com/es/coding-bootcamps/desarrollador-full-stack/?lang=es), o nuestro [Data Science Bootcamp](https://4geeksacademy.com/es/coding-bootcamps/curso-datascience-machine-learning).
60
+
Este y otros ejercicios son usados para [aprender a programar](https://4geeksacademy.com/es/aprender-a-programar/aprender-a-programar-desde-cero) por parte de los alumnos de 4Geeks Academy [Coding Bootcamp](https://4geeksacademy.com/es/inicio) realizado por [Alejandro Sánchez](https://twitter.com/alesanchezr) y muchos otros contribuyentes. Conoce más sobre nuestros [Cursos de Programación](https://4geeksacademy.com/es/curso-de-programacion-desde-cero?lang=es) para convertirte en [Full Stack Developer](https://4geeksacademy.com/es/coding-bootcamps/desarrollador-full-stack/?lang=es), o nuestro [Data Science Bootcamp](https://4geeksacademy.com/es/coding-bootcamps/curso-datascience-machine-learning).
Copy file name to clipboardExpand all lines: README.md
+15-22
Original file line number
Diff line number
Diff line change
@@ -7,41 +7,34 @@ By <a href="https://twitter.com/alesanchezr">@alesanchezr</a> and <a href="https
7
7
<!-- endhide -->
8
8
9
9
10
-
In this series you will Learn HTTP and how to use the Python Requests package to create HTTP Requests GET, POST, PUT, DELETE. The entire tutorial is 👆 interactive, ✅ auto-graded and with. 📹 video tutorials.
10
+
In this series you will Learn HTTP (*Hypertext Transfer Protocol*) and how to use the Python **requests package** to create HTTP requests GET, POST, PUT, DELETE.
11
11
12
-
These exercises were built in collaboration, we need you! If you find any bugs or misspells plese contribute and report them.
12
+
The entire tutorial is 👆 interactive, ✅ auto-graded and with 📹 video tutorials.
13
+
14
+
These exercises were built in collaboration, we need you! If you find any bugs or misspells, please contribute and report them.
13
15
14
16
<!-- hide -->
15
17
## One click installation (recommended):
16
18
17
19
You can open these exercises in just a few seconds by clicking: [Open in Codespaces](https://codespaces.new/?repo=4GeeksAcademy/python-http-requests-api-tutorial-exercises) (recommended) or [Open in Gitpod](https://gitpod.io#https://github.com/4GeeksAcademy/python-http-requests-api-tutorial-exercises).
18
20
19
-
> Once you have VSCode open the LearnPack exercises should start automatically. If exercises don't run automatically you can try typing on your terminal: `$ learnpack start`
21
+
> Once you have VSCode open, the LearnPack exercises should start automatically. If the exercises don't run automatically, you can try typing on your terminal: `$ learnpack start`
20
22
21
23
## Local Installation
22
24
23
25
Clone the repository in your local environment and follow the steps below:
24
26
25
-
1.Install learnpack, the package manager for learning tutorials and the html compiler plugin for learnpack, make sure you also have node.js 14+:
27
+
1.Make sure you install [LearnPack](https://www.learnpack.co/), node.js version 14+, and Python version 3+. This is the command to install LearnPack:
26
28
27
-
```
29
+
```bash
28
30
$ npm i learnpack -g
29
31
$ learnpack plugins:install learnpack-python
30
32
```
31
33
32
-
2. Download this particular exercise using learnpack and `cd` into the folder:
@@ -54,16 +47,16 @@ Each exercise is a small react application containing the following files:
54
47
2.**README.md:** contains exercise instructions.
55
48
3.**test.py:** you don't have to open this file, it contains the testing script for the exercise.
56
49
57
-
> Note: The exercises have automatic grading but its very rigid and string, my recomendation is to ignore the tests and use them only as a recomendation or you can get frustrated.
50
+
> Note: The exercises have automatic grading, but it's very rigid and strict, my recommendation is to not take the tests too serious and use them only as a suggestion, or you may get frustrated.
58
51
59
52
## Contributors
60
53
61
54
Thanks goes to these wonderful people ([emoji key](https://github.com/kentcdodds/all-contributors#emoji-key)):
This project follows the[all-contributors](https://github.com/kentcdodds/all-contributors) specification.Contributions of any kind are welcome!
60
+
This project follows the[all-contributors](https://github.com/kentcdodds/all-contributors) specification.Contributions of any kind are welcome!
68
61
69
-
This and many other exercises are built by students as part of the 4Geeks Academy [Coding Bootcamp](https://4geeksacademy.com/us/coding-bootcamp) by [Alejandro Sánchez](https://twitter.com/alesanchezr) and many other contributors. Find out more about our [Full Stack Developer Course](https://4geeksacademy.com/us/coding-bootcamps/part-time-full-stack-developer), and [Data Science Bootcamp](https://4geeksacademy.com/us/coding-bootcamps/datascience-machine-learning).
62
+
This and many other exercises are built by students as part of the 4Geeks Academy [Coding Bootcamp](https://4geeksacademy.com/us/coding-bootcamp) by [Alejandro Sánchez](https://twitter.com/alesanchezr) and many other contributors. Find out more about our [Full Stack Developer Course](https://4geeksacademy.com/us/coding-bootcamps/part-time-full-stack-developer), and [Data Science Bootcamp](https://4geeksacademy.com/us/coding-bootcamps/datascience-machine-learning).
0 commit comments