Metadata-Version: 2.1
Name: EventPython
Version: 0.0.1
Summary: Event support for Python.
Home-page: UNKNOWN
Author: j_pack
Author-email: iamjojozm@icloud.com
License: UNKNOWN
Keywords: event python eventdispatcher
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Python Software Foundation License
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: typing (==3.7.4.3)
Requires-Dist: multiprocessing (==2.6.2.1)

# EventPython

Event support for Python.

Use this when you need fast event-speed in your program, or when you need to run multiple event dispatchers.

## Installing

All you need to do is run `pip install eventpython`.

## Examples

#### Example 1:

```python
from eventpython import Clock, Subscriber, Event

mysubscriber = Subscriber(1)
mysubscriber.handler = lambda ev: print("Hello!")
myclock = Clock([mysubscriber])
myclock.start()
myclock.send(Event(1, "", None))
```


