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

Uploaded Source

Built Distribution

lightbus-1.3.0a4-py3-none-any.whl (182.0 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lightbus-1.3.0a4.tar.gz
  • Upload date:
  • Size: 141.4 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.0a4.tar.gz
Algorithm Hash digest
SHA256 49ff4f996e3ad65b400e4780b2bd5e2a545274e8ddc2e79ed6e5eedab16fae79
MD5 7cd6cec1e5187987526cbd337f961817
BLAKE2b-256 1fddf7b3a5ecb3f2aca6d2b04b0646f7f09fd3f28a620330b7457554ece2015e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lightbus-1.3.0a4-py3-none-any.whl
  • Upload date:
  • Size: 182.0 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.0a4-py3-none-any.whl
Algorithm Hash digest
SHA256 d416eece4f93ca3695c350835809f6ad7db47d5d709b9f39d852bb62d73c89b6
MD5 4f0672078579d91fdcd31c24c43003e6
BLAKE2b-256 8ef62639bdea7b5722a56aa08dcebd886e2323693c103daed3466c46ff20b674

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