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 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.1.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | f6a575cb14f9df49c3686f366a6b24605da2b428e309a1740eac2042a7505a49 |
|
MD5 | 0ae89df61fa9cd4618fd05e2143a08e6 |
|
BLAKE2b-256 | ff1f44e1ec8454d6fdb1111da0b29b625748468287a60a2f3bca104f3a5bd6e1 |
Close
Hashes for jsm_transactional_ruler-0.1.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 75ba07863fe5d1029ce95088083838486cc90ae4068362f0e80e608061ab7a94 |
|
MD5 | e4459969629dcb66e655f83ab293db89 |
|
BLAKE2b-256 | cd27450e7faa768f971bdcf50bc88fcb70536c13b80135e402c5e17aab436d27 |