Class t.p.z.ZipArchive(ZipPath):

Part of twisted.python.zippath View Source View In Hierarchy

I am a FilePath-like object which can wrap a zip archive as if it were a directory.
Method __init__ Create a ZipArchive, treating the archive at archivePathname as a zip file.
Method child Create a ZipPath pointing at a path within the archive.
Method exists Returns true if the underlying archive exists.

Inherited from ZipPath:

Method __cmp__ Undocumented
Method __repr__ Undocumented
Method parent Undocumented
Method sibling Undocumented
Method isdir Undocumented
Method isfile Undocumented
Method islink Undocumented
Method listdir Undocumented
Method splitext Undocumented
Method basename Undocumented
Method dirname Undocumented
Method open Undocumented
Method restat Undocumented

Inherited from _PathHelper (via ZipPath):

Method getContent Undocumented
Method children Undocumented
Method walk Yield myself, then each of my children, and each of those children's
Method segmentsFrom Return a list of segments between a child and its ancestor.
def __init__(self, archivePathname): (source)
Create a ZipArchive, treating the archive at archivePathname as a zip file.
ParametersarchivePathnamea str, naming a path in the filesystem.
def child(self, path): (source)
Create a ZipPath pointing at a path within the archive.
Parameterspatha str with no path separators in it, either '/' or the system path separator, if it's different.
def exists(self): (source)
Returns true if the underlying archive exists.
API Documentation for twisted, generated by pydoctor.