Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,14 +1,17 @@
# Copyright (c) 2026 dexpace and Omar Aljarrah.
# Licensed under the MIT License. See LICENSE.md in the repository root for details.

"""WHATWG-spec Server-Sent Events parsing."""
"""WHATWG-spec Server-Sent Events parsing and reconnecting client."""

from __future__ import annotations

from .connection import AsyncSseConnection, SseConnection
from .parser import AsyncSseStream, SseEvent, SseParser, parse_async_events, parse_events

__all__ = [
"AsyncSseConnection",
"AsyncSseStream",
"SseConnection",
"SseEvent",
"SseParser",
"parse_async_events",
Expand Down
Loading