class SharedDataMiddleware:
A WSGI middleware which provides static content for development environments or simple server setups. Its usage is quite simple:
import os from werkzeug.middleware.shared_data import SharedDataMiddleware app = SharedDataMiddleware(app, { '/shared': os.path.join(os.path.dirname(__file__), 'shared') })
The contents of the folder ./shared will now be available on http://example.com/shared/. This is pretty useful during development because a standalone media server is not required. Files can also be mounted on the root folder and still continue to use the application because the shared data middleware forwards all unhandled requests to the application, even if the requests are below one of the shared folders.
If pkg_resources
is available you can also tell the middleware to serve
files from package data:
app = SharedDataMiddleware(app, { '/static': ('myapplication', 'static') })
This will then serve the static folder in the myapplication
Python package.
The optional disallow
parameter can be a list of ~fnmatch.fnmatch
rules for files that are not accessible from the web. If cache
is set to
False
no caching headers are sent.
Currently the middleware does not support non-ASCII filenames. If the encoding on the file system happens to match the encoding of the URI it may work but this could also be by accident. We strongly suggest using ASCII only file names for static files.
The middleware will guess the mimetype using the Python mimetype
module. If it's unable to figure out the charset it will fall back
to fallback_mimetype
.
Parameters | |
app | the application to wrap. If you don't want to wrap an
application you can pass it NotFound . |
exports | a list or dict of exported files and folders. |
disallow | a list of ~fnmatch.fnmatch rules. |
cache | enable or disable caching headers. |
cache_timeout | the cache timeout in seconds for the headers. |
fallback_mimetype | The fallback mimetype for unknown files. |
Method | __call__ |
Undocumented |
Method | __init__ |
Undocumented |
Method | generate_etag |
Undocumented |
Method | get_directory_loader |
Undocumented |
Method | get_file_loader |
Undocumented |
Method | get_package_loader |
Undocumented |
Method | is_allowed |
Subclasses can override this method to disallow the access to certain files. However by providing disallow in the constructor this method is overwritten. |
Instance Variable | app |
Undocumented |
Instance Variable | cache |
Undocumented |
Instance Variable | cache_timeout |
Undocumented |
Instance Variable | exports |
Undocumented |
Instance Variable | fallback_mimetype |
Undocumented |
Method | _opener |
Undocumented |
Undocumented
Parameters | |
environ:WSGIEnvironment | Undocumented |
start_response:StartResponse | Undocumented |
Returns | |
t.Iterable[ | Undocumented |
Undocumented
Parameters | |
app:WSGIApplication | Undocumented |
exports:t.Union[ | Undocumented |
disallow:None | Undocumented |
cache:bool | Undocumented |
cache_timeout:int | Undocumented |
fallback_mimetype:str | Undocumented |
Undocumented
Parameters | |
mtime:datetime | Undocumented |
file_size:int | Undocumented |
real_filename:str | Undocumented |
Returns | |
str | Undocumented |
Undocumented
Parameters | |
directory:str | Undocumented |
Returns | |
_TLoader | Undocumented |
Undocumented
Parameters | |
filename:str | Undocumented |
Returns | |
_TLoader | Undocumented |
Undocumented
Parameters | |
package:str | Undocumented |
package_path:str | Undocumented |
Returns | |
_TLoader | Undocumented |
disallow
in the constructor
this method is overwritten.Parameters | |
filename:str | Undocumented |
Returns | |
bool | Undocumented |
Undocumented
Parameters | |
filename:str | Undocumented |
Returns | |
_TOpener | Undocumented |