File: flask_sendfile.py

package info (click to toggle)
gunicorn 25.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 5,048 kB
  • sloc: python: 43,889; sh: 285; javascript: 54; makefile: 38
file content (18 lines) | stat: -rw-r--r-- 397 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#
# This file is part of gunicorn released under the MIT license.
# See the NOTICE for more information.

import io

from flask import Flask, send_file

app = Flask(__name__)

@app.route('/')
def index():
    buf = io.BytesIO()
    buf.write(b'hello world')
    buf.seek(0)
    return send_file(buf,
                     attachment_filename="testing.txt",
                     as_attachment=True)