Flask-Lan is a schema validator and swagger generator but more modernized
Project description
Flask-Lan
Flask-Lan
is a schema validator and swagger generator but more modernized.
!!! Warning
Currently, `flask-lan` is still under active development(before verion 1.0.0). Don't use it in production.
It's kind of like the famous library FastAPI
, bringing part of brilliant features of FastAPI
to your Flask application.
For example, it uses Pydantic for Request/Response params validation and auto-generates swagger
docs.
Feature
- Intuitive and easy to use.
- Use type hinting to validate request/response params.
- Auto-generate
swagger
docs.
Quick start
pip install flask-lan
A simple example:
from flask import Flask
from pydantic import BaseModel
from flask_lan import validator, docs
app = Flask(__name__)
@docs(tag="books", desc="Get books")
@app.get("/books/<id>/")
@validator
def home(id:int, q: str, star: float=10):
return {"id":id, "q": q, "star": star}
if __name__ == "__main__":
app.run(debug=True)
License
This project is licensed under the terms of the MIT license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
flask-lan-0.1.3.tar.gz
(3.5 kB
view hashes)
Built Distribution
Close
Hashes for flask_lan-0.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | fef25779d31b1bfdc34a3f8f33f1afa0da0c001d8f5782f13d72c096534d2911 |
|
MD5 | 8f5db5e9df2e21f326bc1944c03acab9 |
|
BLAKE2b-256 | 86ad2a1c6612d0221718a659f5cc7c65caa3bda7293db32b9c02425af01a68a9 |