Skip to main content

RPC & event framework for Python 3

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.

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-1.0.5.tar.gz (103.2 kB view details)

Uploaded Source

Built Distribution

lightbus-1.0.5-py3-none-any.whl (132.0 kB view details)

Uploaded Python 3

File details

Details for the file lightbus-1.0.5.tar.gz.

File metadata

  • Download URL: lightbus-1.0.5.tar.gz
  • Upload date:
  • Size: 103.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.1 CPython/3.8.1 Darwin/18.7.0

File hashes

Hashes for lightbus-1.0.5.tar.gz
Algorithm Hash digest
SHA256 d7eb147032e603d6551f492ca13453da24d2ac4a6327c021a5c1953aca6bb475
MD5 d337ce34561a4bf977539918567c22c0
BLAKE2b-256 0ebe121d84533a8ac9acc1eab20f6a8b1a584e3f5762b647ff28589ad0a48d33

See more details on using hashes here.

File details

Details for the file lightbus-1.0.5-py3-none-any.whl.

File metadata

  • Download URL: lightbus-1.0.5-py3-none-any.whl
  • Upload date:
  • Size: 132.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.1 CPython/3.8.1 Darwin/18.7.0

File hashes

Hashes for lightbus-1.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 8f727ae58de99c9dfa295766de9b48c9b4b700d97b056b7f27fbd76536b1ded3
MD5 5b78e8cfceb2987203a74b1c652927d9
BLAKE2b-256 ec76e28bf6538bdf4e0262f2a8aaa463f79fafb35bd33f47e8dcf54328036041

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