TutorialΒΆ
This tutorial walks you through a basic setup of EventManager in a Python project.
Install the package
pip install EventManager
Basic Usage
from EventManager import event_manager event_manager.log_error_message("Hello, EventManager!") event_manager.log_warning_message("This is a warning message.") event_manager.stop_pipeline()
Advanced Setup
You can configure outputs, add processors, and switch to JSON or CSV formatting.
See top_level for details on top-level APIs.