Skip to main content

Muffin is a fast, simple and asyncronous web-framework for Python 3 (asyncio, trio)

Project description

https://raw.github.com/klen/muffin/develop/docs/static/logo-h200.png

Muffin – is a fast, lightweight and asyncronous ASGI web-framework for Python 3.

Tests Status Documentation Status PYPI Version Python Versions

Features

Docs are available at https://klen.github.io/muffin/. Pull requests with documentation enhancements and/or fixes are awesome and most welcome.

Installation

We recommend using the latest version of Python. The library supports Python 3.7 and newer (PyPy-3.7 are supported too).

Muffin should be installed using pip:

pip install muffin

The command will install minimal configuration.

To install Muffin with gunicorn, uvicorn, uvloop, httptools use the command:

$ pip install muffin[standard]

Dependencies

These distributions will be installed automatically when installing Muffin.

Quickstart

Example “Hello User” with the Muffin:

import muffin


app = muffin.Application()


@app.route('/', '/hello/{name}')
async def hello(request):
    name = request.path_params.get('name', 'world')
    return f'Hello {name.title()}!'

What did that code do?

  1. First we imported the muffin.Application class. An instance of this class will be our application.

  2. Next we create an instance of this class. The first argument is the name of the application.

  3. We then use the muffin.Application.route decorator to tell Muffin what URLs should trigger our handler function.

  4. The function returns the message we want to display in the user’s browser.

Save the script as example.py and run it using Uvicorn (or another ASGI server):

$ uvicorn example:app

Open http://localhost:8000, http://localhost:8000/hello/username in your browser. Enjoy!

Plugins overview

The list of some Muffin plugins (please make PR if you want to provide more):

Muffin-Jinja2

Jinja2 templates (asyncio/trio/curio)

Tests Status PYPI Version

Muffin-Session

Signed Cookie-Based HTTP sessions (asyncio/trio/curio)

Tests Status PYPI Version

Muffin-OAuth

Work with OAuth (authorization, resources loading) (asyncio/trio/curio)

Tests Status PYPI Version

Muffin-Sentry

Sentry integration (asyncio/trio/curio)

Tests Status PYPI Version

Muffin-Peewee

Peewee support (SQL, ORM) (asyncio/trio/curio)

Tests Status PYPI Version

Muffin-Babel

Localization support (asyncio/trio/curio)

Tests Status PYPI Version

Muffin-Databases

Work with SQL databases (asyncio only)

Tests Status PYPI Version

Muffin-Mongo

Work with Mongo DB (asyncio only)

Tests Status PYPI Version

Muffin-REST

The package provides enhanced support for writing REST APIs (asyncio/trio/curio)

Tests Status PYPI Version

Muffin-Redis

Redis support

Tests Status PYPI Version

Muffin-Admin

Automatically build Admin UI

Tests Status PYPI Version

Muffin-Prometheus

Prometheus metrics exporter

Tests Status PYPI Version

Benchmarks

You could find some tests here: http://klen.github.io/py-frameworks-bench/

Bug tracker

If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/muffin/issues

Contributing

Development of The Muffin happens at: https://github.com/klen/muffin

Contributors

Muffin > 0.40 (completelly rewriten from scratch)

Muffin < 0.40 (based on AIOHTTP)

License

Licensed under a MIT license (See LICENSE)

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

muffin-0.75.0.tar.gz (15.6 kB view details)

Uploaded Source

Built Distribution

muffin-0.75.0-py3-none-any.whl (14.1 kB view details)

Uploaded Python 3

File details

Details for the file muffin-0.75.0.tar.gz.

File metadata

  • Download URL: muffin-0.75.0.tar.gz
  • Upload date:
  • Size: 15.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for muffin-0.75.0.tar.gz
Algorithm Hash digest
SHA256 df848db1e1724d76ba819d07932632697f6f19eff41e6e513f22eeea3980023b
MD5 c5c66484322a5f63c5c5a3a3a14ced3f
BLAKE2b-256 1e8b92071237199127f76c4e900c5b9662b8d704b99f7cdb64c462945d07e99f

See more details on using hashes here.

File details

Details for the file muffin-0.75.0-py3-none-any.whl.

File metadata

  • Download URL: muffin-0.75.0-py3-none-any.whl
  • Upload date:
  • Size: 14.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.1 importlib_metadata/4.0.1 pkginfo/1.7.0 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.60.0 CPython/3.9.5

File hashes

Hashes for muffin-0.75.0-py3-none-any.whl
Algorithm Hash digest
SHA256 aea277bfa0161e33e7ae9c6c4f7132c378b00275dd7fdea7b8a9de6fa0b4f08b
MD5 96ac3f29e26b4cf836f74833882e82e5
BLAKE2b-256 ee7f810f0bb8986896086463d4ea9b09afebeaf0e1c07df159a0daa44a9a2e3e

See more details on using hashes here.

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