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

Uploaded Source

Built Distribution

lightbus-1.0.3-py3-none-any.whl (131.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: lightbus-1.0.3.tar.gz
  • Upload date:
  • Size: 102.8 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.3.tar.gz
Algorithm Hash digest
SHA256 c756b7e406d7f25ee65df96f31e59fc1b4387624ecd895249d9bfff0001031f4
MD5 1fb64ac8c4c43bb43ea0d52954509d5d
BLAKE2b-256 c7d546fc45844549ab0d87e9e95cf519b6de37d1d3e7e2b5ea0d8bec60f4224b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: lightbus-1.0.3-py3-none-any.whl
  • Upload date:
  • Size: 131.6 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.3-py3-none-any.whl
Algorithm Hash digest
SHA256 86c3d1bcac6f3aed4220272ef61ba3cd48558171c04a809e1e0ba3ca0d51240d
MD5 79c164dd823bb1d405795a9d1846a301
BLAKE2b-256 624311b6cc813eeb366121f6d0b0adfa410560c6053c2df9fab4b0fd9096cbf6

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