class documentation

class IWriter(Protocol):

Known subclasses: pydoctor.templatewriter.TemplateWriter, pydoctor.test.InMemoryWriter

View In Hierarchy

Interface class for pydoctor output writer.
Method __init__ Undocumented
Method prep​Output​Directory Called first.
Method write​Individual​Files Called last.
Method write​Summary​Pages Called second.
def __init__(self, build_directory, template_lookup):

Undocumented

Parameters
build​_directory:PathUndocumented
template​_lookup:TemplateLookupUndocumented
def prepOutputDirectory(self):
def writeIndividualFiles(self, obs):
Called last.
Parameters
obs:Iterable[Documentable]Undocumented
def writeSummaryPages(self, system):
Called second.
Parameters
system:SystemUndocumented