sanic/examples/request_stream/client.py

11 lines
184 B
Python
Raw Permalink Normal View History

2017-06-02 00:52:56 +01:00
import requests
# Warning: This is a heavy process.
data = ""
for i in range(1, 250000):
data += str(i)
r = requests.post("http://0.0.0.0:8000/stream", data=data)
2017-06-02 00:52:56 +01:00
print(r.text)