An open API service indexing awesome lists of open source software.

https://github.com/overcat/requests-sse

server-sent events python client library based on requests
https://github.com/overcat/requests-sse

Last synced: 7 months ago
JSON representation

server-sent events python client library based on requests

Awesome Lists containing this project

README

          

============
requests-sse
============

.. image:: https://img.shields.io/github/actions/workflow/status/overcat/requests-sse/test-deploy.yml?branch=main
:alt: GitHub Workflow Status
:target: https://github.com/overcat/requests-sse/actions
.. image:: https://img.shields.io/pypi/v/requests-sse.svg
:alt: PyPI
:target: https://pypi.python.org/pypi/requests-sse
.. image:: https://img.shields.io/badge/python-%3E%3D3.8-blue
:alt: Python - Version
:target: https://pypi.python.org/pypi/stellar-sdk

A Server-Sent Events python client based on requests, provides a simple interface to process `Server-Sent Events `_.

Installation
------------
.. code-block:: bash

pip install requests-sse

Usage
-----
.. code-block:: python

import requests
from requests_sse import EventSource, InvalidStatusCodeError, InvalidContentTypeError

with EventSource("https://stream.wikimedia.org/v2/stream/recentchange", timeout=30) as event_source:
try:
for event in event_source:
print(event)
except InvalidStatusCodeError:
pass
except InvalidContentTypeError:
pass
except requests.RequestException:
pass

Credits
-------

This project was inspired by `aiohttp-sse-client `_, `aiosseclient `_,
`sseclient `_, and `sseclient-py `_.