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-0.10.0a5.tar.gz (102.4 kB view details)

Uploaded Source

Built Distribution

lightbus-0.10.0a5-py3-none-any.whl (128.8 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for lightbus-0.10.0a5.tar.gz
Algorithm Hash digest
SHA256 f326f0d33e98ce879f42a56d3709584d5e5aa7b4f9d51643135a943dddc96c5b
MD5 e73240b953c6d73b079fd94511922987
BLAKE2b-256 8e306d6dc86cfd52a3cba005c4e561eb4e6484d47d8092dcd656eb73ed91444d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for lightbus-0.10.0a5-py3-none-any.whl
Algorithm Hash digest
SHA256 4f1265c0bf726d5db2e03e5dbb6ac77d5df77b3647a93e4683dda255c4cdb8ac
MD5 f1cd08b0ed3e6e68f25b2e0ba6e7a39b
BLAKE2b-256 64a0fb6531852ba8109a97238c586f8e805baa9ed0d77c5f7d41ef2fb2ab3727

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