module documentation
(source)

Static resources for twisted.web.
Class ​ASISProcessor Serve files exactly as responses without generating a status-line or any headers. Inspired by Apache's mod_asis.
Class ​Data This is a static, in-memory resource.
Class ​Directory​Lister Print the content of a directory.
Class ​File No summary
Class ​Multiple​Range​Static​Producer A StaticProducer that writes several chunks of a file to the request.
Class ​No​Range​Static​Producer A StaticProducer that writes the entire file to the request.
Class ​Redirect Undocumented
Class ​Registry I am a Componentized object that will be made available to internal Twisted file-based dynamic web content such as .rpy and .epy scripts.
Class ​Single​Range​Static​Producer A StaticProducer that writes a single chunk of a file to the request.
Class ​Static​Producer Superclass for classes that implement the business of producing.
Function add​Slash Add a trailing slash to request's URI. Deprecated, do not use.
Function format​File​Size Format the given file size in bytes to human readable format.
Function get​Type​And​Encoding Undocumented
Function is​Dangerous Undocumented
Function load​Mime​Types Produces a mapping of extensions (with leading dot) to MIME types.
Variable dangerous​Path​Error Undocumented
Function _add​Slash Add a trailing slash to request's URI.
def addSlash(request): (source)
Add a trailing slash to request's URI. Deprecated, do not use.
def formatFileSize(size): (source)
Format the given file size in bytes to human readable format.
def getTypeAndEncoding(filename, types, encodings, defaultType): (source)

Undocumented

def isDangerous(path): (source)

Undocumented

def loadMimeTypes(mimetype_locations=None, init=mimetypes.init): (source)

Produces a mapping of extensions (with leading dot) to MIME types.

It does this by calling the init function of the mimetypes module. This will have the side effect of modifying the global MIME types cache in that module.

Multiple file locations containing mime-types can be passed as a list. The files will be sourced in that order, overriding mime-types from the files sourced beforehand, but only if a new entry explicitly overrides the current entry.

Parameters
mimetype​_locations:iterable of paths or NoneOptional. List of paths to mime.types style files that should be used.
init:callableThe init function to call. Defaults to the global init function of the mimetypes module. For internal use (testing) only.
dangerousPathError = (source)

Undocumented

def _addSlash(request): (source)
Add a trailing slash to request's URI.
Parameters
request:An object conforming to twisted.web.iweb.IRequestThe incoming request to add the ending slash to.
Returns
bytesA URI with a trailing slash, with query and fragment preserved.