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.0a2.tar.gz (141.1 kB view details)

Uploaded Source

Built Distribution

lightbus-1.3.0a2-py3-none-any.whl (181.8 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lightbus-1.3.0a2.tar.gz
  • Upload date:
  • Size: 141.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/22.4.0

File hashes

Hashes for lightbus-1.3.0a2.tar.gz
Algorithm Hash digest
SHA256 4f51e73eed9bc0e27cbc353744eb0d641a8ce0f5ed0b059be791a751ddbc9b3a
MD5 eb1f11b20d4700213806c8aacb973ed3
BLAKE2b-256 7dc277b0189f66f73e7e7fd8df0e2ce52ee63bf8ace259a82804766867739dde

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lightbus-1.3.0a2-py3-none-any.whl
  • Upload date:
  • Size: 181.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.5.1 CPython/3.11.4 Darwin/22.4.0

File hashes

Hashes for lightbus-1.3.0a2-py3-none-any.whl
Algorithm Hash digest
SHA256 92b4bd454a27abd48c136b1f609db5832ddf25939e2f5cc7d211b6f809d0ae86
MD5 f2dae17abcc9da730460849ef13bc8bd
BLAKE2b-256 4e205a2ee6350a5c14774466a2ce859adf4cb9d69de97735c3ceffb255b37026

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