Pure python implementation of event dispatcher
Project description
Event Dispatcher
This repository contains a pure Python implementation of an event dispatcher. The event dispatcher allows you to create a simple event-driven architecture in your Python applications. It allows you to decouple your application components, making your code cleaner and easier to maintain.
Features
- Pure Python: No external dependencies.
- Simple API: Easy to understand and use.
- Lightweight: Minimal impact on your application's performance.
- Flexible: Can be used in any Python application.
- Asyncio Support: Compatible with Python's built-in asyncio library.
Installation
You can install the Event Dispatcher using pip:
pip install event-dispatching
Usage
Here is a basic example of how to use the Event Dispatcher:
import event_dispatcher
# Create an instance of the Event Dispatcher
dispatcher = event_dispatcher.SyncEventDispatcher()
# Define a callback function
def callback(data):
print(f"Event received: {data}")
# Register the callback function for the "test" event
dispatcher.subscribe("test", callback)
# Dispatch the "test" event
dispatcher.dispatch("test", "Hello, World!")
When you run this code, it will print:
Event received: Hello, World!
For more examples, please see examples
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Project details
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
Hashes for event_dispatching-0.1.2-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffa00699e91b79d7c7dcd27bab4da2ef8176f382bf209675b87b8829c47914e9 |
|
MD5 | 9bbd9a5a43ac4388f545dd79cd4d5dee |
|
BLAKE2b-256 | ec71de591dffad8055f6f619df69362b30af52648bed71d25cb6feca06c0269e |