Skip to main content

RPC & event framework for Python 3

Project description

What is Lightbus?

Codacy Badge 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.9 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(client):
    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.3.0a5.tar.gz (141.6 kB view details)

Uploaded Source

Built Distribution

lightbus-1.3.0a5-py3-none-any.whl (182.1 kB view details)

Uploaded Python 3

File details

Details for the file lightbus-1.3.0a5.tar.gz.

File metadata

  • Download URL: lightbus-1.3.0a5.tar.gz
  • Upload date:
  • Size: 141.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.12.1 Darwin/23.2.0

File hashes

Hashes for lightbus-1.3.0a5.tar.gz
Algorithm Hash digest
SHA256 b047783fd7125588508eb6e24597d943f0f66a6b0d20e6e59539ddb69a432391
MD5 8e89071f22702e64e44fa0fd152d2df1
BLAKE2b-256 ebe3a3b85dc07cb039312b820d7f6f2f87c5b308f4f2dd52c2190d954f21cfda

See more details on using hashes here.

File details

Details for the file lightbus-1.3.0a5-py3-none-any.whl.

File metadata

  • Download URL: lightbus-1.3.0a5-py3-none-any.whl
  • Upload date:
  • Size: 182.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.7.1 CPython/3.12.1 Darwin/23.2.0

File hashes

Hashes for lightbus-1.3.0a5-py3-none-any.whl
Algorithm Hash digest
SHA256 a4f532aef4fb8a30e2f437cff90a3ec09201e1ae7b838e839513812ee27a98bb
MD5 7fa11f949f1f8c9e81a60b3526810549
BLAKE2b-256 dce7ce4506c5679977f5d20c44e04f3c5a7c60f141b08d56ceb10552930e7373

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