Skip to main content

Utilities for albatross web framework

Project description

Handler

There are handlers for:

  • static files

  • static directories

  • server health & profiling

  • jinja2 templating

Middleware

There is middleware for:

  • authentication

  • logging

  • statsd

  • cors cross-browser authorization

Example

from albatross import Server
from albatross_extras.handler import HealthHandler
from albatross_extras.middleware import (
    StatsdMiddleware,
    LoggingMiddleware,
)
from albatross_extras.lib import logging
import asyncio

class Handler:
    async def on_get(self, req, res):
        await asyncio.sleep(0.1)
        res.write('Hello, %s' % req.args['name'])

app = Server()
logger = logging.get_logger('my-app.web')
app.add_middleware(LoggingMiddleware(logger)
app.add_middleware(StatsdMiddleware())
app.add_route('/health', HealthHandler())
app.serve()
# You'll now emit stats to statsd and log in JSON format to stdout

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

albatross_extras-0.2.0.tar.gz (7.7 kB view hashes)

Uploaded Source

Built Distribution

albatross_extras-0.2.0-py3-none-any.whl (15.1 kB view hashes)

Uploaded Python 3

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