summaryrefslogtreecommitdiff
path: root/README.rst
blob: 667bb4d3a321d63bad3395fd5bdebe034adbf90d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
=======================
 ``zope.event`` README
=======================

.. image:: https://img.shields.io/pypi/v/zope.event.svg
        :target: https://pypi.python.org/pypi/zope.event/
        :alt: Latest Version

.. image:: https://github.com/zopefoundation/zope.event/actions/workflows/tests.yml/badge.svg
        :target: https://github.com/zopefoundation/zope.event/actions/workflows/tests.yml

.. image:: https://readthedocs.org/projects/zopeevent/badge/?version=latest
        :target: http://zopeevent.readthedocs.org/en/latest/
        :alt: Documentation Status

The ``zope.event`` package provides a simple event system, including:

- An event publishing API, intended for use by applications which are
  unaware of any subscribers to their events.

- A very simple synchronous event-dispatching system, on which more sophisticated
  event dispatching systems can be built. For example, a type-based
  event dispatching system that builds on ``zope.event`` can be found in
  ``zope.component``.

Please see http://zopeevent.readthedocs.io/ for the documentation.