mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-11-23 09:44:22 +03:00
15 lines
341 B
Python
15 lines
341 B
Python
from app import app
|
|
from flask import make_response
|
|
from io import BytesIO
|
|
|
|
|
|
@app.route("/large")
|
|
def large():
|
|
result = BytesIO()
|
|
for _ in range(1024 * 1024 * 32):
|
|
result.write(b"0123456789abcdef")
|
|
data = result.getvalue()
|
|
resp = make_response(data)
|
|
resp.content_type = "application/octet-stream"
|
|
return resp
|