Skip to main content

SDK for Open Matchmaking microservices in Python

Project description

SDK for Open Matchmaking microservices in Python

Features

  • Framework agnostic solution

  • Easy to write a new extension and use it later with your code

  • Base class for implementing AMQP workers

  • Register a new microservice in Open Matchmaking platform

Installation

This package should be installed using pip:

pip install sage-utils

Example

from sanic import Sanic
from sage_utils.extension import BaseExtension


class CustomExtension(BaseExtension):
    extension_name = app_attribute = 'custom'

    def hello(self, user):
        print("Hello, {}!".format(user))


app = Sanic(__name__)
CustomExtension()  # available via `app.custom` or `app.extensions['custom']`
app.custom.hello('world')  # Hello, world!

License

The sage-utils-python is published under BSD license. For more details read LICENSE file.

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

sage-utils-0.4.0.tar.gz (5.1 kB view hashes)

Uploaded Source

Built Distribution

sage_utils-0.4.0-py2.py3-none-any.whl (8.4 kB view hashes)

Uploaded Python 2 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