kerykeion.kr_types.chart_types

 1from typing import TypedDict
 2
 3
 4class ChartTemplateDictionary(TypedDict):
 5    transitRing: str
 6    degreeRing: str
 7    first_circle: str
 8    second_circle: str
 9    c3: str
10    c3style: str
11    makeAspects: str
12    makeAspectGrid: str
13    makePatterns: str
14    chart_height: float
15    chart_width: float
16    circleX: str
17    circleY: str
18    svgWidth: str
19    svgHeight: str
20    viewbox: str
21    stringTitle: str
22    stringName: str
23    bottomLeft0: str
24    bottomLeft1: str
25    bottomLeft2: str
26    bottomLeft3: str
27    bottomLeft4: str
28    lunar_phase_fg: str
29    lunar_phase_bg: str
30    lunar_phase_cx: int
31    lunar_phase_r: int
32    lunar_phase_outline: str
33    lunar_phase_rotate: float
34    stringLocation: str
35    stringDateTime: str
36    stringLat: str
37    stringLon: str
38    stringPosition: str
39
40    # Font color
41    paper_color_0: str
42    # Background color of the chart
43    paper_color_1: str
44    
45    # Planets colors, from 1 to 15 (0 is the Sun)
46    planets_color_0: str
47    planets_color_1: str
48    planets_color_2: str
49    planets_color_3: str
50    planets_color_4: str
51    planets_color_5: str
52    planets_color_6: str
53    planets_color_7: str
54    planets_color_8: str
55    planets_color_9: str
56    planets_color_10: str
57    planets_color_11: str
58    planets_color_12: str
59    planets_color_13: str
60    planets_color_14: str
61    planets_color_15: str
62    
63    # Zodiac colors, from 0 to 11 (0 is Aries)
64    zodiac_color_0: str
65    zodiac_color_1: str
66    zodiac_color_2: str
67    zodiac_color_3: str
68    zodiac_color_4: str
69    zodiac_color_5: str
70    zodiac_color_6: str
71    zodiac_color_7: str
72    zodiac_color_8: str
73    zodiac_color_9: str
74    zodiac_color_10: str
75    zodiac_color_11: str
76
77    # Aspects colors, from 0 to 9 (0 is conjunction)
78    orb_color_0: str
79    orb_color_30: str
80    orb_color_45: str
81    orb_color_60: str
82    orb_color_72: str
83    orb_color_90: str
84    orb_color_120: str
85    orb_color_135: str
86    orb_color_144: str
87    orb_color_150: str
88    orb_color_180: str
89
90    cfgZoom: str
91    cfgRotate: str
92    cfgTranslate: str
93    makeZodiac: str
94    makeHouses: str
95    makePlanets: str
96    elements_percentages: str
97    makePlanetGrid: str
98    makeHousesGrid: str
class ChartTemplateDictionary(typing.TypedDict):
 5class ChartTemplateDictionary(TypedDict):
 6    transitRing: str
 7    degreeRing: str
 8    first_circle: str
 9    second_circle: str
10    c3: str
11    c3style: str
12    makeAspects: str
13    makeAspectGrid: str
14    makePatterns: str
15    chart_height: float
16    chart_width: float
17    circleX: str
18    circleY: str
19    svgWidth: str
20    svgHeight: str
21    viewbox: str
22    stringTitle: str
23    stringName: str
24    bottomLeft0: str
25    bottomLeft1: str
26    bottomLeft2: str
27    bottomLeft3: str
28    bottomLeft4: str
29    lunar_phase_fg: str
30    lunar_phase_bg: str
31    lunar_phase_cx: int
32    lunar_phase_r: int
33    lunar_phase_outline: str
34    lunar_phase_rotate: float
35    stringLocation: str
36    stringDateTime: str
37    stringLat: str
38    stringLon: str
39    stringPosition: str
40
41    # Font color
42    paper_color_0: str
43    # Background color of the chart
44    paper_color_1: str
45    
46    # Planets colors, from 1 to 15 (0 is the Sun)
47    planets_color_0: str
48    planets_color_1: str
49    planets_color_2: str
50    planets_color_3: str
51    planets_color_4: str
52    planets_color_5: str
53    planets_color_6: str
54    planets_color_7: str
55    planets_color_8: str
56    planets_color_9: str
57    planets_color_10: str
58    planets_color_11: str
59    planets_color_12: str
60    planets_color_13: str
61    planets_color_14: str
62    planets_color_15: str
63    
64    # Zodiac colors, from 0 to 11 (0 is Aries)
65    zodiac_color_0: str
66    zodiac_color_1: str
67    zodiac_color_2: str
68    zodiac_color_3: str
69    zodiac_color_4: str
70    zodiac_color_5: str
71    zodiac_color_6: str
72    zodiac_color_7: str
73    zodiac_color_8: str
74    zodiac_color_9: str
75    zodiac_color_10: str
76    zodiac_color_11: str
77
78    # Aspects colors, from 0 to 9 (0 is conjunction)
79    orb_color_0: str
80    orb_color_30: str
81    orb_color_45: str
82    orb_color_60: str
83    orb_color_72: str
84    orb_color_90: str
85    orb_color_120: str
86    orb_color_135: str
87    orb_color_144: str
88    orb_color_150: str
89    orb_color_180: str
90
91    cfgZoom: str
92    cfgRotate: str
93    cfgTranslate: str
94    makeZodiac: str
95    makeHouses: str
96    makePlanets: str
97    elements_percentages: str
98    makePlanetGrid: str
99    makeHousesGrid: str
transitRing: str
degreeRing: str
first_circle: str
second_circle: str
c3: str
c3style: str
makeAspects: str
makeAspectGrid: str
makePatterns: str
chart_height: float
chart_width: float
circleX: str
circleY: str
svgWidth: str
svgHeight: str
viewbox: str
stringTitle: str
stringName: str
bottomLeft0: str
bottomLeft1: str
bottomLeft2: str
bottomLeft3: str
bottomLeft4: str
lunar_phase_fg: str
lunar_phase_bg: str
lunar_phase_cx: int
lunar_phase_r: int
lunar_phase_outline: str
lunar_phase_rotate: float
stringLocation: str
stringDateTime: str
stringLat: str
stringLon: str
stringPosition: str
paper_color_0: str
paper_color_1: str
planets_color_0: str
planets_color_1: str
planets_color_2: str
planets_color_3: str
planets_color_4: str
planets_color_5: str
planets_color_6: str
planets_color_7: str
planets_color_8: str
planets_color_9: str
planets_color_10: str
planets_color_11: str
planets_color_12: str
planets_color_13: str
planets_color_14: str
planets_color_15: str
zodiac_color_0: str
zodiac_color_1: str
zodiac_color_2: str
zodiac_color_3: str
zodiac_color_4: str
zodiac_color_5: str
zodiac_color_6: str
zodiac_color_7: str
zodiac_color_8: str
zodiac_color_9: str
zodiac_color_10: str
zodiac_color_11: str
orb_color_0: str
orb_color_30: str
orb_color_45: str
orb_color_60: str
orb_color_72: str
orb_color_90: str
orb_color_120: str
orb_color_135: str
orb_color_144: str
orb_color_150: str
orb_color_180: str
cfgZoom: str
cfgRotate: str
cfgTranslate: str
makeZodiac: str
makeHouses: str
makePlanets: str
elements_percentages: str
makePlanetGrid: str
makeHousesGrid: str