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.

Files changed (56) hide show
  1. kerykeion/__init__.py +32 -9
  2. kerykeion/aspects/__init__.py +2 -4
  3. kerykeion/aspects/aspects_factory.py +530 -0
  4. kerykeion/aspects/aspects_utils.py +75 -6
  5. kerykeion/astrological_subject_factory.py +380 -229
  6. kerykeion/backword.py +680 -0
  7. kerykeion/chart_data_factory.py +484 -0
  8. kerykeion/charts/{kerykeion_chart_svg.py → chart_drawer.py} +612 -439
  9. kerykeion/charts/charts_utils.py +135 -94
  10. kerykeion/charts/draw_planets.py +38 -28
  11. kerykeion/charts/templates/aspect_grid_only.xml +188 -17
  12. kerykeion/charts/templates/chart.xml +104 -28
  13. kerykeion/charts/templates/wheel_only.xml +195 -24
  14. kerykeion/charts/themes/classic.css +11 -0
  15. kerykeion/charts/themes/dark-high-contrast.css +11 -0
  16. kerykeion/charts/themes/dark.css +11 -0
  17. kerykeion/charts/themes/light.css +11 -0
  18. kerykeion/charts/themes/strawberry.css +10 -0
  19. kerykeion/composite_subject_factory.py +4 -4
  20. kerykeion/ephemeris_data_factory.py +12 -9
  21. kerykeion/house_comparison/__init__.py +0 -3
  22. kerykeion/house_comparison/house_comparison_factory.py +51 -18
  23. kerykeion/house_comparison/house_comparison_utils.py +37 -8
  24. kerykeion/planetary_return_factory.py +8 -4
  25. kerykeion/relationship_score_factory.py +5 -5
  26. kerykeion/report.py +748 -67
  27. kerykeion/{kr_types → schemas}/__init__.py +44 -4
  28. kerykeion/schemas/chart_template_model.py +340 -0
  29. kerykeion/{kr_types → schemas}/kr_literals.py +7 -3
  30. kerykeion/{kr_types → schemas}/kr_models.py +247 -21
  31. kerykeion/{kr_types → schemas}/settings_models.py +7 -7
  32. kerykeion/settings/config_constants.py +75 -8
  33. kerykeion/settings/kerykeion_settings.py +1 -1
  34. kerykeion/settings/kr.config.json +130 -40
  35. kerykeion/settings/legacy/legacy_celestial_points_settings.py +8 -8
  36. kerykeion/sweph/ast136/s136108s.se1 +0 -0
  37. kerykeion/sweph/ast136/s136199s.se1 +0 -0
  38. kerykeion/sweph/ast136/s136472s.se1 +0 -0
  39. kerykeion/sweph/ast28/se28978s.se1 +0 -0
  40. kerykeion/sweph/ast50/se50000s.se1 +0 -0
  41. kerykeion/sweph/ast90/se90377s.se1 +0 -0
  42. kerykeion/sweph/ast90/se90482s.se1 +0 -0
  43. kerykeion/sweph/sefstars.txt +1602 -0
  44. kerykeion/transits_time_range_factory.py +11 -11
  45. kerykeion/utilities.py +61 -38
  46. kerykeion-5.0.0b1.dist-info/METADATA +1055 -0
  47. kerykeion-5.0.0b1.dist-info/RECORD +58 -0
  48. kerykeion/aspects/natal_aspects_factory.py +0 -235
  49. kerykeion/aspects/synastry_aspects_factory.py +0 -275
  50. kerykeion/house_comparison/house_comparison_models.py +0 -38
  51. kerykeion/kr_types/chart_types.py +0 -106
  52. kerykeion-5.0.0a11.dist-info/METADATA +0 -641
  53. kerykeion-5.0.0a11.dist-info/RECORD +0 -50
  54. /kerykeion/{kr_types → schemas}/kerykeion_exception.py +0 -0
  55. {kerykeion-5.0.0a11.dist-info → kerykeion-5.0.0b1.dist-info}/WHEEL +0 -0
  56. {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