Skip to main content

No project description provided

Project description

pecan-notario

JSON validation for Pecan with Notario (http://notario.cafepais.com).

In its simplest form, you need to define a schema and decorate the controller method, like:

schema = ('foo', True)

@expose()
@validate(schema)
def some_controller(self, **kw):
    return dict()

The above controller method, using a Notario schema, will require a foo key and a True value otherwise it will (by default) set the HTTP response to a 400 (invalid request) and add the validation error to request.pecan['schema'].errors.

Using a handler

If more granular control is needed when dealing with an error condition, a handler can be passed in to the decorator to deal with errors explicitly.

@expose()
@validate(some_schema, '/some/handler')
def some_controller(self, **kw):
    return dict()

In this situation ‘/some/handler’ would be a controller method that can deal directly with the error that was slapped onto the request object (on request.validation_error).

Notario exceptions will include a reason attribute that will contain the specific error message that was raised if a custom validator failed with an error message. In this case, a handler would access this Notario exception attribute like:

request.validation_error.reason

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

pecan-notario-0.0.1.tar.gz (3.0 kB view details)

Uploaded Source

File details

Details for the file pecan-notario-0.0.1.tar.gz.

File metadata

File hashes

Hashes for pecan-notario-0.0.1.tar.gz
Algorithm Hash digest
SHA256 4c9d62cd0dd6f9c60d653f85a95c91dd700e9e8f95b33c4d6abb0904a3ba02a4
MD5 ef364bd76b9199cea39b656c5c0d1501
BLAKE2b-256 d32f212846499ea94da7ba0161047dd342f703a564260437eb7f3a864c7fc98e

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page