Lib to post user events on transactional topics
Project description
Transactional Ruler
Lib to post user events on transactional topics
Running tests and lint
docker-compose up integration-tests
docker-compose up lint
Installation
pip install jsm-transactional-ruler
Example Usage
from jsm_transactional_ruler.enums import EventType
from jsm_transactional_ruler.events import Event
from jsm_transactional_ruler.publisher import publish_event
event = Event(
user_id="fake_id", event_type=EventType.T_EVENT_REGISTERED_USER, data={"email": "teste@juntossomosmais.com.br"}
)
publish_event(event_trigger=event)
The attribute event_type
accepts only events registered in the EventType
enum.
The publish_event
method accepts the optional queue
and publisher_parameters
parameters to send to django-stomp:
event = Event(
user_id="fake_id", event_type=EventType.T_EVENT_REGISTERED_USER, data={"email": "teste@juntossomosmais.com.br"}
)
publish_event(event_trigger=event, queue="/topic/VirtualTopic.user-update-transactions", persistent=False)
How to upload lib to PyPI
It is necessary to update the lib version using the command below:
$ poetry version major|minor|patch
After generating the version:
- Create a new branch with the files updated by Poetry
- Open PR based on the
master
branch - Merge PR into the master
- Generate a new release based on the version. Document to generate release
- After generating the new release "Github Actions" will upload the lib to PyPI using Poetry.
- Good job!
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
Close
Hashes for jsm-transactional-ruler-0.1.8.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | eff90b2a44797661f8451058c7a16ab9bdabd3a63ebdcb027d0c7080b2b1b5c6 |
|
MD5 | 3727a2f53ed062bd4cfb0661bb17c48b |
|
BLAKE2b-256 | 21b3ca9884af637df22fc5cc3e2cb796a883c6a47fe0f4efee6aa5db7ee8865a |
Close
Hashes for jsm_transactional_ruler-0.1.8-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7bc047cb0b97e8d7e182ffad4d2860ed86763b7de3a07733d854256a7c94714 |
|
MD5 | 34931b3c52377115a930bbae93fc6c9d |
|
BLAKE2b-256 | 22818a468d9fe7126c16a3ad5451c3018f01f44f3c8727be261193ca405170a5 |