TutorialΒΆ

This tutorial walks you through a basic setup of EventManager in a Python project.

  1. Install the package

    pip install EventManager
    
  2. 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()
    
  3. Advanced Setup

    You can configure outputs, add processors, and switch to JSON or CSV formatting.

See top_level for details on top-level APIs.