Basic event engine
Project description
PyEventEngine
python native event engine
Install
pip install git+https://github.com/BolunHan/PyEventEngine.git
or
pip install PyEventEngine
Use
basic usage
# init event engine
import time
from EventEngine import EventEngine, Topic
EVENT_ENGINE = EventEngine()
EVENT_ENGINE.start()
# register handler
def test_handler(msg, **kwargs):
print(msg)
EVENT_ENGINE.register_handler(topic=Topic('SimpleTopic'), handler=test_handler)
# publish message
EVENT_ENGINE.put(topic=Topic('SimpleTopic'), msg='topic called')
time.sleep(1)
EVENT_ENGINE.stop()
regular topic
# init event engine
import time
from EventEngine import EventEngine, Topic, RegularTopic
EVENT_ENGINE = EventEngine()
EVENT_ENGINE.start()
# register handler
def test_handler(msg, **kwargs):
print(msg)
EVENT_ENGINE.register_handler(topic=RegularTopic('RegularTopic.*'), handler=test_handler)
# publish message
EVENT_ENGINE.put(topic=Topic('RegularTopic.ChildTopic0'), msg='topic called')
time.sleep(1)
EVENT_ENGINE.stop()
timer topic
# init event engine
import time
from EventEngine import EventEngine, Topic, RegularTopic
EVENT_ENGINE = EventEngine()
EVENT_ENGINE.start()
# register handler
def test_handler(**kwargs):
print(kwargs)
topic = EVENT_ENGINE.get_timer(interval=1)
EVENT_ENGINE.register_handler(topic=topic, handler=test_handler)
# publish message
time.sleep(5)
EVENT_ENGINE.stop()
See more advanced usage at .Demo
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
PyEventEngine-0.1.2.tar.gz
(7.2 kB
view details)
File details
Details for the file PyEventEngine-0.1.2.tar.gz
.
File metadata
- Download URL: PyEventEngine-0.1.2.tar.gz
- Upload date:
- Size: 7.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.8.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0704c93635cb8a509c8726ffdd2ef0e9ddc69a23cb8c8649274afac548fed006 |
|
MD5 | dc47e014eb59b310a868c3567cfb3769 |
|
BLAKE2b-256 | c2b345c03ddd75efe6a7057564f9f41025b4250475094f30783adbce81e63fdf |