Package peppy :: Package lib :: Module bufferedreader
[frames] | no frames]

Module bufferedreader

Buffered reading utilities.

BufferedReader allows a streamed file to be accessed like a random-access file by buffering the first n bytes in memory.

Classes
  BufferedReplacementReader
Buffered file-like object wrapper that replaces the first n bytes of the file with the specified buffer.
  BufferedReader
Buffered file-like object wrapper that reads the first n bytes of the file so that it can be re-read using the standard seek/tell idioms.
  WindowReader
File-like object wrapper that restricts file read operations to a window region within the file.