Metadata-Version: 2.1
Name: jimobama_event
Version: 1.0.1
Summary: UNKNOWN
Home-page: https://github.com/miljimo/events.git
Author: Obaro I. Johnson
Author-email: johnson.obaro@hotmail.com
License: UNKNOWN
Description: # messaging
        A simple event handling package.
        
        Almost all application are event driven, for instead , when a serial port is open you want to notify other objects that want to use it.
        The module provide a clear interface like C# event handlers to help you handle events.
        ```
        from jimobama_events.event import Event;
        from jimobama_events.eventhandler import EventHandler;
        
        
        def OnClicked(event):
            print(event.Type);
            
        handler  = EventHandler();
        handler += OnClicked;
        handler(Event('SERIAL_OPEN');
        
        ```
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
