The example code is below. The Dispositors section is blank in the PDF report. No result.
`from stellium import ChartBuilder, ReportBuilder
from stellium.components import DignityComponent, MidpointCalculator,FixedStarsComponent
from stellium.engines.patterns import AspectPatternAnalyzer
chart = (
ChartBuilder.from_notable("Albert Einstein")
.with_aspects()
.add_component(DignityComponent())
.add_analyzer(AspectPatternAnalyzer())
.add_component(MidpointCalculator())
.add_component(FixedStarsComponent())
.calculate()
)
ReportBuilder().from_chart(chart).preset_full().render(format="pdf", file="Albert Einstein.pdf")`
`
The example code is below. The Dispositors section is blank in the PDF report. No result.
`from stellium import ChartBuilder, ReportBuilder
from stellium.components import DignityComponent, MidpointCalculator,FixedStarsComponent
from stellium.engines.patterns import AspectPatternAnalyzer
chart = (
ChartBuilder.from_notable("Albert Einstein")
.with_aspects()
.add_component(DignityComponent())
.add_analyzer(AspectPatternAnalyzer())
.add_component(MidpointCalculator())
.add_component(FixedStarsComponent())
.calculate()
)
ReportBuilder().from_chart(chart).preset_full().render(format="pdf", file="Albert Einstein.pdf")`
`