API reference#
This is the API reference documentation for the pyansys-tools-report package
PyAnsys Tools Report package.
- class ansys.tools.report.Report(additional=None, ncol=3, text_width=80, sort=False, gpu=True, ansys_vars=None, ansys_libs=None)#
Generate a
scooby.Reportinstance.- Parameters:
- additional
list(ModuleType),list(str),optional List of packages or package names to add to output information. Defaults to
None.- ncol
int,optional Number of package-columns in html table; only has effect if
mode='HTML'ormode='html'. Defaults to 3.- text_width
int,optional The text width for non-HTML display modes. Defaults to 80.
- sortbool,
optional Alphabetically sort the packages. Defaults to
False.- gpubool,
optional Gather information about the GPU. Defaults to
Truebut if experiencing rendering issues, passFalseto safely generate a report.- ansys_vars
listofstr,optional List containing the Ansys environment variables to be reported. (e.g. [“MYVAR_1”, “MYVAR_2” …]). Defaults to
None.- ansys_libs
dict{strstr},optional Dictionary containing the Ansys libraries and versions to be reported. (e.g. {“MyLib” : “v1.2”, …}). Defaults to
None.
- additional