Skip to content

Instantly share code, notes, and snippets.

@deerme
Created January 9, 2021 00:06
Show Gist options
  • Save deerme/82b47c0138ab614acc9d830530e5d37d to your computer and use it in GitHub Desktop.
Save deerme/82b47c0138ab614acc9d830530e5d37d to your computer and use it in GitHub Desktop.
import requests
# requests is performing HTTP request
r = requests.get("http://example/event-stream", headers={"Accept": "text/event-stream"}, stream=True)
for line in r.iter_lines():
print("Got line:", line)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment