Package cherrypy :: Package lib
[hide private]
[frames] | no frames]

Package lib

source code

CherryPy Library

Submodules [hide private]

Classes [hide private]
  _Builder
Functions [hide private]
 
modules(modulePath)
Load a module and retrieve a reference to that module.
source code
 
attributes(full_attribute_name)
Load a module and retrieve an attribute of that module.
source code
 
unrepr(s)
Return a Python object compiled from a string.
source code
 
file_generator(input, chunkSize=65536)
Yield the given input (a file object) in chunks (default 64k).
source code
 
file_generator_limited(fileobj, count, chunk_size=65536)
Yield the given file object in chunks, stopping after `count` bytes has been emitted.
source code
Function Details [hide private]

file_generator(input, chunkSize=65536)

source code 

Yield the given input (a file object) in chunks (default 64k). (Core)

file_generator_limited(fileobj, count, chunk_size=65536)

source code 

Yield the given file object in chunks, stopping after `count` bytes has been emitted. Default chunk size is 64kB. (Core)