Metadata-Version: 2.1
Name: quart-events
Version: 0.2.2
Summary: quart extension to facilitate event message brokering
Home-page: https://github.com/smithk86/quart-events
Author: Kyle Smith
Author-email: smithk86@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Description-Content-Type: text/markdown
Requires-Dist: async-timeout
Requires-Dist: asyncio-multisubscriber-queue
Requires-Dist: quart

#  quart-events

quart_events.EventBroker loads a blueprint into Quart which allows clients to subscribe to events via WebSockets or SSE (ServerSentEvent). The app can then generate server-side events and send them to all subscribed clients in real-time.

Please see [test/app.py](https://github.com/smithk86/quart-events/blob/master/test/app.py) for an example app.

