Giter Club home page Giter Club logo

chuck-norris-facts-api's Introduction

chuck-norris-facts-api

A sample REST api using the FastApi framework, exposing some Chuck Norris facts.

This project is the first of three labs sessions, part of the 9 hours module Machine Learning: from idea to product of the Post Masters Big Data And Analytics from Telecom ParisTech.

Project description

Here, we propose to build a demo RESTful api in Python, using the framework FastApi. We will cover topics like:

  • Setting up the python development environment with virtualenv
  • Dockerizing the project from the beginning
  • Coding model classes with (included in FastApi)
  • Making a data access layer to a fake database
  • Implementing GET, POST, PATCH, DELETE endpoints with FastApi to interact with this database.

Instructions

Minimal working code

  • Get your developement environment ready by:

    • Creating a virtual environment:
    git clone [email protected]:ngallot/chuck-norris-facts-api.git
    cd chuck-norris-facts-api
    virtualenv -p path/to/your/python3.7 venv
    source venv/bin/acivate
    • Install the project dependencies:
    pip install -r requirements.txt

    Depending on your IDE, you can now set up a proper development environment.

  • Implement a first API endpoint, in a Docker container:

    • Switch to the branch feature/minimal_working_code
    git status # if this is not empty, then handle your local changes
    git checkout feature/minimal_working_code
    • Explore the code, essentially:

      • The structure of the Python code in the app folder
      • How we define the app object
      • The structure of the Dockerfile
    • Build the docker container:

    docker build -t chuck-norris-facts-api:latest --no-cache .
    • Start the development server:
    docker run -p 80:80 chuck-norris-facts-api:latest 
    # NB: you might have apps listening on port 80 already, you can kill them first using pkill.
    • Open a web browser to : localhost, and enjoy the Swagger doc!

Usage of docker-compose:

When developing a service that connects to other services, docker-compose tool is extermely convenient to replicate a production-like environment. You can define multiple services, based on different docker images.

  • Install: if you haven't installed docker-compose, follow the instructions here.
  • Switch to the branch feature/docker_compose_setup:
git status # if this is not empty, then handle your local changes
git checkout feature/docker_compose_setup

Looks at the file docker-compose.yaml, everything is defined here. To launch the development server, run the command:

docker-compose up --build

Auto reload of the development server:

As of now, if we make changes to our source code, we have to rebuild the docker container (the docker engine will automatically detect that the COPY step needs to be re-run) and restart it. It would be convenient that the server restarts automatically when the source code has changed instead. As a non compiled code, python allows that easily, and usages of Docker volumes come handy here, to map directly the contents of your disk into the container. To enable this:

  • Get the code for this feature:
git checkout feature/server_auto_reload
  • Stop any running container (useful command:)
docker kill $(docker ps -q)
  • Restart the service:
docker-compose up --build
  • Now make any change to your source code (like adding a new blank line). You should see your server restarting automatically.

App configuration and environment variables:

Often, there are common configurations / settings for our application that we do not want to hardcode. It is especially useful when we use different environments. For example, if we connect to a database to retrieve data, we might want to make queries against different database instances if we are running the development code or the production code. Imagine you are implementing a DELETE endpoint in your API, connecting to a backend database. It means you will have to run a DELETE sql query against this database, while you are developing your feature. You obviously don't want to run this against the production database. Hence, it is useful to have a local environment, where the database connection string points to a local database, and a production environment for the deployed api, where the database connection string points to the production database. This is where configurations are useful. To get the code implementing this feature:

  • Run:
git checkout feature/configuration
  • Check the file:
config/local.ini

For now, it contains only 1 section, named [APP], with basic info about our app. local.ini means that this is the configuration file that we will use for local development. Other configuration files can come later, if we decide to manage multiple environments.

  • Check the code source code changes in the below files to understand how we have implemented the python code to parse this configuration file. It is using the configparser library, available in the python standard library:
app/__init__.py # Notice that we are parsing the configuration file in __init__.py, to make it available anywhere in the code.
app/config.py   # Notice that in line 68, the code expects an environment variable named ENV.
app/main.py     # We are importing the parsed configuration, and we use it to create our FastApi object.
  • Create a the environment variable file: Because environment variables should not be commited in git, you have to manually create the environment variables directory and save the environment variable files inside. To share this file, you can have several options:
    • a separate GitHub repo
    • a password manager allowing to share files
    • a google drive like system
    • a dedicated credentials management system
    • etc...

To create this file:

mkdir env-vars
touch env-vars/local.env
echo ENV=local > env-vars/local.env

You can also note that the .gitignore file has been updated to ignore all *.env files in the project.

  • Check the changes in the container setup to see how this configuration has been integrated:
Dockerfile:         # We have added an extra step to copy the configuration files in the container
docker-compose.yaml # We have added en env_file argument to specify to the docker engine which environment variables need to be made available to the container.

Logging

Like said in the lecture, using print() statements everywhere in the code is quite dirty. There are much better things to do, starting by using the built-in library logging To check how this has been implemented:

  • Checkout the corresponding branch:
git checkout feature/logging

The below files have been modified:

- config/local.ini          # Here, we added a new configuration section called [LOGGING] defining the logging level and formatting options.
- app/config.py             # Python code to parse the newly added LOGGING section
- app/logging_utils.py      # Code to build a new logger with correct formatting based on config values
- app/main.py               # Instantiate a logger in the main file and add a logging message after server start.

Once you've pulled those changes, your server should automatically restart, and you should see a nice logging message in the console:

2019-11-13 21:18:22,940:app.main:INFO:Chuck Norris Facts API local server started successfully.

Database access

In this section, we implement a fake database. It's just an in-memory dictionary, and will be used like a real database for the purpose of this demo. In a real case scenario, the database would be a real one, hosted on its own server, with CRUD operations implemented (via SQL queries for instance). To get the code related to this implementation:

  • Run the command:
