Skip to main content

Hedwig Python Library

Project description

https://travis-ci.org/Automatic/hedwig-python.svg?branch=master https://img.shields.io/coveralls/automatic/hedwig-python/master.svg?style=flat-square https://img.shields.io/pypi/v/authedwig.svg?style=flat-square https://img.shields.io/pypi/pyversions/authedwig.svg?style=flat-square https://img.shields.io/pypi/implementation/authedwig.svg?style=flat-square

Hedwig is a inter-service communication bus that works on AWS SQS/SNS, while keeping things pretty simple and straight forward. It uses json schema draft v4 for schema validation so all incoming and outgoing messages are validated against pre-defined schema.

Hedwig allows separation of concerns between consumers and publishers so your services are loosely coupled, and the contract is enforced by the schema validation. Hedwig may also be used to build asynchronous APIs.

For intra-service messaging, see Taskhawk.

Only Python 3.6+ is supported currently.

You can find the latest, most up to date, documentation at Read the Docs.

Quick Start

First, install the library:

$ pip install authedwig

Next, set up a few configuration settings:

AWS_ACCESS_KEY = <YOUR AWS KEY>
AWS_ACCOUNT_ID = <YOUR AWS ACCOUNT ID>
AWS_REGION = <YOUR AWS REGION>
AWS_SECRET_KEY = <YOUR AWS SECRET KEY>

HEDWIG_QUEUE = "DEV-MYAPP"

HEDWIG_CALLBACKS = {
    ("email.send", 1): "send_email",
}

HEDWIG_ROUTING = {
    ("email.send", 1): "send-email-v1",
}

HEDWIG_SCHEMA_FILE = "schema.json"

For Django projects, simple use Django settings to configure Hedwig, for non-Django projects, you must declare an environment variable called SETTINGS_MODULE that points to a module where settings may be found.

Create a JSON-schema and save as schema.json:

{
    "id": "https://hedwig.automatic.com/schema#",
    "$schema": "http://json-schema.org/draft-04/schema",
    "schemas": {
        "email.send": {
            "1.0": {
                "description": "Request to send email",
                "type": "object",
                "required": [
                    "to",
                    "subject"
                ],
                "properties": {
                    "to": {
                        "type": "string",
                        "pattern": "^\\S+@\\S+$"
                    },
                    "subject": {
                        "type": "string",
                        "minLength": 2
                    }
                }
            }
        }
    }
}

Then, simply define your topic handler:

@hedwig.task
def send_email(message: hedwig.Message = None) -> None:
    # send email

And finally, send a message:

message = hedwig.Message.new(
    hedwig.MessageType.send_email,
    StrictVersion('1.0'),
    {
        'to': 'example@email.com',
        'subject': 'Hello!',
    },
)
message.publish()

Development

Getting Started

Assuming that you have Python, pyenv and pyenv-virtualenv installed, set up your environment and install the required dependencies like this instead of the pip install authedwig defined above:

$ git clone https://github.com/Automatic/hedwig-python.git
$ cd hedwig-python
$ pyenv virtualenv 3.6.5 hedwig-3.6
...
$ pyenv activate hedwig-3.6
$ pip install -r requirements/dev-3.6.txt

Running Tests

You can run tests in using make test. By default, it will run all of the unit and functional tests, but you can also specify your own py.test options.

$ py.test
$ py.test tests/test_consumer.py

Generating Documentation

Sphinx is used for documentation. You can generate HTML locally with the following:

$ pip install -e .[dev]
$ make docs

Getting Help

We use GitHub issues for tracking bugs and feature requests.

  • If it turns out that you may have found a bug, please open an issue

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

authedwig-1.2.1.tar.gz (24.1 kB view details)

Uploaded Source

Built Distribution

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

authedwig-1.2.1-py3-none-any.whl (17.6 kB view details)

Uploaded Python 3

File details

Details for the file authedwig-1.2.1.tar.gz.

File metadata

  • Download URL: authedwig-1.2.1.tar.gz
  • Upload date:
  • Size: 24.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for authedwig-1.2.1.tar.gz
Algorithm Hash digest
SHA256 9ec7ab64c2d21a87644940b7a1ed49b1794c114eeb7b1f75407dc302d6d0a1cc
MD5 38db00e33e6d3eed917da4c91ba66a80
BLAKE2b-256 68ecb92e3b06419897ea757ff903adc5dcfc11e139a3931c2fa6f087d000a0d8

See more details on using hashes here.

File details

Details for the file authedwig-1.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for authedwig-1.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 464e53f204bd06939afff95ccd6d9056fd5eb2756612af6adc53932ea2ac30e6
MD5 5d8d1434627602aed2d02cf08b517e16
BLAKE2b-256 0215d8d7f91626a98bb46e6db778f5c8737695fcdd4feb49be3da8efc38401d2

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