kerykeion 5.0.0a11__py3-none-any.whl → 5.0.0b1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kerykeion might be problematic. Click here for more details.
- kerykeion/__init__.py +32 -9
- kerykeion/aspects/__init__.py +2 -4
- kerykeion/aspects/aspects_factory.py +530 -0
- kerykeion/aspects/aspects_utils.py +75 -6
- kerykeion/astrological_subject_factory.py +380 -229
- kerykeion/backword.py +680 -0
- kerykeion/chart_data_factory.py +484 -0
- kerykeion/charts/{kerykeion_chart_svg.py → chart_drawer.py} +612 -439
- kerykeion/charts/charts_utils.py +135 -94
- kerykeion/charts/draw_planets.py +38 -28
- kerykeion/charts/templates/aspect_grid_only.xml +188 -17
- kerykeion/charts/templates/chart.xml +104 -28
- kerykeion/charts/templates/wheel_only.xml +195 -24
- kerykeion/charts/themes/classic.css +11 -0
- kerykeion/charts/themes/dark-high-contrast.css +11 -0
- kerykeion/charts/themes/dark.css +11 -0
- kerykeion/charts/themes/light.css +11 -0
- kerykeion/charts/themes/strawberry.css +10 -0
- kerykeion/composite_subject_factory.py +4 -4
- kerykeion/ephemeris_data_factory.py +12 -9
- kerykeion/house_comparison/__init__.py +0 -3
- kerykeion/house_comparison/house_comparison_factory.py +51 -18
- kerykeion/house_comparison/house_comparison_utils.py +37 -8
- kerykeion/planetary_return_factory.py +8 -4
- kerykeion/relationship_score_factory.py +5 -5
- kerykeion/report.py +748 -67
- kerykeion/{kr_types → schemas}/__init__.py +44 -4
- kerykeion/schemas/chart_template_model.py +340 -0
- kerykeion/{kr_types → schemas}/kr_literals.py +7 -3
- kerykeion/{kr_types → schemas}/kr_models.py +247 -21
- kerykeion/{kr_types → schemas}/settings_models.py +7 -7
- kerykeion/settings/config_constants.py +75 -8
- kerykeion/settings/kerykeion_settings.py +1 -1
- kerykeion/settings/kr.config.json +130 -40
- kerykeion/settings/legacy/legacy_celestial_points_settings.py +8 -8
- kerykeion/sweph/ast136/s136108s.se1 +0 -0
- kerykeion/sweph/ast136/s136199s.se1 +0 -0
- kerykeion/sweph/ast136/s136472s.se1 +0 -0
- kerykeion/sweph/ast28/se28978s.se1 +0 -0
- kerykeion/sweph/ast50/se50000s.se1 +0 -0
- kerykeion/sweph/ast90/se90377s.se1 +0 -0
- kerykeion/sweph/ast90/se90482s.se1 +0 -0
- kerykeion/sweph/sefstars.txt +1602 -0
- kerykeion/transits_time_range_factory.py +11 -11
- kerykeion/utilities.py +61 -38
- kerykeion-5.0.0b1.dist-info/METADATA +1055 -0
- kerykeion-5.0.0b1.dist-info/RECORD +58 -0
- kerykeion/aspects/natal_aspects_factory.py +0 -235
- kerykeion/aspects/synastry_aspects_factory.py +0 -275
- kerykeion/house_comparison/house_comparison_models.py +0 -38
- kerykeion/kr_types/chart_types.py +0 -106
- kerykeion-5.0.0a11.dist-info/METADATA +0 -641
- kerykeion-5.0.0a11.dist-info/RECORD +0 -50
- /kerykeion/{kr_types → schemas}/kerykeion_exception.py +0 -0
- {kerykeion-5.0.0a11.dist-info → kerykeion-5.0.0b1.dist-info}/WHEEL +0 -0
- {kerykeion-5.0.0a11.dist-info → kerykeion-5.0.0b1.dist-info}/licenses/LICENSE +0 -0
|
@@ -1,106 +0,0 @@
|
|
|
1
|
-
from typing_extensions import TypedDict
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
class ChartTemplateDictionary(TypedDict):
|
|
5
|
-
transitRing: str
|
|
6
|
-
degreeRing: str
|
|
7
|
-
background_circle: str
|
|
8
|
-
first_circle: str
|
|
9
|
-
second_circle: str
|
|
10
|
-
third_circle: str
|
|
11
|
-
makeAspects: str
|
|
12
|
-
makeAspectGrid: str
|
|
13
|
-
makeDoubleChartAspectList: str
|
|
14
|
-
makeHouseComparisonGrid: str
|
|
15
|
-
chart_height: float
|
|
16
|
-
chart_width: float
|
|
17
|
-
viewbox: str
|
|
18
|
-
stringTitle: str
|
|
19
|
-
top_left_0: str
|
|
20
|
-
bottom_left_0: str
|
|
21
|
-
bottom_left_1: str
|
|
22
|
-
bottom_left_2: str
|
|
23
|
-
bottom_left_3: str
|
|
24
|
-
bottom_left_4: str
|
|
25
|
-
top_left_1: str
|
|
26
|
-
top_left_2: str
|
|
27
|
-
top_left_3: str
|
|
28
|
-
top_left_4: str
|
|
29
|
-
top_left_5: str
|
|
30
|
-
|
|
31
|
-
# Font color
|
|
32
|
-
paper_color_0: str
|
|
33
|
-
# Background color of the chart
|
|
34
|
-
paper_color_1: str
|
|
35
|
-
# Dynamic background color (can be transparent or theme color)
|
|
36
|
-
background_color: str
|
|
37
|
-
|
|
38
|
-
# Planets colors, from 0 to 16 (0 is the Sun)
|
|
39
|
-
planets_color_0: str
|
|
40
|
-
planets_color_1: str
|
|
41
|
-
planets_color_2: str
|
|
42
|
-
planets_color_3: str
|
|
43
|
-
planets_color_4: str
|
|
44
|
-
planets_color_5: str
|
|
45
|
-
planets_color_6: str
|
|
46
|
-
planets_color_7: str
|
|
47
|
-
planets_color_8: str
|
|
48
|
-
planets_color_9: str
|
|
49
|
-
planets_color_10: str
|
|
50
|
-
planets_color_11: str
|
|
51
|
-
planets_color_12: str
|
|
52
|
-
planets_color_13: str
|
|
53
|
-
planets_color_14: str
|
|
54
|
-
planets_color_15: str
|
|
55
|
-
planets_color_16: str
|
|
56
|
-
|
|
57
|
-
# Zodiac colors, from 0 to 11 (0 is Aries)
|
|
58
|
-
zodiac_color_0: str
|
|
59
|
-
zodiac_color_1: str
|
|
60
|
-
zodiac_color_2: str
|
|
61
|
-
zodiac_color_3: str
|
|
62
|
-
zodiac_color_4: str
|
|
63
|
-
zodiac_color_5: str
|
|
64
|
-
zodiac_color_6: str
|
|
65
|
-
zodiac_color_7: str
|
|
66
|
-
zodiac_color_8: str
|
|
67
|
-
zodiac_color_9: str
|
|
68
|
-
zodiac_color_10: str
|
|
69
|
-
zodiac_color_11: str
|
|
70
|
-
|
|
71
|
-
# Aspects colors, from 0 to 9 (0 is conjunction)
|
|
72
|
-
orb_color_0: str
|
|
73
|
-
orb_color_30: str
|
|
74
|
-
orb_color_45: str
|
|
75
|
-
orb_color_60: str
|
|
76
|
-
orb_color_72: str
|
|
77
|
-
orb_color_90: str
|
|
78
|
-
orb_color_120: str
|
|
79
|
-
orb_color_135: str
|
|
80
|
-
orb_color_144: str
|
|
81
|
-
orb_color_150: str
|
|
82
|
-
orb_color_180: str
|
|
83
|
-
|
|
84
|
-
cfgTranslate: str
|
|
85
|
-
makeZodiac: str
|
|
86
|
-
makeHouses: str
|
|
87
|
-
makePlanets: str
|
|
88
|
-
makeMainPlanetGrid: str
|
|
89
|
-
makeSecondaryPlanetGrid: str
|
|
90
|
-
makeMainHousesGrid: str
|
|
91
|
-
makeSecondaryHousesGrid: str
|
|
92
|
-
|
|
93
|
-
color_style_tag: str
|
|
94
|
-
|
|
95
|
-
element_string: str
|
|
96
|
-
fire_string: str
|
|
97
|
-
earth_string: str
|
|
98
|
-
air_string: str
|
|
99
|
-
water_string: str
|
|
100
|
-
|
|
101
|
-
quality_string: str
|
|
102
|
-
cardinal_string: str
|
|
103
|
-
fixed_string: str
|
|
104
|
-
mutable_string: str
|
|
105
|
-
|
|
106
|
-
makeLunarPhase: str
|