git checkout feature/database_access
  • Files changed:
app/db.py

In this file , we've added contents to the fake database, as well as methods to retrieve, insert, update and delete an objects.

Implementing the first api endpoints

Once we have implemented our database access layer, we can now expose REST endpoints to interact with this database. The first endpoints we will implement are the GET endpoints, to retrieve resources from the database, given certain criteria. To retrieve the code implementing this feature, run the command:

git checkout feature/get_endpoints

There are quite a lot of changes in the code for this branch, let's have a closer look at what's new:

  • Model classes: In the file app/models.py, we define the data model for our first endpoints. The classes are derived from Pydantic's BaseModel class. We define here a base class for our chuck norris facts, containing the fact itself as a string, and a derived class containing also the database id. The schema is very simple and straight forward. Note that when we define the class:
    class ChuckNorrisFactBase(BaseModel):
        fact: str = Schema(default=..., title='fact', description='The Chuck Norris Fact')
    It is not mandatory to defne a Schema, as Pydantic will already interpret the type hints (: str) and handle data validation automatically. However, it is very useful to define those Schema for the Swagger doc built by FastApi. You can check out your Swagger UI to see that the description is written in the generated doc.
  • Database access: Here, we've just defined methods to access to a list of facts, given their ids.
  • Main file: main.py Here we have implemented 2 new endpoints, to illustrate 2 usages of GET endpoints:
    • A first endpoint querying the database for a given id:
    @app.get('/fact/{fact_id}', description='Retrieve a Chuck Norris fact from its id',
             response_model=models.ChuckNorrisFactDb, tags=['Facts'])
    There is only 1 mandatory argument, that according to RESTful apis design best practices, we should put directly in the url. FastApi handles that easily, you just have to define it in the path of the operation and it will automatically be transmetted to the python function executing your operation. Note that when we do not find the fact in database, we want to raise a clear HTTP exception with correct status code. So that clients connecting to our api will be able to handle this status code according to their needs.
    • A second endpoint querying the database for a list of ids:
    @app.get('/facts/', description='Retrieve Chuck Norris facts from the database. Optional filter on the ids to '
                                    'retrieve.', response_model=List[models.ChuckNorrisFactDb], tags=['Facts'])
    Here the design is different. We can provide an argument for this operation, but it is not given directly in the url. It is defined in the python function that handles the request:
    def get_facts(ids: List[int] = Query(
        default=None, title='ids', description='The list of ids to retrieve')) -> List[models.ChuckNorrisFactDb]:
    The default=None means that the parameter ids, defined as a query parameter, means that this parameter is optional. When you check the Swagger UI doc, mandatory params have a red star next to them, optional params don't. NB: even if this parameter is defined in the python function handling the request, it's purely a FastApi trick. If you test the endpoint from the swagger doc directly, with ids 1 and 11, you will see a log message like this (see how the ids are appended at the end of the url):
    2019-11-14 07:27:25,311:uvicorn:INFO:('192.168.96.1', 54704) - "GET /facts/?ids=1&ids=11 HTTP/1.1" 200

Writing unit tests

Now that we have implemented a few endpoints, it is now time to write unit tests. The main purpose of unit testing is to make sure that we are not breaking the code when making changes. changes. It also makes sure that the code is doing what we expect. Reading unit tests usually gives a good understanding of how the app should behave. To do that, we will use the built-in unittests library, along with pytest to run the tests. To check the code and run the unit tests:

  • Get the test branch:
git checkout feature/unit_tests
  • CHeck the files changed:
app/config.py
test-requirements.txt
tests/
  • Create a dedicated virtual env for running tests:
virtualenv -p path/to/my/python3.7 venv_test
source venv_test/bin/activate 
  • Install the test requirements:
pip install -r test-requirements.txt

NB: it is interesting to note that you can reference other requirements.txt files within a requirements.txt. For instance, test-requirements.txt is referencing requirements.txt and just adding an extra dependency to pytest.

  • Run the tests:
export ENV=test && pytest tests/app_tests.py

This should result in 3 successful tests (eventually with warnings).

  • Zoom on the test code: Everything lies in the file tests/app_tests.py. Notice that we have modified the file app/config.py to allow an extra environment named 'test', with its own .ini file. Then, we use the test client provided by starlette framework (the web server framework FastApi is based on):
from starlette.testclient import TestClient
from app.main import app
from app.models import ChuckNorrisFactDb

client: TestClient = TestClient(app)

Here, we build a fake client that behaves exactly like the requests library. It manages directly requests against our endpoints, without needing to start a server and make http requests to it. It is then very convenient to test the whole application. Then in the tests, implemented in the class AppTests, we are testing 3 things:

  • The endpoint to retrieve a fact given its id returns a successful response when the id exists in DB
  • The same endpoint sends an 'not found' error when requesting an id which does not exist in DB
  • The endpoint to retrieve all facts returns the whole contents of the db.

Those tests can be enhanced, and more expected behaviours can be tested. Of course, a test like the test_get_all_facts should never be written against a real database, because it will return all the contents... It's just for demo here :-)

Next steps

Time to write your own code now! For next week, I'm asking you to implement new endpoints to our API.

  • 1 endpoint POST, which takes a json containing a list of facts (strings) as input, and returns a list of database facts (id and fact) as output. Check out the doc to help you, even though all BaseModel classes have already been written.

  • 1 endpoint PATCH, that will take a json containing database facts (id, fact), to be updated. It should return the updated objects. NB: the endpoint should output a clear error message and status code if an id not present in the database is given in the request.

  • 1 endpoint DELETE: to delete a list of facts given their ids.

  • Unit tests to go with those new endpoints!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.