flask-rangerequest

Range request (RFC 7233) support for your Flask app.

APACHE-2.0 License

Downloads
754
Stars
4
Committers
2

Flask-RangeRequest

Flask-RangeRequest adds range request (RFC 7233) support to your Flask app.

Example

from datetime import datetime
from flask import Flask
from flask_rangerequest import RangeRequest
from os import path

my_file = '/path/to/file'
app = Flask(__name__)
size = path.getsize(my_file)
with open(my_file, 'rb') as f:
    etag = RangeRequest.make_etag(f)
last_modified = datetime.utcnow()

@app.route('/', methods=('GET', 'POST'))
def index():
    return RangeRequest(open(my_file, 'rb'),
                        etag=etag,
                        last_modified=last_modified,
                        size=size).make_response()

if __name__ == '__main__':
    app.run(host='127.0.0.1', port=8080, debug=True)

License

This work is dual licensed under the MIT and Apache-2.0 licenses. See LICENSE-MIT and LICENSE-APACHE for details.

Package Rankings
Top 16.33% on Pypi.org
Badges
Extracted from project README
PyPI Version Documentation Status