armi.bookkeeping.report.html module

HTML-formatted reports.

class armi.bookkeeping.report.html.HTMLFile(*args, **kwds)[source]

Bases: object

write(data)[source]
writeEscaped(value)[source]
class armi.bookkeeping.report.html.Tag(f, attrs=None)[source]

Bases: object

tag

alias of NotImplementedError

class armi.bookkeeping.report.html.Html(f, attrs=None)[source]

Bases: Tag

tag = 'html'
class armi.bookkeeping.report.html.Head(f, attrs=None)[source]

Bases: Tag

tag = 'head'
class armi.bookkeeping.report.html.Body(f, attrs=None)[source]

Bases: Tag

tag = 'body'
class armi.bookkeeping.report.html.Img(f, attrs=None)[source]

Bases: Tag

tag = 'img'
class armi.bookkeeping.report.html.B(f, attrs=None)[source]

Bases: Tag

tag = 'b'
class armi.bookkeeping.report.html.P(f, attrs=None)[source]

Bases: Tag

tag = 'p'
class armi.bookkeeping.report.html.A(f, attrs=None)[source]

Bases: Tag

tag = 'a'
class armi.bookkeeping.report.html.Title(f, attrs=None)[source]

Bases: Tag

tag = 'title'
class armi.bookkeeping.report.html.H1(f, attrs=None)[source]

Bases: Tag

tag = 'h1'
class armi.bookkeeping.report.html.H2(f, attrs=None)[source]

Bases: Tag

tag = 'h2'
class armi.bookkeeping.report.html.H3(f, attrs=None)[source]

Bases: Tag

tag = 'h3'
class armi.bookkeeping.report.html.H4(f, attrs=None)[source]

Bases: Tag

tag = 'h4'
class armi.bookkeeping.report.html.UL(f, attrs=None)[source]

Bases: Tag

tag = 'ul'
class armi.bookkeeping.report.html.LI(f, attrs=None)[source]

Bases: Tag

tag = 'li'
class armi.bookkeeping.report.html.Script(f, attrs=None)[source]

Bases: Tag

tag = 'script'
class armi.bookkeeping.report.html.Style(f, attrs=None)[source]

Bases: Tag

tag = 'style'
class armi.bookkeeping.report.html.Div(f, attrs=None)[source]

Bases: Tag

tag = 'div'
class armi.bookkeeping.report.html.Caption(f, attrs=None)[source]

Bases: Tag

tag = 'caption'
class armi.bookkeeping.report.html.Table(f, attrs=None)[source]

Bases: Tag

tag = 'table'
class armi.bookkeeping.report.html.TBody(f, attrs=None)[source]

Bases: Tag

tag = 'tbody'
class armi.bookkeeping.report.html.THead(f, attrs=None)[source]

Bases: Tag

tag = 'thead'
class armi.bookkeeping.report.html.TR(f, attrs=None)[source]

Bases: Tag

tag = 'tr'
class armi.bookkeeping.report.html.TH(f, attrs=None)[source]

Bases: Tag

tag = 'th'
class armi.bookkeeping.report.html.TD(f, attrs=None)[source]

Bases: Tag

tag = 'td'
class armi.bookkeeping.report.html.Span(f, attrs=None)[source]

Bases: Tag

tag = 'span'
class armi.bookkeeping.report.html.Footer(f, attrs=None)[source]

Bases: Tag

tag = 'footer'

Bases: Tag

tag = 'link'
armi.bookkeeping.report.html.encode64(file_path)[source]

Return the embedded HTML src attribute for an image in base64.

armi.bookkeeping.report.html.writeStandardReportTemplate(f, report, caseTitle='')[source]