Relé makes integration with Google PubSub easier.
Project description
Relé makes integration with Google PubSub straightforward and easy.
Motivation and Features
The Publish-Subscribe pattern and specifically the Google Cloud Pub/Sub library are very powerful tools but you can easily cut your fingers on it. Relé makes integration seamless by providing Publisher, Subscriber and Worker classes with the following features:
- Powerful Publishing API
- Highly Scalable Worker
- Intuitive Subscription Management
- Easily Extensible Middleware
- Ready to go Django/Flask integration
- CLI
- And much more!
What it looks like
# Publish to the topic
import rele
rele.publish(topic='photo-uploaded', data={'customer_id': 123})
# Subscribe to the Pub/Sub topic
from rele import sub
@sub(topic='photo-uploaded')
def photo_uploaded(data, **kwargs):
print(f"Customer {data['customer_id']} has uploaded an image")
What's in the name
"Relé" is Spanish for relay, a technology that has played a key role in history in the evolution of communication and electrical technology, including the telegraph, telephone, electricity transmission, and transistors.
Install
Relé supports Python 3.6+ and installing via pip
pip install rele
or with Django integration
pip install rele[django]
or with Flask integration
pip install rele[flask]
Quickstart
Please see our documentation to get started.
You can also read more about it here
Running Tests
Does the code actually work?
make test
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
File details
Details for the file rele-1.15.2.tar.gz
.
File metadata
- Download URL: rele-1.15.2.tar.gz
- Upload date:
- Size: 26.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.9.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 154e9b2752c99c3e2ced43bc4cfa5776df8a6da3b1c8cb15b1796ce76e7d7ef4 |
|
MD5 | a6a2fd16ff660b76e1e66d77c04eb6a5 |
|
BLAKE2b-256 | 1385fd1e9fa9ff86d848f54389a62848aff2f44202ffdb86306d6f0ab75890bd |