Git Product home page Git Product logo

fastapi_sample's Introduction

Library API - a dockerized FastAPI sample project ๐Ÿ“–

The following is a test project that uses FastAPI and SQLAlchemy to develop a backend for a fictional library website.

It is used as a sample repository for this Docker tutorial and is also deployed on heroku at: https://book-api-fastapi-project.herokuapp.com/.

Usage

Start the project containers with the make start command. You can then create a user...

curl --location --request POST '0.0.0.0:8000/users/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "user123",
    "password": "password"
}'

...and login to receive an auth token:

curl --location --request POST '0.0.0.0:8000/login/' \
--header 'Content-Type: application/json' \
--data-raw '{
    "username": "user123",
    "password": "password"
}'

Response format:

{
    "access_token": your token,
    "token_type": "bearer"
}

You can then use the other endpoints passing your access token as a request header:

curl --location --request POST '0.0.0.0:8000/books/' \
--header 'Authorization: Bearer {your token}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "title": "Harry Potter and the Philosopher'\''s Stone",
    "author": "J. K. Rowling"
}'

Full API spec can be found at: https://book-api-fastapi-project.herokuapp.com/docs/

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.