flake8 plugin that checks FastAPI code against opiniated style rules 🤓
Project description
flake8-fastapi
A flake8 plugin that helps you avoid simple FastAPI mistakes.
Installation
First, install the package:
pip install flake8-fastapi
Then, check if the plugin is installed using flake8
:
$ flake8 --version
3.9.2 (flake8-fastapi: 0.2.0, mccabe: 0.6.1, pycodestyle: 2.7.0, pyflakes: 2.3.1) CPython 3.8.11 on Linux
Rules
Route Decorator Error (CF001)
Developers that were used to flask can be persuaded or want to use the same pattern in FastAPI:
from fastapi import FastAPI
app = FastAPI()
@app.route("/", methods=["GET"])
def home():
return "Hello world!"
But on FastAPI, we have a simpler way to define this (and is the most known way to create endpoints):
from fastapi import FastAPI
app = FastAPI()
@app.get("/")
def home():
return "Hello world!"
Route Prefix Error (CF002)
On old FastAPI versions, we were able to add a prefix only on the include_router
method:
from fastapi import APIRouter, FastAPI
router = APIRouter()
@router.get("/")
def home():
...
app = FastAPI()
app.include_router(router, prefix="/prefix")
Now, it's possible to add in the Router
initialization:
from fastapi import APIRouter, FastAPI
router = APIRouter(prefix="/prefix")
@router.get("/")
def home():
...
app = FastAPI()
app.include_router(router)
Generic Exception Handler
FastAPI doesn't allow us to handle the base Exception
with exception_handler
decorator.
It's due to Starlette implementation, but well, FastAPI inherits the issue.
To be more precise, you'll be able to receive the response, but as soon as you check the server logs, you'll see an unexpected trace log.
To exemplify, you can't do:
from fastapi import FastAPI, Request
from starlette.responses import JSONResponse
app = FastAPI()
@app.exception_handler(Exception)
async def generic_exception_handler(request: Request, exc: Exception):
return JSONResponse(status_code=200, content="It doesn't work!")
@app.get("/")
async def home():
raise Exception()
But you can create a new exception, inheriting from Exception
, or use HTTPException
:
from fastapi import FastAPI, Request
from starlette.responses import JSONResponse
app = FastAPI()
class NewException(Exception):
...
@app.exception_handler(NewException)
async def new_exception_handler(request: Request, exc: NewException):
return JSONResponse(status_code=200, content="It works!")
@app.get("/")
async def home():
raise NewException()
CORSMiddleware Order (CF008)
There's a tricky issue about CORSMiddleware that people are usually unaware. Which is that this middleware should be the last one on the middleware stack. You can read more about it here.
Let's see an example of what doesn't work:
from fastapi import FastAPI
app = FastAPI()
app.add_middleware(
CORSMiddleware,
allow_origins=['*'],
allow_credentials=True,
allow_methods=['*'],
allow_headers=['*']
)
app.add_middleware(GZipMiddleware)
As you see, the last middleware added is not CORSMiddleware
, so it will not work as expected. On the other hand, if you change the order, it will:
from fastapi import FastAPI
app = FastAPI()
app.add_middleware(GZipMiddleware)
app.add_middleware(
CORSMiddleware,
allow_origins=['*'],
allow_credentials=True,
allow_methods=['*'],
allow_headers=['*']
)
License
This project is licensed under the terms of the MIT license.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file flake8-fastapi-0.4.0.tar.gz
.
File metadata
- Download URL: flake8-fastapi-0.4.0.tar.gz
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.7 CPython/3.8.11 Linux/5.8.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a0c52410dcf40e87e9d94954d8b013d098926bd06a3405bde84b86b476bca481 |
|
MD5 | dc4dddaac3650620f006dfe12f646498 |
|
BLAKE2b-256 | c7ff3e38531813cd455c2bc902cbcde34acaaef4e2171a9f3c7d5c97b7a65eec |
File details
Details for the file flake8_fastapi-0.4.0-py3-none-any.whl
.
File metadata
- Download URL: flake8_fastapi-0.4.0-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.7 CPython/3.8.11 Linux/5.8.0-1036-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b42d05c8b9a83eaa0807b32f1ad00379a881837afd31b599ef05794a0af445bd |
|
MD5 | a725e0ab8672162f3f03a05b61124842 |
|
BLAKE2b-256 | dce8079cd80bd9958f737320483866eb934f43f0062da90d02459079e371a158 |