This is an interactive tutorial that will teach you how to create an API using the Flask framework on Python and Pipenv.
There are 2 ways to start:
a) Open this link in your browser with Codespaces (recommended) or Gitpod: https://github.com/codespaces/new/?repo=4GeeksAcademy/python-hello
b) You can clone this repository on your local computer:
$ git clone https://github.com/4GeeksAcademy/python-hello-
If working locally, you should have python installed.
-
You should open the terminal on the path of this template and run
$ python3 app.py, if everything works correctly, it should showHello Worldon the terminal. -
You can test your code by typing:
$ python3 test.py.
💡 Important: Remember to create a new repository, update the remote (git remote set-url origin <your new url>), and upload the code to your new repository using add, commit and push.
In this tutorial, we are going to be building a REST API that exposes 3 endpoints to the internet:
GET /todos
POST /todos
DELETE /todos/<int:position>Will return the list of all todos like this:
[
{
"done": true,
"label": "Sample Todo 1"
},
{
"done": true,
"label": "Sample Todo 2"
}
]This will add a new todo to the list with the following request body:
{
"done": true,
"label": "Sample Todo 1"
}And return the updated list of todos.
This will remove one todo, based on a given position in the todos list, at the end of the URL and return the updated list of todos.
This and many other projects are built by students as part of the 4Geeks Academy Coding Bootcamp by Alejandro Sanchez and many other contributors. Find out more about our Full Stack Developer Course, and Data Science Bootcamp.