Skip to main content

Event notifier with many subscribers support

Project description

Upload Python Package

event-notifier

Simple python notifier.

Contents

Background

This is event notifier (sometimes called emitter) allowing to notify one or many subscribers about something that just happen. Allows to use variable number of arguments. Is thread-safe.

Installation

pip install -U event-notifier

Usage

from EventNotifier import Notifier


class FileWatchDog():
	def onOpen(self, fileName, openMode):
		print(f"File {fileName} opened with {openMode} mode")


	def onClose(self, fileName):
		print(f"File {fileName} closed")


watchDog = FileWatchDog()	


notifier = Notifier(["onCreate", "onOpen", "onModify", "onClose", "onDelete"])

notifier.subscribe("onOpen",  watchDog.onOpen)
notifier.subscribe("onClose", watchDog.onClose)

notifier.fireEvent("onOpen", openMode="w+", fileName="test_file.txt")  # order of named parameters is not important
notifier.fireEvent("onClose", fileName="test_file.txt")

Will produce:

$ python test.py
File test_file.txt opened with w+ mode
File test_file.txt closed

Constructor

Notifier(eventNames, logger=None)

Parameters

  • eventNames - list of any - mandatory, provides list of all supported events. Values provided here can be used for raising events later. Values provided in this list can be of any type.
  • logger - object - optional, logger supporting standard logging methods (info, warning error, etc..), default: None. If None is provided, then internal logger outputting warnings and errors to console will be created.

API Overview

subscribe(eventName, subscriber)

Description

Adds callable subscribers interested in some particular event.

Parameters

  • eventName - any - mandatory, specifies event, subscriber will be interested in.
  • subscriber - any - mandatory, callable subscriber (function, class method or class with call implemented)

Example

fireEvent(eventName, *args, **kwargs)

Description

Parameters

  • eventName - any - mandatory, provides list of all supported events. Values provided here later can be used for raising events
  • *args - list - optional, logger supporting standard logging methods (info, warning error, etc..), default: None
  • **kwargs - dictionary - optional, logger supporting standard logging methods (info, warning error, etc..), default: None

Example

removeSubscribersByEventName(eventName)

Description

Parameters

  • url - string - optional, Events API URL, default: None

Example

removeAllSubscribers()

Description

Parameters

  • url - string - optional, Events API URL, default: None

Example

Tests

PyTest is used for tests. Python 2 is not supported.

Install PyTest

$ pip install pytest

Run tests

$ py.test test/*

License

License Copyright (C) 2020 Vitalij Gotovskij

event-notifier binaries and source code can be used according to the MIT License

Contribute

TBD

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

event-notifier-0.1.8.tar.gz (3.8 kB view hashes)

Uploaded Source

Built Distribution

event_notifier-0.1.8-py3-none-any.whl (5.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page