Skip to main content

Fast HTTP Server/Client microframework for Python asyncio

Project description

Build status pypi

BlackSheep

Fast web framework and HTTP client for Python asyncio, using Cython. BlackSheep web framework is ASGI compatible, and requires an ASGI HTTP Server.

Black Sheep

pip install blacksheep

from datetime import datetime
from blacksheep.server import Application
from blacksheep.server.responses import text


app = Application()

@app.route('/')
async def home(request):
    return text(f'Hello, World! {datetime.utcnow().isoformat()}')

Requirements

The web framework requires an ASGI server, such as uvicorn, daphne, or hypercorn. For example, to use it with uvicorn:

$ pip install uvicorn

To run an application like in the example above, use the methods provided by the ASGI HTTP Server:

# NB: if the BlackSheep app is defined in a file `server.py`

$ uvicorn server:app

Instead, the HTTP client component requires httptools.

$ pip install httptools

Automatic bindings and dependency injection

BlackSheep supports automatic binding of values for request handlers, by type annotation or by conventions. See more here.

from blacksheep.server.bindings import (FromJson,
                                        FromHeader,
                                        FromQuery,
                                        FromRoute,
                                        FromServices)

@app.router.put(b'/:d')
async def example(a: FromQuery(List[str]),
                  b: FromServices(Dog),
                  c: FromJson(Cat),
                  d: FromRoute(),
                  e: FromHeader(name='X-Example')):
    pass


@app.router.get(b'/:culture_code/:area')
async def home(request, culture_code, area):
    return text(f'Request for: {culture_code} {area}')

It also supports dependency injection, provided by rodi, a library from the same author, supporting singleton, scoped, and transient life style for activated services.

Strategies to handle authentication and authorization

BlackSheep implements strategies to handle authentication and authorization, using GuardPost, a library from the same author.

app.use_authentication()\
    .add(ExampleAuthenticationHandler())


app.use_authorization()\
    .add(AdminsPolicy())


@auth('admin')
@app.router.get(b'/')
async def only_for_admins():
    return None


@auth()
@app.router.get(b'/')
async def only_for_authenticated_users():
    return None

Objectives

  • Clean architecture and source code, following SOLID principles
  • Intelligible and easy to learn API, similar to those of many Python web frameworks
  • Rich code API, based on Dependency Injection and inspired by ASP.NET Core
  • Keep the core package minimal and focused, as much as possible, on features defined in HTTP and HTML standards
  • Targeting stateless applications to be deployed in the cloud
  • High performance, see results from TechEmpower benchmarks (links in Wiki page)

Web framework features

Client features

  • HTTP connection pooling
  • User friendly handling of SSL contexts (safe by default)
  • Support for client side middlewares, enabling clean source code and separation of concerns (logging of different kinds, handling of cookies, etc.)
  • Automatic handling of redirects (can be disabled, validates circular redirects and maximum number of redirects - redirects to URN are simply returned to code using the client)
  • Automatic handling of cookies (can be disabled, Set-Cookie and Cookie headers)

Example:

import asyncio
from blacksheep.client import ClientSession


async def client_example(loop):
    async with ClientSession() as client:
        response = await client.get('https://docs.python.org/3/')

        assert response is not None
        text = await response.text()
        print(text)


loop = asyncio.get_event_loop()
loop.run_until_complete(client_example(loop))

Documentation

Please refer to the project Wiki.

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

blacksheep-0.1.4.tar.gz (596.4 kB view hashes)

Uploaded Source

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