Marshmallow API Utilities
Project description
Marshmallow API Utilities
A collection of tools for REST API development with Marshmallow.
Package | |
Meta |
Basic usage
from datetime import date
from flask import Flask
from flask_smorest import Api
from marshmallow_dataclass import dataclass as ma_dataclass
from sqlalchemy import Column, Select, select
from sqlalchemy.orm import DeclarativeBase
from marshmallow_api_utils.fields import dump_only_field, optional_field, required_field
from marshmallow_api_utils.ma_dataclass import MaDataclass
from marshmallow_api_utils.models.sortable import Sortable
class Base(DeclarativeBase):
pass
class Pet(Base):
__tablename__ = 'pets'
id = Column(st.Integer, primary_key=True)
name = Column(st.String)
birthdate = Column(st.Date)
@ma_dataclass
class PetDTO(MaDataclass):
id: int = dump_only_field()
name: str = required_field(help='This will show up in the OpenAPI docs.')
birthdate: dt.date = optional_field()
age: int = dump_only_field(sortable=False)
@ma.pre_dump
def add_age(self, data, many, **kwargs):
data['age'] = int((date.today() - data.birthdate) / 365.25)
return data
@ma_dataclass
class PetQueryParams(Sortable, MaDataclass):
class Meta:
dto_schema = PetDTO.Schema()
flask = Flask(__name__)
app.config["API_TITLE"] = "My API"
app.config["API_VERSION"] = "v1"
app.config["OPENAPI_VERSION"] = "3.0.2"
api = Api(app)
blp = Blueprint("pets", "pets", url_prefix="/pets", description="Operations on pets")
@blp.route("/")
class Pets(MethodView):
@blp.arguments(PetQueryParams.Schema, location="query")
@blp.response(200, Pet.Schema(many=True))
def get(self, query_params: PetQueryParams):
"""List pets"""
stmt = select(Pet)
stmt = query_params.apply_sort(stmt)
return stmt.all()
License
Marshmallow API Utilities is distributed 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
Built Distribution
Close
Hashes for marshmallow_api_utils-0.2.4.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | fba2144c3f6e244608dc272c106b08ee045e85ea18fadb3d88ca7a2d4ef37736 |
|
MD5 | 73216ef6d3224d101f4d98fe5d3987f7 |
|
BLAKE2b-256 | 6aa0a3334ffac0025cedc637c5ec039b6f04763015515155e34a4f2dca7f47f3 |
Close
Hashes for marshmallow_api_utils-0.2.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 391bd1c85ef0a7f3498ead7fd5a231eeceddfae1ccd4725261bd6b7326881db8 |
|
MD5 | 2b3e6c2b1ec3e50fcc454548648140a5 |
|
BLAKE2b-256 | 0fd02dedeb1a04adad8cd8b6c036fdd9acc903ddbeeb2d6aa772104d5672c94b |