asyncio-sse icon indicating copy to clipboard operation
asyncio-sse copied to clipboard

Simple asyncio/aiohttp wrapper for Server-Sent Events.

Results 2 asyncio-sse issues
Sort by recently updated
recently updated
newest added

This fixes iterating over each entry in the headers dict - you're trying to iterate over each key/value pair, but the current code just iterates over the keys.

> Traceback (most recent call last): > File "/tmp/env/lib/python3.4/site-packages/aiohttp/server.py", line 193, in start > yield from handler > File "/tmp/env/lib/python3.4/site-packages/sse/protocol.py", line 35, in handle_request > handler.validate_sse() > File "/tmp/env/lib/python3.4/site-packages/sse/handler.py", line...