No project description provided
Project description
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
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lightbus-0.9.0.tar.gz.
File metadata
- Download URL: lightbus-0.9.0.tar.gz
- Upload date:
- Size: 85.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.5 Darwin/18.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6291ad168e8ada18e930eafd77d2c718acb54c25b0c95e4d7fc878b06e8ac944
|
|
| MD5 |
8a2c8f6302941c21daf91638a20f1d28
|
|
| BLAKE2b-256 |
09e03afcdc97828f04b7bb11c33be19b31d94ea1e24a2b3e0b36cddc692e7bf3
|
File details
Details for the file lightbus-0.9.0-py3-none-any.whl.
File metadata
- Download URL: lightbus-0.9.0-py3-none-any.whl
- Upload date:
- Size: 106.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/0.12.17 CPython/3.7.5 Darwin/18.7.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fb97b966ea1915eb8f2b2dfdd74c0c98b806855d05cc5b9ed6e076b2482d5e82
|
|
| MD5 |
c9a0345c82512073a71e12f23c7ceb13
|
|
| BLAKE2b-256 |
249ab4970d3ad789924f0031883ed3309f2d1a68e7ee376bdec3c7d9b20a9858
|