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
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
sage-utils-0.5.6.tar.gz
(5.2 kB
view hashes)
Built Distribution
Close
Hashes for sage_utils-0.5.6-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7c3faa5b0a59342fbfaaa2b5b0fe6e2147934c9941dacc60731e07352b9646bc |
|
MD5 | 96dfab10a68d273f7d936b41a0a1f97c |
|
BLAKE2b-256 | fc9fc2b226734ace669d3507ca97d80588a651156777c13ada13143b4dba5c43 |