Skip to content

[Hotfix 25.5]: added ReportContext to report namespace #1171

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
69 changes: 69 additions & 0 deletions flow360/plugins/report/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
"""Utilities for creating reports"""

from flow360.plugins.report.report import ReportTemplate
from flow360.plugins.report.report_context import ReportContext
from flow360.plugins.report.report_items import (
Chart2D,
Chart3D,
FixedRangeLimit,
ManualLimit,
NonlinearResiduals,
PatternCaption,
Settings,
SubsetLimit,
Summary,
Table,
)
from flow360.plugins.report.utils import (
Average,
DataItem,
Delta,
Expression,
GetAttribute,
Grouper,
Variable,
)
from flow360.plugins.report.uvf_shutter import (
BottomCamera,
Camera,
FrontCamera,
FrontLeftBottomCamera,
FrontLeftTopCamera,
LeftCamera,
RearCamera,
RearLeftTopCamera,
RearRightBottomCamera,
TopCamera,
)

__all__ = [
"Average",
"BottomCamera",
"Camera",
"Chart2D",
"Chart3D",
"DataItem",
"Delta",
"Expression",
"FixedRangeLimit",
"FrontCamera",
"FrontLeftBottomCamera",
"FrontLeftTopCamera",
"GetAttribute",
"Grouper",
"LeftCamera",
"ManualLimit",
"NonlinearResiduals",
"PatternCaption",
"RearCamera",
"RearLeftTopCamera",
"RearRightBottomCamera",
"ReportContext",
"ReportTemplate",
"Settings",
"SubsetLimit",
"Summary",
"Table",
"TopCamera",
"Variable",
]