Skip to main content

Doing all of the boilerplate to create a Sanic Plugin, so you don't have to.

Project description

Build Status Latest Version Supported Python versions License

Welcome to the Sanic Plugins Framework.

Notice: Sanic-Plugins-Framework v0.8.2 does not work with Sanic v19.12. See here for more details.

The Sanic Plugins Framework (SPF) is a lightweight python library aimed at making it as simple as possible to build plugins for the Sanic Async HTTP Server.

The SPF provides a SanicPlugin python base object that your plugin can build upon. It is set up with all of the basic functionality that the majority of Sanic Plugins will need.

A SPF Sanic Plugin is implemented in a similar way to Sanic Blueprints. You can use convenience decorators to set up all of the routes, middleware, exception handlers, and listeners your plugin uses in the same way you would a blueprint, and any Application developer can import your plugin and register it into their application.

The Sanic Plugins Framework is more than just a Blueprints-like system for Plugins. It provides an enhanced middleware system, and manages Context objects.

The Enhanced Middleware System

The Middleware system in the Sanic Plugins Framework both builds upon and extends the native Sanic middleware system. Rather than simply having two middleware queues (‘request’, and ‘response’), the middleware system in SPF uses five additional queues.

  • Request-Pre: These middleware run before the application’s own request middleware.

  • Request-Post: These middleware run after the application’s own request middleware.

  • Response-Pre: These middleware run before the application’s own response middleware.

  • Response-Post: These middleware run after the application’s own response middleware.

  • Cleanup: These middleware run after all of the above middleware, and are run after a response is sent, and are run even if response is None.

So as a plugin developer you can choose whether you need your middleware to be executed before or after the application’s own middleware.

You can also assign a priority to each of your plugin’s middleware so you can more precisely control the order in which your middleware is executed, especially when the application is using multiple plugins.

The Context Object Manager

One feature that many find missing from Sanic is a context object. SPF provides multiple context objects that can be used for different purposes.

  • A shared context: All plugins registered in the SPF have access to a shared, persistent context object, which anyone can read and write to.

  • A per-request context: All plugins get access to a shared temporary context object anyone can read and write to that is created at the start of a request, and deleted when a request is completed.

  • A per-plugin context: All plugins get their own private persistent context object that only that plugin can read and write to.

  • A per-plugin per-request context: All plugins get a temporary context object that is created at the start of a request, and deleted when a request is completed.

Installation

Install the extension with using pip, or easy_install.

$ pip install -U sanic-plugins-framework

Usage

A simple plugin written using the Sanic Plugins Framework will look like this:

# Source: my_plugin.py
from spf import SanicPlugin
from sanic.response import text

class MyPlugin(SanicPlugin):
    def __init__(self, *args, **kwargs):
        super(MyPlugin, self).__init__(*args, **kwargs)
        # do pre-registration plugin init here.
        # Note, context objects are not accessible here.

    def on_registered(self, context, reg, *args, **kwargs):
        # do post-registration plugin init here
        # We have access to our context and the shared context now.
        context.my_private_var = "Private variable"
        shared = c.shared
        shared.my_shared_var = "Shared variable"

my_plugin = MyPlugin()

# You don't need to add any parameters to @middleware, for default behaviour
# This is completely compatible with native Sanic middleware behaviour
@my_plugin.middleware
def my_middleware(request)
    h = request.headers
    #Do request middleware things here

#You can tune the middleware priority, and add a context param like this
#Priority must be between 0 and 9 (inclusive). 0 is highest priority, 9 the lowest.
#If you don't specify an 'attach_to' parameter, it is a 'request' middleware
@my_plugin.middleware(priority=6, with_context=True)
def my_middleware2(request, context):
    context['test1'] = "test"
    print("Hello world")

#Add attach_to='response' to make this a response middleware
@my_plugin.middleware(attach_to='response', with_context=True)
def my_middleware3(request, response, context):
    # Do response middleware here
    return response

#Add relative='pre' to make this a response middleware run _before_ the
#application's own response middleware
@my_plugin.middleware(attach_to='response', relative='pre', with_context=True)
def my_middleware4(request, response, context):
    # Do response middleware here
    return response

#Add attach_to='cleanup' to make this run even when the Response is None.
#This queue is fired _after_ response is already sent to the client.
@my_plugin.middleware(attach_to='cleanup', with_context=True)
def my_middleware5(request, context):
    # Do per-request cleanup here.
    return None

#Add your plugin routes here. You can even choose to have your context passed in to the route.
@my_plugin.route('/test_plugin', with_context=True)
def t1(request, context):
    words = context['test1']
    return text('from plugin! {}'.format(words))

The Application developer can use your plugin in their code like this:

# Source: app.py
from sanic import Sanic
from spf import SanicPluginsFramework
from sanic.response import text
import my_plugin

app = Sanic(__name__)
spf = SanicPluginsFramework(app)
assoc = spf.register_plugin(my_plugin)

# ... rest of user app here

There is support for using a config file to define the list of plugins to load when SPF is added to an App.

# Source: spf.ini
[plugins]
MyPlugin
AnotherPlugin=ExampleArg,False,KWArg1=True,KWArg2=33.3
# Source: app.py
app = Sanic(__name__)
app.config['SPF_LOAD_INI'] = True
app.config['SPF_INI_FILE'] = 'spf.ini'
spf = SanicPluginsFramework(app)

# We can get the assoc object from SPF, it is already registered
assoc = spf.get_plugin_assoc('MyPlugin')

Or if the developer prefers to do it the old way, (like the Flask way), they can still do it like this:

# Source: app.py
from sanic import Sanic
from sanic.response import text
from my_plugin import MyPlugin

app = Sanic(__name__)
# this magically returns your previously initialized instance
# from your plugin module, if it is named `my_plugin` or `instance`.
assoc = MyPlugin(app)

# ... rest of user app here

Contributing

Questions, comments or improvements? Please create an issue on Github

Credits

Ashley Sommer ashleysommer@gmail.com

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

Sanic-Plugins-Framework-0.9.0b1.tar.gz (19.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

Sanic_Plugins_Framework-0.9.0b1-py2.py3-none-any.whl (22.9 kB view details)

Uploaded Python 2Python 3

File details

Details for the file Sanic-Plugins-Framework-0.9.0b1.tar.gz.

File metadata

  • Download URL: Sanic-Plugins-Framework-0.9.0b1.tar.gz
  • Upload date:
  • Size: 19.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.1

File hashes

Hashes for Sanic-Plugins-Framework-0.9.0b1.tar.gz
Algorithm Hash digest
SHA256 50bb26c3c2c2d87ae09a65efd72e62d78b939c0f5d9e928426d70946c8f2b588
MD5 4efc7aed4c139255994d5463a8471fa0
BLAKE2b-256 3ea2fe70cc51dfdc4e73e62efb846b4806e857e01763ce06f13ef0c309c115d9

See more details on using hashes here.

File details

Details for the file Sanic_Plugins_Framework-0.9.0b1-py2.py3-none-any.whl.

File metadata

  • Download URL: Sanic_Plugins_Framework-0.9.0b1-py2.py3-none-any.whl
  • Upload date:
  • Size: 22.9 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/44.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.7.1

File hashes

Hashes for Sanic_Plugins_Framework-0.9.0b1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 cc18f764048567b278e22a0433ae00c51243ba04307d8f2f230249d02d6ea033
MD5 f2744333b3d67a18168ce86e2a6cc3b6
BLAKE2b-256 e1b862e854410a7dea9b6a765c3c0d65d0a0c36d3b12613863f13d6170de3004

See more details on using hashes here.

Supported by

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