Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Calling a Streaming API using requests library in Python
import requests
url = "http://127.0.0.1:8000/campaign/?prompt=Pepsi"
response = requests.get(
url,
stream=True,
headers={"accept": "application/json"},
)
for chunk in response.iter_content(chunk_size=1024):
if chunk:
print(str(chunk, encoding="utf-8"), end="")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment