Python - api.all()
This is reference documentation for the Nitric Python SDK. To learn about APIs in Nitric start with the API docs.
Register an API route that handles all HTTP verbs on that route.
from nitric.resources import apifrom nitric.application import NitricpublicApi = api("public")@publicApi.all("/customer/:customerId")async def customer_update(ctx):id = ctx.req.params.customerIdctx.res.body = f"Updating customer {id}"Nitric.run()
Parameters
- Name
match
- Required
- Required
- Type
- string
- Description
The path matcher to use for the route. Matchers accept path parameters in the form of a colon prefixed string. The string provided will be used as that path parameter's name when calling middleware and handlers. See examples.
- Name
options
- Required
- Required
- Type
- MethodOptions
- Description
Options to configure the route such as security options.
Examples
Register a handler for all HTTP verbs
from nitric.resources import apifrom nitric.application import NitricpublicApi = api("public")@publicApi.all("/customer/:customerId")async def hello_world(ctx):id = ctx.req.params.customerIdctx.res.body = f"Updating customer {id}"Nitric.run()
Last updated on Apr 3, 2025