|
__init__(self,
name='report',
title=None,
path=None,
author=None,
style="Normal",
fig_ext=None,
font='Helvetica',
pagesize=None)
Initialize report |
source code
|
|
|
|
|
|
|
xml(self,
line,
style=None)
Adding XML string to the report |
source code
|
|
|
text(self,
line,
**kwargs)
Add a text string to the report |
source code
|
|
|
write(self,
line,
**kwargs)
Just an alias for .text, so we could simply provide report
as a handler for verbose |
source code
|
|
|
figure(self,
fig=None,
name=None,
savefig_kwargs={},
**kwargs)
Add a figure to the report
:Parameters:
fig : None or string or `figure.Figure`
Figure to place into report
string : treat as a filename
Figure : stores it into a file under directory
and embedds into the report
None : takes the current figure
savefig_kwargs : dict
Additional keyword arguments to provide savefig with (e.g. |
source code
|
|
|
|
|
|
|
flowbreak(self)
Just a marker for the break of the flow |
source code
|
|
|
|
Inherited from object :
__delattr__ ,
__getattribute__ ,
__hash__ ,
__new__ ,
__reduce__ ,
__reduce_ex__ ,
__repr__ ,
__setattr__ ,
__str__
|