kerykeion.kr_types.chart_types
1from typing_extensions import TypedDict 2 3 4class ChartTemplateDictionary(TypedDict): 5 transitRing: str 6 degreeRing: str 7 first_circle: str 8 second_circle: str 9 third_circle: str 10 makeAspects: str 11 makeAspectGrid: str 12 chart_height: float 13 chart_width: float 14 viewbox: str 15 stringTitle: str 16 top_left_0: str 17 bottom_left_0: str 18 bottom_left_1: str 19 bottom_left_2: str 20 bottom_left_3: str 21 bottom_left_4: str 22 top_left_1: str 23 top_left_2: str 24 top_left_3: str 25 top_left_4: str 26 top_left_5: str 27 28 # Font color 29 paper_color_0: str 30 # Background color of the chart 31 paper_color_1: str 32 33 # Planets colors, from 0 to 16 (0 is the Sun) 34 planets_color_0: str 35 planets_color_1: str 36 planets_color_2: str 37 planets_color_3: str 38 planets_color_4: str 39 planets_color_5: str 40 planets_color_6: str 41 planets_color_7: str 42 planets_color_8: str 43 planets_color_9: str 44 planets_color_10: str 45 planets_color_11: str 46 planets_color_12: str 47 planets_color_13: str 48 planets_color_14: str 49 planets_color_15: str 50 planets_color_16: str 51 52 # Zodiac colors, from 0 to 11 (0 is Aries) 53 zodiac_color_0: str 54 zodiac_color_1: str 55 zodiac_color_2: str 56 zodiac_color_3: str 57 zodiac_color_4: str 58 zodiac_color_5: str 59 zodiac_color_6: str 60 zodiac_color_7: str 61 zodiac_color_8: str 62 zodiac_color_9: str 63 zodiac_color_10: str 64 zodiac_color_11: str 65 66 # Aspects colors, from 0 to 9 (0 is conjunction) 67 orb_color_0: str 68 orb_color_30: str 69 orb_color_45: str 70 orb_color_60: str 71 orb_color_72: str 72 orb_color_90: str 73 orb_color_120: str 74 orb_color_135: str 75 orb_color_144: str 76 orb_color_150: str 77 orb_color_180: str 78 79 cfgTranslate: str 80 makeZodiac: str 81 makeHouses: str 82 makePlanets: str 83 makePlanetGrid: str 84 makeHousesGrid: str 85 86 color_style_tag: str 87 88 fire_string: str 89 earth_string: str 90 air_string: str 91 water_string: str 92 93 lunar_phase_rotate: str 94 lunar_phase_circle_center_x: str 95 lunar_phase_circle_radius: str
class
ChartTemplateDictionary(typing_extensions.TypedDict):
5class ChartTemplateDictionary(TypedDict): 6 transitRing: str 7 degreeRing: str 8 first_circle: str 9 second_circle: str 10 third_circle: str 11 makeAspects: str 12 makeAspectGrid: str 13 chart_height: float 14 chart_width: float 15 viewbox: str 16 stringTitle: str 17 top_left_0: str 18 bottom_left_0: str 19 bottom_left_1: str 20 bottom_left_2: str 21 bottom_left_3: str 22 bottom_left_4: str 23 top_left_1: str 24 top_left_2: str 25 top_left_3: str 26 top_left_4: str 27 top_left_5: str 28 29 # Font color 30 paper_color_0: str 31 # Background color of the chart 32 paper_color_1: str 33 34 # Planets colors, from 0 to 16 (0 is the Sun) 35 planets_color_0: str 36 planets_color_1: str 37 planets_color_2: str 38 planets_color_3: str 39 planets_color_4: str 40 planets_color_5: str 41 planets_color_6: str 42 planets_color_7: str 43 planets_color_8: str 44 planets_color_9: str 45 planets_color_10: str 46 planets_color_11: str 47 planets_color_12: str 48 planets_color_13: str 49 planets_color_14: str 50 planets_color_15: str 51 planets_color_16: str 52 53 # Zodiac colors, from 0 to 11 (0 is Aries) 54 zodiac_color_0: str 55 zodiac_color_1: str 56 zodiac_color_2: str 57 zodiac_color_3: str 58 zodiac_color_4: str 59 zodiac_color_5: str 60 zodiac_color_6: str 61 zodiac_color_7: str 62 zodiac_color_8: str 63 zodiac_color_9: str 64 zodiac_color_10: str 65 zodiac_color_11: str 66 67 # Aspects colors, from 0 to 9 (0 is conjunction) 68 orb_color_0: str 69 orb_color_30: str 70 orb_color_45: str 71 orb_color_60: str 72 orb_color_72: str 73 orb_color_90: str 74 orb_color_120: str 75 orb_color_135: str 76 orb_color_144: str 77 orb_color_150: str 78 orb_color_180: str 79 80 cfgTranslate: str 81 makeZodiac: str 82 makeHouses: str 83 makePlanets: str 84 makePlanetGrid: str 85 makeHousesGrid: str 86 87 color_style_tag: str 88 89 fire_string: str 90 earth_string: str 91 air_string: str 92 water_string: str 93 94 lunar_phase_rotate: str 95 lunar_phase_circle_center_x: str 96 lunar_phase_circle_radius: str
Inherited Members
- builtins.dict
- get
- setdefault
- pop
- popitem
- keys
- items
- values
- update
- fromkeys
- clear
- copy