RPC & event framework for Python 3
Project description
What is Lightbus?
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
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for lightbus-1.3.0a3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 648d61467e2a25a4dc300503a4fec0cf31237399abd9aff92801e71f3fd83146 |
|
MD5 | 1d9444b785bd04df858260ae07ad3e91 |
|
BLAKE2b-256 | 68b8b6fd528c3e7c81f0c3ed90620d5ccbaddd767d832bbc5a200bb4f868874a |