This exercise is intended for you to get familiar with fundamental backend/server side programming in an interactive way, as well as for you to get comfortable developing in a modern Python/Flask environment.
Reading the following will help you get a sense of the big picture when it comes to developing APIs/writing server side code, and how it fits in the context of a larger web application:
- How the Web Works - Read all 3 parts, especially part 3!
- Basics of HTTP
This project will be broken down into multiple parts. After you finish this project, you must submit it by following the instructions below.
This exercise is due before this Monday, September 17th at 11:59PM. If you have spent over 10 hours total including your work with react-exercise, submit what you have!
For any questions, feel free to email [email protected].
- python version 3.x
- pip
- pipenv
- Postman
Installation instructions for Mac and Windows.
Another great resource for anything on python, including installation is The Hitchhiker's guide to python.
Check if you have the correct versions by running the following commands in your terminal:
python3 -V
pip3 -V
pipenv --version
First, fork this repository. The fork button on your top right. What this does is copies this repository over to your account. Now you should have a repository with the name <yourusername>/flask-exercise
.
It should look like this (my username is tko22):
Then, clone this repository (click the green button saying "Clone or Download", choose http, and copy and paste it the location <url>
) and go into it:
$ git clone <url>
$ cd flask-exercise
Then, setup your virtual environment and install the python dependencies required to run this app. We use pipenv, which automatically sets everything up, given a Pipfile and Pipfile.lock. Pipfile uses virtualenv, which is a virtual Python environment isolated from other Python projects, incapable of interfering with or being affected by other Python programs on the same machine. You are thus capable of running different versions of the same package or even different python versions.
pipenv install --skip-lock
You must be in this virtual environment to start this server. To do that:
pipenv shell
Then, to start the server run:
(backend-exercise-o4dc6oDL)$ python app.py
Note: This will remain a running process in your terminal, so you will need to open a new tab or window to execute other commands.
To stop the server, press Control-C
.
To exit your virtual environment, which is named backend-exercise-[something here]
, run:
(backend-exercise-o4dc6oDL)$ deactivate
You can also add pipenv run
before any command instead of having to run pipenv shell
. eg pipenv run python app.py
Before you make any changes to the code, make sure to create a new branch. Typically branches are named based on the feature or bugfix being addressed, but for this project, name your branch with your own name so your reviewer can easily follow:
git checkout -b <YOUR_NAME>
Branch names should be all lowercase and can't contain spaces. Instead of spaces, use hyphens. For example:
git checkout -b varun-munjeti
Starting the server will make it a continuously running process on localhost:5000
. In order to make requests to your server, use Postman.
First, make a GET
request to the /
endpoint. Since the server is running on localhost:5000
, the full endpoint url is localhost:5000/
.
Try calling the /mirror
endpoint. First, look at the code for the endpoint to see how you can specify url parameters. Then make a request on Postman to localhost:5000/mirror/<name>
:
These exercises will walk you through creating a RESTful API using Flask! We don't want you to go through all the hassle of setting up a database instance, so we have created dummy data and a mock database interface to interact with it. For the sake of ease, the entire app logic minus the mockdb logic will by implemented in app.py
. For larger projects, the API endpoints will usually be separated out into different files called views
.
Before you start, take a good look at the create_response
function and how it works. Make sure you follow the guidelines for how to use this function, otherwise your API will not follow the proper conventions!
Also take a look into the mock database. The initial dummy data is defined in mockdb/dummy_data.py
. This is what will "exist" in the "database" when you start the server.
The functions defined in mockdb/mockdb_interface.py
are how you can query the mockdb. In app.py
, where you will be writing your API, this has been imported with the name db
. Therefore when you write the code for your endpoints, you can call the db interface functions like db.get('users')
.
When you modify your code, the server will automatically update, unless your code doesn't compile, in which case the server will stop running and you have to manually restart it after fixing your code.
Define the endpoint:
GET /users
This should return a properly formatted JSON response that contains a list of all the user
s in the mockdb. If you call this endpoint immediately after starting the server, you should get this response in Postman:
{
"code": 200,
"message": "",
"result": {
"users": [
{
"age": 19,
"id": 1,
"name": "Aria",
"team": "LWB"
},
{
"age": 20,
"id": 2,
"name": "Tim",
"team": "LWB"
},
{
"age": 23,
"id": 3,
"name": "Varun",
"team": "NNB"
},
{
"age": 24,
"id": 4,
"name": "Alex",
"team": "C2TC"
}
]
},
"success": true
}
Define the endpoint:
GET /users/<id>
This should retrieve a single user that has the id
provided from the request.
If there doesn't exist a user with the provided id
, return a 404
with a descriptive message
.
Extend the first /users
enpoint by adding the ability to query the users based on the team they are on. You should not use a url parameter like you did in Part 2. Instead, use a query string.
If team
is provided as a query string parameter, only return the users that are in that team. If there are no users on the provided team
, return an empty list.
For this exercise, you can ignore any query string parameters other than team
.
In Postman, you can supply query string parameters writing the query string into your request url or by hitting the Params
button next to Send
. Doing so will automatically fill in the request url.
The following should happen
GET /users?team=LWB
{
"code": 200,
"message": "",
"result": {
"users": [{
"age": 19,
"id": 1,
"name": "Aria",
"team": "LWB"
}, {
"age": 20,
"id": 2,
"name": "Tim",
"team": "LWB"
}]
},
"success": true
}
Define the endpoint:
POST /users
This endpoint should create a new user. Each request should also send a name
, age
, and team
parameter in the request's body
. The id
property will be created automatically in the mockdb.
A successful request should return a status code of 201
and return the newly created user.
If any of the three required parameters aren't provided, DO NOT create a new user in the db and return a 422
with a useful message
. In general, your messages should provide the user/developer useful feedback on what they did wrong and how they can fix it.
This is how you can send body
parameters from Postman. Make sure you don't mistake this for query parameters!
Define the endpoint:
PUT /users/<id>
Here we need to provide a user's id
since we need to specify which user to update. The body
for this request should contain the same attributes as the POST
request from Part 4.
However, the difference with this PUT
request is that only values with the provided keys (name
, age
, team
) will be updated, and any parameters not provided will not change the corresponding attribute in the user being updated.
You do not need to account for body
parameters provided that aren't name
, age
, or team
.
If the user with the provided id
cannot be found, return a 404
and a useful message
.
Define the endpoint:
DELETE /users/<id>
This will delete the user with the associated id
. Return a useful message
, although nothing needs to be specified in the response's result
.
If the user with the provided id
cannot be found, return a 404
and a useful message
.
Let's write unit tests! Unit tests are very important to software development. It enables to automatically check whether our functionality works or not since manually testing everything is very slow and error prone. Test Driven Development is a software development process in which we define a specification, write tests to that spec, then implement the functionality, and use the tests to validate whether it works. We've done a bit of that for you as the tests for Part 1-3 are written. To test them:
pipenv install --dev
pipenv run pytest
If your changes worked, you should see a green line saying 5 passed
. If they don't, follow the stack traces and fix your implementation. Once they work, let's write tests for the Parts 3-6.
We use pytest, a useful python test framework that automatically finds and runs python methods that start with test
, such as test_get_index
. In our case, we have a test file named test_app.py
, which holds all the tests for Parts 1-3.
Each method also accepts a client
object, which is automatically injected by pytest. client
is a test fixture, which is something that you may use in multiple tests, giving you a fixed baseline for your tests. When initializing, pytest looks into conftest.py
and collects all fixtures. In our case, we have a client
fixture, which gives a flask test client, which we can use to easily test our API. Look into how you can use the Flask test client to make other types of requests and how you can use the request payload.
When you're done with all the steps, push your changes to your github repo!
Let's run black, a python formatter, before you submit. This removes all arguments on how we want to style your python code and gives reviewers a standardized style to review from. You must have it installed with pipenv install --dev
pipenv run black .
Before you can submit a PR, you'll have to push your branch to a remote branch (the one that's on GitHub, not local).
Check to see that you're on your branch:
git branch
If you want to make sure all of your commits are in:
git log
Press Q
to quit the git log
screen.
Push your commits to your remote branch:
git push
The first time you do this, you might get an error since your remote branch doesn't exist yet. Usually it will tell you the correct command to use:
git push --set-upstream origin <YOUR_BRANCH_NAME>
Note: this only needs to be done the first time you push a new branch. You can use just git push
afterwards.
Once this is done, please send an email to [email protected] with the link to your forked repository and your branch name. We will need these two things to view your submission.