Metadata-Version: 2.1
Name: event-systems
Version: 0.0.1
Summary: A collection of thread-safe event systems which components can use to subscribe and post to other components.
Author-email: sir even <sir_even@icloud.com>
Project-URL: Homepage, https://github.com/sirEven/event-system.git
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENCE

# Events System
- EventsSystem
    - A singleton based thread-safe event system, which components can use to subscribe and post to other components. 
    - install: `pip install events-systems`
    - import `EventListener`: `from events_system.event_listener import EventListener`
    - subscribe: `EventsSystem.subscribe("event_type", function)`
    - post: `EventsSystem.post(event_type)`
