Skip to main content

No project description provided

Project description

CircleCI Codacy Badge Codacy Badge Discord Contributor Covenant

Lightbus allows your backend processes to communicate, run background tasks, and expose internal APIs.

Lightbus uses Redis as its underlying transport, although support for other platforms may eventually be added.

Lightbus requires Python 3.7 or above.

Lightbus is under active development and is still pre-release. You can track progress in GitHub.

Full documentation can be found at https://lightbus.org

Designed for ease of use

Lightbus is designed with developers in mind. The syntax aims to be intuitive and familiar, and common problems are caught with clear and helpful error messages.

For example, a naïve authentication API:

class AuthApi(Api):
    user_registered = Event(parameters=('username', 'email'))

    class Meta:
        name = 'auth'

    def check_password(self, user, password):
        return (
            user == 'admin'
            and password == 'secret'
        )

This can be called as follows:

import lightbus

bus = lightbus.create()

bus.auth.check_password(
    user='admin',
    password='secret'
)
# Returns true

You can also listen for events:

import lightbus

bus = lightbus.create()

def send_signup_email(event_message,
                      username, email):
    send_mail(email,
        subject=f'Welcome {username}'
    )

@bus.client.on_start()
def bus_start():
    bus.auth.user_registered.listen(
        send_signup_email
    )

To get started checkout the documentation at https://lightbus.org.

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

lightbus-0.0.2a0.tar.gz (84.1 kB view details)

Uploaded Source

Built Distribution

lightbus-0.0.2a0-py3-none-any.whl (105.0 kB view details)

Uploaded Python 3

File details

Details for the file lightbus-0.0.2a0.tar.gz.

File metadata

  • Download URL: lightbus-0.0.2a0.tar.gz
  • Upload date:
  • Size: 84.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.17 CPython/3.7.5 Darwin/18.7.0

File hashes

Hashes for lightbus-0.0.2a0.tar.gz
Algorithm Hash digest
SHA256 798a2e4f88de3ec978799c833c531636fcbcc3f0f3b245ea5dbf4345cd071382
MD5 6599d88cf1c8f93027b4df119b212f4b
BLAKE2b-256 66a350f0bce218125c7403dd1fc13f64f58fdf1691f16083b3ae8ad08b663a4a

See more details on using hashes here.

File details

Details for the file lightbus-0.0.2a0-py3-none-any.whl.

File metadata

  • Download URL: lightbus-0.0.2a0-py3-none-any.whl
  • Upload date:
  • Size: 105.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.17 CPython/3.7.5 Darwin/18.7.0

File hashes

Hashes for lightbus-0.0.2a0-py3-none-any.whl
Algorithm Hash digest
SHA256 55d2b0fe5df7e3e07d76183cecdbfa73df2c037c2e54ba3d38e85bbbc9dbe877
MD5 9c5a5260e30a9f7d5f7b140922b70aa5
BLAKE2b-256 285e176324ed1a9363bd6412a6a7afa8218d614d3bf0893a36724b93572738ef

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