Validate request and response data with Marshmallow and optionally generate an OpenAPI spec.
Project description
pyramid-marshmallow
pyramid-marshmallow is a simple Pyramid plugin that allows you to validate and marshal a JSON HTTP request or response using Marshmallow schemas. You can then leverage this to automatically generate an OpenAPI specification for your API.
Version 0.5 and greater requires Marshmallow 3.x. For Marshmallow 2.x, use version 0.4.
Basic usage
Install the project with pip install pyramid-marshmallow.
Activate it by adding config.include('pyramid_marshmallow') into your config
function or adding pyramid.includes = pyramid_marshmallow into your ini file.
To validate incoming data, set validate to a Marshmallow schema in your
view_config. The request body is parsed as JSON then passed through the
schema's load function. You can access the processed data with
request.data.
from marshmallow import Schema, String
class HelloSchema(Schema):
name = String()
@view_config(
context=Root,
name='hello',
request_method='post',
validate=HelloSchema(),
)
def hello(context, request):
return Response(body='Hello, {}'.format(
request.data['name']
))
For GET requests, the URL parameters are passed into the schema. Value lists are not currently supported.
Setting marshal in your view_config will run the view output through
marshmallow (i.e. Schema.dump) before going to the renderer. You probably
will want to set the renderer to json.
@view_config(
context=Root,
name='hello',
request_method='get',
marshal=HelloSchema(),
renderer='json',
)
def hello(context, request):
name = fetch_name()
return {
'name': name,
}
validate and marshal operate independently, so can be used separately or
together.
As a convenience, you can pass in a dictionary to validate or marshal and
pyramid-marshmallow will turn it into a schema for you.
@view_config(
context=Root,
name='hello',
request_method='post',
validate={
'name': String(),
},
)
You can also get a schema made from a dictionary by using the
pyramid_marshmallow.make_schema function. This can be useful for Nested
fields.
Error handling
pyramid-marshmallow passes through exceptions from marshmallow. So errors
during validation will raise a marshmallow.exceptions.ValidationError
exception.
(Documentation)
You may want to attach a view to this exception to expose the error messages to the user.
@view_config(
context=ValidationError,
renderer='json',
)
def validation_error(context, request):
request.response.status = 401 # HTTP Bad Request
return {
'errors': context.normalized_messages(),
}
OpenAPI
By adding validation and marshalling to your views, we have the opportunity to utilize that data to generate documentation. pyramid-marshmallow includes an utility that uses apispec to generate an OpenAPI specification for your application.
First, you'll need to install some extra dependencies.
pip install pyramid-marshmallow[openapi]
Now you can generate your spec by simply passing in an ini file. pyramid-marshmallow needs to run your application in order to inspect it, so the ini file should contain all the necessary configuration to do so.
generate-spec development.ini
This will output the spec to stdout as JSON. You can set the --output flag
to output the results to a file.
You can set --format yaml to output the spec as YAML instead or
--format html to output the spec as an HTML file, powered by
ReDoc.
By default, your spec will be titled "Untitled" and versioned "0.1.0". You can
change this by setting openapi.title and openapi.version in your ini file.
Documenting Your API
Documentation will be autogenerated from the structure of your Pyramid app and
your validate and marshal declarations. You can document schema fields by
setting the description property.
class Hello(Schema):
name = String(required=True, description='Your first and last name.')
The first line of a view callable's docstring will be used as the summary
property. The following lines will be used for the description.
Documentation for the endpoint will be pulled from the view callable's
docstring. The first line becomes the summary and the remaining lines become
the description.
You can also a line with three hyphens followed by a YAML object. This will be merged with the auto-generated operation object and can be used to manually augment the spec.
@view_config(
context=WidgetResource,
method='post',
validate=WidgetSchema(),
)
def create_widget(context, request):
"""
Create new widget
Creates a new widget with an attached plumbus.
---
responses:
201:
description: Indicates the widget was successfully created.
"""
widget.make()
return HTTPCreated()
You can also pass a dictionary as the api_spec property to
Configurator.add_view or @view_config, which will be merged with the spec
in the same way. This can be advantageous if a single function services
multiple views.
@view_config(
context=WidgetResource,
method='post',
validate=WidgetSchema(),
api_spec={
'summary': 'Create widget',
},
)
@view_config(
context=WidgetResource,
method='put',
validate=WidgetSchema(),
api_spec={
'summary': 'Update widget',
},
)
def create_widget(context, request):
"""
Create/update new widget
---
responses:
201:
description: Indicates the widget was successfully created.
"""
widget.create_or_update()
return HTTPCreated()
URL Traversal
If you're using Pyramid's URL traversal, the generated spec may be mostly
empty. This is because pyramid-marshmallow has no way of knowing where in the
resource tree a resource is. You can denote this by setting the __path__
property on each resource.
class Widget(Resource):
__path__ = '/widget'
Views attached to this resource will then be added to the spec.
You can add parameters to your path via the __params__ property. You can
also tag all attached views via __tag__. Once you define a tag in one
resource, you can use it elsewhere by setting __tag__ to the tag name.
class Widget(Resource):
__path__ = '/widget/{widgetId}'
__params__ = [{
'name': 'widgetId',
'schema': {
'type': 'integer',
},
}]
__tag__ = {
'name': 'widgets',
'description': 'Endpoints for managing a widget.',
}
Mergefile
You likely will wish to augment your API spec with a description, additional
components, and more. This can be achieved with a mergefile. Write a YAML
file with the parts of the spec you wish to augment and pass the filename as
the --merge flag with generate-spec. The file will be loaded and merged
into the generated spec.
Zones
It may be that not all endpoints are made available to all users. For example, you may have all endpoints available internally but only select ones available publicly. You would then want separate API docs for internal users versus external users. This can be achieved using zones.
Tag each endpoint by setting api_zone in Configuration.add_view or
@view_config. By default, all endpoints regardless of zone will be added to
the spec. Set the --zone flag in generate-spec to only put endpoints
assigned to that zone in the spec.
Prior Art
pyramid-apispec allows you to augment view callable docstrings with OpenAPI definitions and can reference Marshmallow schemas with the apispec Marshmallow plugin. It does not support validating input and marshalling output. Schemas and routes must be manually declared.
Cornice supports validation with Marshmallow schemas, however only on Cornice resources, not arbitrary Pyramid endpoints. It does not support auto-generating OpenAPI documentation.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pyramid-marshmallow-0.6.2.tar.gz.
File metadata
- Download URL: pyramid-marshmallow-0.6.2.tar.gz
- Upload date:
- Size: 11.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a37445a90a9ed8adcd6c1a93792222189755a4944308c11f686155302164e2b3
|
|
| MD5 |
d139c25f317c293443a04a813c0c09de
|
|
| BLAKE2b-256 |
af41676245c215f3350a505f50b3a6d90f2a3ecfed2cc8cbb5cbf006f69fac7e
|
File details
Details for the file pyramid_marshmallow-0.6.2-py3-none-any.whl.
File metadata
- Download URL: pyramid_marshmallow-0.6.2-py3-none-any.whl
- Upload date:
- Size: 9.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2ec5344c91be67bde3003061cf2d1e18fa69756c35e63674bfff39cde6420186
|
|
| MD5 |
d9a1072d12ee4a627692c15f26c5fe21
|
|
| BLAKE2b-256 |
9e66e9f9d49af2528338df4cc4a9dc0a36197dd871cc52f30d5f517b6d7c0246
|