EVNTDispatch is a Python event system for seamless event-driven programming, offering flexibility and efficiency in handling and dispatching events.
Project description
EVNTDispatch
EVNTDispatch is a versatile Python library designed to facilitate event-driven programming by providing a flexible event dispatcher. Whether you are building a graphical user interface, a command-line application, or a complex system with asynchronous components, the Event System simplifies communication and coordination between different parts of your code.
Key Features
-
Event Dispatching: Easily define and dispatch events to notify components of changes or user interactions.
-
Asynchronous Support: Seamlessly integrate asynchronous event listeners for efficient handling of time-consuming tasks without blocking the main execution.
-
Priority and Max Responders: Control the order of event listener execution and limit the number of responders for fine-grained control over event handling.
-
Task Scheduling: Schedule tasks to be executed after a specified delay, adding a layer of automation to your application.
Basic Async Example
import asyncio
from EVNTDispatch import EventDispatcher, PEvent, EventType
dispatcher = EventDispatcher()
# All event listeners must have a single parameter of type PEvent
async def process_message(event: PEvent):
message_data, user_id = event.data
# Simulate processing the message, e.g., storing it in a database or applying business logic
print(f"Processing Message from User {user_id}: {message_data}")
await asyncio.sleep(1)
print("Message Processed")
async def send_message(user_id: int, message: str):
# Trigger an event called 'new_message', notifying any listeners subscribed to 'new_message'
await dispatcher.async_trigger(PEvent("new_message", EventType.Base, data=(message, user_id)))
async def main():
# Start the event dispatcher
dispatcher.start()
# Subscribe 'process_message' to events called 'new_message'
dispatcher.add_listener("new_message", process_message)
# Tasks to simulate users sending messages
tasks = [
send_message(1, "Hello, how are you?"),
send_message(2, "I'm doing well, thanks!"),
send_message(1, "What's new?"),
send_message(3, "Not much, just relaxing.")
]
# Execute tasks concurrently
await asyncio.gather(*tasks)
# Close the dispatcher to wait for all tasks to finish
await dispatcher.close()
if __name__ == "__main__":
asyncio.run(main())
License
This project is licensed under the MIT License.
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 Distributions
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 EVNTDispatch-0.0.2-py3-none-any.whl.
File metadata
- Download URL: EVNTDispatch-0.0.2-py3-none-any.whl
- Upload date:
- Size: 15.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.12.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46322ffcca65d1a643c75a6e4cbcdee8841745b85c34b1a307561a5c5ce0fd63
|
|
| MD5 |
eaaa7329396a967be023a6770234997d
|
|
| BLAKE2b-256 |
21ca259ef2aec2e7c090afefb3edd52e26d5e94d19878f97f543312bb4dea51e
|