filigran-sseclient
Python API client for OpenCTI.
What it is and what it does
Filigran-sseclient is a Python library that wraps HTTP Server Sent Event (SSE) streams into a simple iterator interface. You pass it a URL, and it yields individual messages as they arrive from the server, handling the SSE protocol parsing for you. It depends on requests for HTTP transport and six for Python 2/3 compatibility (though the package itself requires Python 3.7+).
The library is a fork of the original sseclient project, with enhancements to support chunk stream messages—useful when servers send SSE data in multiple chunks rather than as complete lines. It's classified as production-stable and sits in the top 5000 PyPI packages by download volume, suggesting moderate adoption for real-time event consumption use cases.
Use it for:
- Consume real-time event streams from platforms that expose SSE endpoints for live data delivery
- Build monitoring dashboards that subscribe to live server-sent updates without polling
- Process continuous data feeds (logs, metrics, alerts) streamed over HTTP in SSE format
- Integrate with APIs that use EventSource for push notifications or live data delivery
Worth the install?
AI-flagged interpretation of the facts on this page — verify before relying
Provides a Python iterator interface for consuming Server Sent Event (SSE) streams over HTTP, with support for chunk stream messages.
Yes, if you need to consume SSE streams over HTTP. The package is lightweight, permissively licensed, and has no known vulnerabilities. Install friction is low. However, note that maintenance is aging (last commit 2025-11-28) and the project has minimal community engagement (1 star), so expect limited ongoing support or feature development—suitable for stable, read-only SSE consumption but not for packages requiring active maintenance.
Install
filigran-sseclient on PyPI
pip
pip install filigran-sseclientuv
uv add filigran-sseclientpoetry
poetry add filigran-sseclientInstalling filigran-sseclient
Before you install
Low friction installation with only two lightweight runtime dependencies (requests and six). Maintenance status is aging—last commit was 2025-11-28, but the package has remained stable since its first release in 2023-02-23.
License in practice
Licensed under MIT (permissive), allowing free use, modification, and distribution with minimal restrictions.
Quickstart
pip install filigran-sseclient
from sseclient import SSEClient
url = 'https://example.com/stream'
client = SSEClient(url)
for message in client:
print(message.data)
Requires Python 3.7 or later; requests library must be installed and accessible.
Verify before relying
- Whether chunk stream message support is complete or still experimental relative to the original sseclient fork
- Performance characteristics when handling high-volume or long-lived SSE connections
- Whether the package is actively maintained or in maintenance-only mode given the aging status
Package facts
| License | Copyright (c) 2015 Brent Tubbs (permissive) |
| Python support | supports the current Python release (>=3.7) |
| Install friction | low — pure-Python wheel |
| Runtime dependencies | 2 — requests, six |
| Maintenance | aging — 613 days since the last release |
| Last repo commit | |
| First released | |
| Downloads | 913,547/month — #4,738 on PyPI (30-day window, as of 2026-08-14) |
| Known vulnerabilities | none known (OSV.dev, checked 2026-08-14) |
Evidence: filigran_sseclient-1.0.2-py3-none-any.whl
Tags
More WWW/HTTP packages
urllib3 is an HTTP client library that provides…
permissive · top 100 on PyPI
requestsRequests is a Python HTTP library that…
permissive · top 100 on PyPI
h11h11 is a pure-Python HTTP/1.1 protocol…
permissive · top 100 on PyPI
httpxHTTPX is a fully featured HTTP client library…
permissive · top 100 on PyPI
httpcoreA minimal low-level HTTP client library that…
permissive · top 100 on PyPI
aiohttpaiohttp is an async HTTP client and server…
permissive · top 100 on PyPI
sseclientIterates over Server Sent Event (SSE) streams…
permissive · top 15,000 on PyPI
requests-sseProvides a Python client for consuming…
permissive · top 15,000 on PyPI
sseclient-pyParses Server-Sent Events (SSE) from HTTP…
permissive · top 5,000 on PyPI
aiohttp-sse-clientProvides an async Python client for consuming…
permissive · top 15,000 on PyPI
httpx-sseConsume Server-Sent Event (SSE) messages from…
permissive · top 1,000 on PyPI
aiohttp-sse-client2Provides an async Python client for consuming…
permissive · top 15,000 on PyPI
launchdarkly-eventsourceConsumes Server-Sent Events (SSE) from remote…
permissive · top 5,000 on PyPI
sse-starletteProvides Server-Sent Events streaming for…
permissive · top 1,000 on PyPI
datastar-pyDatastar-py provides a Python SDK for building…
permissive · top 15,000 on PyPI
priorityImplements HTTP/2 stream priority scheduling…
permissive · top 5,000 on PyPI