kerykeion 5.0.0a7__py3-none-any.whl → 5.0.0a9__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/charts/charts_utils.py +15 -0
- kerykeion/charts/kerykeion_chart_svg.py +42 -0
- kerykeion/charts/templates/aspect_grid_only.xml +2 -4
- kerykeion/charts/templates/chart.xml +8 -4
- kerykeion/charts/templates/wheel_only.xml +8 -3
- kerykeion/kr_types/chart_types.py +3 -0
- kerykeion/kr_types/kr_models.py +23 -12
- {kerykeion-5.0.0a7.dist-info → kerykeion-5.0.0a9.dist-info}/METADATA +17 -22
- {kerykeion-5.0.0a7.dist-info → kerykeion-5.0.0a9.dist-info}/RECORD +22 -22
- {kerykeion-5.0.0a7.dist-info → kerykeion-5.0.0a9.dist-info}/WHEEL +1 -1
- kerykeion-5.0.0a9.dist-info/entry_points.txt +2 -0
- kerykeion-5.0.0a7.dist-info/entry_points.txt +0 -3
- {kerykeion-5.0.0a7.dist-info → kerykeion-5.0.0a9.dist-info/licenses}/LICENSE +0 -0
kerykeion/charts/charts_utils.py
CHANGED
|
@@ -430,6 +430,21 @@ def draw_first_circle(
|
|
|
430
430
|
)
|
|
431
431
|
|
|
432
432
|
|
|
433
|
+
def draw_background_circle(r: Union[int, float], stroke_color: str, fill_color: str) -> str:
|
|
434
|
+
"""
|
|
435
|
+
Draws the background circle.
|
|
436
|
+
|
|
437
|
+
Args:
|
|
438
|
+
- r (Union[int, float]): The value of r.
|
|
439
|
+
- stroke_color (str): The color of the stroke.
|
|
440
|
+
- fill_color (str): The color of the fill.
|
|
441
|
+
|
|
442
|
+
Returns:
|
|
443
|
+
str: The SVG path of the background circle.
|
|
444
|
+
"""
|
|
445
|
+
return f'<circle cx="{r}" cy="{r}" r="{r}" style="fill: {fill_color}; stroke: {stroke_color}; stroke-width: 1px;" />'
|
|
446
|
+
|
|
447
|
+
|
|
433
448
|
def draw_second_circle(
|
|
434
449
|
r: Union[int, float], stroke_color: str, fill_color: str, chart_type: ChartType, c2: Union[int, float, None] = None
|
|
435
450
|
) -> str:
|
|
@@ -42,6 +42,7 @@ from kerykeion.charts.charts_utils import (
|
|
|
42
42
|
draw_transit_ring_degree_steps,
|
|
43
43
|
draw_degree_ring,
|
|
44
44
|
draw_transit_ring,
|
|
45
|
+
draw_background_circle,
|
|
45
46
|
draw_first_circle,
|
|
46
47
|
draw_house_comparison_grid,
|
|
47
48
|
draw_second_circle,
|
|
@@ -176,6 +177,7 @@ class KerykeionChartSVG:
|
|
|
176
177
|
chart_language: KerykeionChartLanguage
|
|
177
178
|
active_points: List[AstrologicalPoint]
|
|
178
179
|
active_aspects: List[ActiveAspect]
|
|
180
|
+
transparent_background: bool
|
|
179
181
|
|
|
180
182
|
# Internal properties
|
|
181
183
|
fire: float
|
|
@@ -210,6 +212,7 @@ class KerykeionChartSVG:
|
|
|
210
212
|
active_points: Optional[list[AstrologicalPoint]] = None,
|
|
211
213
|
active_aspects: list[ActiveAspect]= DEFAULT_ACTIVE_ASPECTS,
|
|
212
214
|
*,
|
|
215
|
+
transparent_background: bool = False,
|
|
213
216
|
colors_settings: dict = DEFAULT_CHART_COLORS,
|
|
214
217
|
celestial_points_settings: list[dict] = DEFAULT_CELESTIAL_POINTS_SETTINGS,
|
|
215
218
|
aspects_settings: list[dict] = DEFAULT_CHART_ASPECTS_SETTINGS,
|
|
@@ -238,6 +241,8 @@ class KerykeionChartSVG:
|
|
|
238
241
|
Celestial points to include in the chart visualization.
|
|
239
242
|
active_aspects (List[ActiveAspect], optional):
|
|
240
243
|
Aspects to calculate, each defined by name and orb.
|
|
244
|
+
transparent_background (bool, optional):
|
|
245
|
+
Whether to use a transparent background instead of the theme color. Defaults to False.
|
|
241
246
|
"""
|
|
242
247
|
# --------------------
|
|
243
248
|
# COMMON INITIALIZATION
|
|
@@ -248,6 +253,7 @@ class KerykeionChartSVG:
|
|
|
248
253
|
self.active_aspects = active_aspects
|
|
249
254
|
self.chart_type = chart_type
|
|
250
255
|
self.double_chart_aspect_grid_type = double_chart_aspect_grid_type
|
|
256
|
+
self.transparent_background = transparent_background
|
|
251
257
|
self.chart_colors_settings = colors_settings
|
|
252
258
|
self.planets_settings = celestial_points_settings
|
|
253
259
|
self.aspects_settings = aspects_settings
|
|
@@ -708,6 +714,12 @@ class KerykeionChartSVG:
|
|
|
708
714
|
template_dict["paper_color_0"] = self.chart_colors_settings["paper_0"]
|
|
709
715
|
template_dict["paper_color_1"] = self.chart_colors_settings["paper_1"]
|
|
710
716
|
|
|
717
|
+
# Set background color based on transparent_background setting
|
|
718
|
+
if self.transparent_background:
|
|
719
|
+
template_dict["background_color"] = "transparent"
|
|
720
|
+
else:
|
|
721
|
+
template_dict["background_color"] = self.chart_colors_settings["paper_1"]
|
|
722
|
+
|
|
711
723
|
# Set planet colors
|
|
712
724
|
for planet in self.planets_settings:
|
|
713
725
|
planet_id = planet["id"]
|
|
@@ -769,6 +781,11 @@ class KerykeionChartSVG:
|
|
|
769
781
|
self.first_obj.seventh_house.abs_pos,
|
|
770
782
|
self.chart_colors_settings["paper_0"],
|
|
771
783
|
)
|
|
784
|
+
template_dict["background_circle"] = draw_background_circle(
|
|
785
|
+
self.main_radius,
|
|
786
|
+
self.chart_colors_settings["paper_1"],
|
|
787
|
+
self.chart_colors_settings["paper_1"],
|
|
788
|
+
)
|
|
772
789
|
template_dict["first_circle"] = draw_first_circle(
|
|
773
790
|
self.main_radius,
|
|
774
791
|
self.chart_colors_settings["zodiac_radix_ring_2"],
|
|
@@ -894,6 +911,11 @@ class KerykeionChartSVG:
|
|
|
894
911
|
self.first_obj.seventh_house.abs_pos,
|
|
895
912
|
self.chart_colors_settings["paper_0"],
|
|
896
913
|
)
|
|
914
|
+
template_dict["background_circle"] = draw_background_circle(
|
|
915
|
+
self.main_radius,
|
|
916
|
+
self.chart_colors_settings["paper_1"],
|
|
917
|
+
self.chart_colors_settings["paper_1"],
|
|
918
|
+
)
|
|
897
919
|
template_dict["first_circle"] = draw_first_circle(
|
|
898
920
|
self.main_radius,
|
|
899
921
|
self.chart_colors_settings["zodiac_radix_ring_2"],
|
|
@@ -1054,6 +1076,11 @@ class KerykeionChartSVG:
|
|
|
1054
1076
|
self.chart_colors_settings["zodiac_transit_ring_3"],
|
|
1055
1077
|
)
|
|
1056
1078
|
template_dict["degreeRing"] = draw_transit_ring_degree_steps(self.main_radius, self.first_obj.seventh_house.abs_pos)
|
|
1079
|
+
template_dict["background_circle"] = draw_background_circle(
|
|
1080
|
+
self.main_radius,
|
|
1081
|
+
self.chart_colors_settings["paper_1"],
|
|
1082
|
+
self.chart_colors_settings["paper_1"],
|
|
1083
|
+
)
|
|
1057
1084
|
template_dict["first_circle"] = draw_first_circle(
|
|
1058
1085
|
self.main_radius,
|
|
1059
1086
|
self.chart_colors_settings["zodiac_transit_ring_2"],
|
|
@@ -1224,6 +1251,11 @@ class KerykeionChartSVG:
|
|
|
1224
1251
|
self.chart_colors_settings["zodiac_transit_ring_3"],
|
|
1225
1252
|
)
|
|
1226
1253
|
template_dict["degreeRing"] = draw_transit_ring_degree_steps(self.main_radius, self.first_obj.seventh_house.abs_pos)
|
|
1254
|
+
template_dict["background_circle"] = draw_background_circle(
|
|
1255
|
+
self.main_radius,
|
|
1256
|
+
self.chart_colors_settings["paper_1"],
|
|
1257
|
+
self.chart_colors_settings["paper_1"],
|
|
1258
|
+
)
|
|
1227
1259
|
template_dict["first_circle"] = draw_first_circle(
|
|
1228
1260
|
self.main_radius,
|
|
1229
1261
|
self.chart_colors_settings["zodiac_transit_ring_2"],
|
|
@@ -1365,6 +1397,11 @@ class KerykeionChartSVG:
|
|
|
1365
1397
|
self.chart_colors_settings["zodiac_transit_ring_3"],
|
|
1366
1398
|
)
|
|
1367
1399
|
template_dict["degreeRing"] = draw_transit_ring_degree_steps(self.main_radius, self.first_obj.seventh_house.abs_pos)
|
|
1400
|
+
template_dict["background_circle"] = draw_background_circle(
|
|
1401
|
+
self.main_radius,
|
|
1402
|
+
self.chart_colors_settings["paper_1"],
|
|
1403
|
+
self.chart_colors_settings["paper_1"],
|
|
1404
|
+
)
|
|
1368
1405
|
template_dict["first_circle"] = draw_first_circle(
|
|
1369
1406
|
self.main_radius,
|
|
1370
1407
|
self.chart_colors_settings["zodiac_transit_ring_2"],
|
|
@@ -1547,6 +1584,11 @@ class KerykeionChartSVG:
|
|
|
1547
1584
|
self.first_obj.seventh_house.abs_pos,
|
|
1548
1585
|
self.chart_colors_settings["paper_0"],
|
|
1549
1586
|
)
|
|
1587
|
+
template_dict["background_circle"] = draw_background_circle(
|
|
1588
|
+
self.main_radius,
|
|
1589
|
+
self.chart_colors_settings["paper_1"],
|
|
1590
|
+
self.chart_colors_settings["paper_1"],
|
|
1591
|
+
)
|
|
1550
1592
|
template_dict["first_circle"] = draw_first_circle(
|
|
1551
1593
|
self.main_radius,
|
|
1552
1594
|
self.chart_colors_settings["zodiac_radix_ring_2"],
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<!--- This file is part of Kerykeion and is based on
|
|
3
|
-
OpenAstro.org -->
|
|
1
|
+
<!--- This file is part of Kerykeion and is based on OpenAstro.org -->
|
|
4
2
|
<svg
|
|
5
3
|
xmlns="http://www.w3.org/2000/svg"
|
|
6
4
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
@@ -9,7 +7,7 @@ OpenAstro.org -->
|
|
|
9
7
|
height="100%"
|
|
10
8
|
viewBox="28 20 255 250"
|
|
11
9
|
preserveAspectRatio="xMidYMid"
|
|
12
|
-
style="background-color: $
|
|
10
|
+
style="background-color: $background_color"
|
|
13
11
|
>
|
|
14
12
|
|
|
15
13
|
<!-- Colors -->
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
<!--- This file is part of Kerykeion and is based on
|
|
3
|
-
OpenAstro.org -->
|
|
1
|
+
<!--- This file is part of Kerykeion and is based on OpenAstro.org -->
|
|
4
2
|
<svg
|
|
5
3
|
xmlns="http://www.w3.org/2000/svg"
|
|
6
4
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
|
@@ -9,7 +7,7 @@ OpenAstro.org -->
|
|
|
9
7
|
height="100%"
|
|
10
8
|
viewBox="$viewbox"
|
|
11
9
|
preserveAspectRatio="xMidYMid"
|
|
12
|
-
style="background-color: $
|
|
10
|
+
style="background-color: $background_color"
|
|
13
11
|
>
|
|
14
12
|
<title>$stringTitle</title>
|
|
15
13
|
|
|
@@ -62,6 +60,12 @@ OpenAstro.org -->
|
|
|
62
60
|
|
|
63
61
|
<!-- Full Wheel -->
|
|
64
62
|
<g kr:node="Full_Wheel" transform="translate(100,50)">
|
|
63
|
+
|
|
64
|
+
<!-- Background Circle -->
|
|
65
|
+
<g kr:node='Background_Circle'>
|
|
66
|
+
$background_circle
|
|
67
|
+
</g>
|
|
68
|
+
|
|
65
69
|
<!-- Zodiac -->
|
|
66
70
|
<g kr:node="Zodiac">
|
|
67
71
|
$makeZodiac
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
1
|
<!--- This file is part of Kerykeion and is based on OpenAstro.org -->
|
|
3
2
|
<svg
|
|
4
3
|
xmlns="http://www.w3.org/2000/svg"
|
|
@@ -6,9 +5,9 @@
|
|
|
6
5
|
xmlns:kr="https://www.kerykeion.net/"
|
|
7
6
|
width="100%"
|
|
8
7
|
height="100%"
|
|
9
|
-
viewBox="
|
|
8
|
+
viewBox="85 40 500 500"
|
|
10
9
|
preserveAspectRatio="xMidYMid"
|
|
11
|
-
style="background-color: $
|
|
10
|
+
style="background-color: $background_color"
|
|
12
11
|
>
|
|
13
12
|
<title>$stringTitle | Kerykeion</title>
|
|
14
13
|
|
|
@@ -22,6 +21,12 @@
|
|
|
22
21
|
|
|
23
22
|
<!-- Full Wheel -->
|
|
24
23
|
<g kr:node="Full_Wheel" transform="translate(100,50)">
|
|
24
|
+
|
|
25
|
+
<!-- Background Circle -->
|
|
26
|
+
<g kr:node='Background_Circle'>
|
|
27
|
+
$background_circle
|
|
28
|
+
</g>
|
|
29
|
+
|
|
25
30
|
<!-- Zodiac -->
|
|
26
31
|
<g kr:node="Zodiac">
|
|
27
32
|
$makeZodiac
|
|
@@ -4,6 +4,7 @@ from typing_extensions import TypedDict
|
|
|
4
4
|
class ChartTemplateDictionary(TypedDict):
|
|
5
5
|
transitRing: str
|
|
6
6
|
degreeRing: str
|
|
7
|
+
background_circle: str
|
|
7
8
|
first_circle: str
|
|
8
9
|
second_circle: str
|
|
9
10
|
third_circle: str
|
|
@@ -31,6 +32,8 @@ class ChartTemplateDictionary(TypedDict):
|
|
|
31
32
|
paper_color_0: str
|
|
32
33
|
# Background color of the chart
|
|
33
34
|
paper_color_1: str
|
|
35
|
+
# Dynamic background color (can be transparent or theme color)
|
|
36
|
+
background_color: str
|
|
34
37
|
|
|
35
38
|
# Planets colors, from 0 to 16 (0 is the Sun)
|
|
36
39
|
planets_color_0: str
|
kerykeion/kr_types/kr_models.py
CHANGED
|
@@ -79,18 +79,18 @@ class AstrologicalBaseModel(SubscriptableBaseModel):
|
|
|
79
79
|
# Common identification data
|
|
80
80
|
name: str
|
|
81
81
|
|
|
82
|
-
# Common location data
|
|
83
|
-
city: str
|
|
84
|
-
nation: str
|
|
85
|
-
lng: float
|
|
86
|
-
lat: float
|
|
87
|
-
tz_str: str
|
|
88
|
-
|
|
89
|
-
# Common time data
|
|
90
|
-
iso_formatted_local_datetime: str
|
|
91
|
-
iso_formatted_utc_datetime: str
|
|
92
|
-
julian_day: float
|
|
93
|
-
day_of_week: str
|
|
82
|
+
# Common location data (optional for composite charts)
|
|
83
|
+
city: Optional[str] = None
|
|
84
|
+
nation: Optional[str] = None
|
|
85
|
+
lng: Optional[float] = None
|
|
86
|
+
lat: Optional[float] = None
|
|
87
|
+
tz_str: Optional[str] = None
|
|
88
|
+
|
|
89
|
+
# Common time data (optional for composite charts)
|
|
90
|
+
iso_formatted_local_datetime: Optional[str] = None
|
|
91
|
+
iso_formatted_utc_datetime: Optional[str] = None
|
|
92
|
+
julian_day: Optional[float] = None
|
|
93
|
+
day_of_week: Optional[str] = None
|
|
94
94
|
|
|
95
95
|
# Common configuration
|
|
96
96
|
zodiac_type: ZodiacType
|
|
@@ -188,6 +188,17 @@ class AstrologicalSubjectModel(AstrologicalBaseModel):
|
|
|
188
188
|
"""
|
|
189
189
|
Pydantic Model for Astrological Subject
|
|
190
190
|
"""
|
|
191
|
+
# Override base model to make location and time data required for subjects
|
|
192
|
+
city: str
|
|
193
|
+
nation: str
|
|
194
|
+
lng: float
|
|
195
|
+
lat: float
|
|
196
|
+
tz_str: str
|
|
197
|
+
iso_formatted_local_datetime: str
|
|
198
|
+
iso_formatted_utc_datetime: str
|
|
199
|
+
julian_day: float
|
|
200
|
+
day_of_week: str
|
|
201
|
+
|
|
191
202
|
# Specific birth/event data
|
|
192
203
|
year: int
|
|
193
204
|
month: int
|
|
@@ -1,40 +1,36 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: kerykeion
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.0a9
|
|
4
4
|
Summary: A python library for astrology.
|
|
5
|
+
Project-URL: Homepage, https://www.kerykeion.net/
|
|
6
|
+
Project-URL: Repository, https://github.com/g-battaglia/kerykeion
|
|
7
|
+
Author-email: Giacomo Battaglia <kerykeion.astrology@gmail.com>
|
|
5
8
|
License: AGPL-3.0
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
Author-email: kerykeion.astrology@gmail.com
|
|
9
|
-
Requires-Python: >=3.9,<4.0
|
|
9
|
+
License-File: LICENSE
|
|
10
|
+
Keywords: astrology,astrology library,astrology-calculator,astronomical-algorithms,birtchart,ephemeris,svg,synastry,zodiac,zodiac-sing
|
|
10
11
|
Classifier: Development Status :: 5 - Production/Stable
|
|
11
12
|
Classifier: Intended Audience :: Developers
|
|
12
13
|
Classifier: Intended Audience :: Information Technology
|
|
13
|
-
Classifier: License :: OSI Approved :: GNU Affero General Public License v3
|
|
14
14
|
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
|
|
15
15
|
Classifier: Operating System :: OS Independent
|
|
16
|
-
Classifier: Programming Language :: Python :: 3
|
|
16
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.9
|
|
18
18
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
19
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
-
Classifier: Programming Language :: Python :: 3 :: Only
|
|
23
20
|
Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
24
21
|
Classifier: Topic :: Software Development
|
|
25
22
|
Classifier: Topic :: Software Development :: Libraries
|
|
26
23
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
27
24
|
Classifier: Typing :: Typed
|
|
28
|
-
Requires-
|
|
29
|
-
Requires-Dist:
|
|
30
|
-
Requires-Dist:
|
|
31
|
-
Requires-Dist:
|
|
32
|
-
Requires-Dist: requests-cache
|
|
33
|
-
Requires-Dist:
|
|
34
|
-
Requires-Dist:
|
|
35
|
-
Requires-Dist:
|
|
36
|
-
|
|
37
|
-
Project-URL: Repository, https://github.com/g-battaglia/kerykeion
|
|
25
|
+
Requires-Python: >=3.9
|
|
26
|
+
Requires-Dist: pydantic>=2.5
|
|
27
|
+
Requires-Dist: pyswisseph>=2.10.3.1
|
|
28
|
+
Requires-Dist: pytz>=2024.2
|
|
29
|
+
Requires-Dist: requests-cache>=1.2.1
|
|
30
|
+
Requires-Dist: requests>=2.32.3
|
|
31
|
+
Requires-Dist: scour>=0.38.2
|
|
32
|
+
Requires-Dist: simple-ascii-tables>=1.0.0
|
|
33
|
+
Requires-Dist: typing-extensions>=4.12.2
|
|
38
34
|
Description-Content-Type: text/markdown
|
|
39
35
|
|
|
40
36
|
<h1 align="center">Kerykeion</h1>
|
|
@@ -638,4 +634,3 @@ If using Kerykeion in published or academic work, please cite as follows:
|
|
|
638
634
|
Battaglia, G. (2025). Kerykeion: A Python Library for Astrological Calculations and Chart Generation.
|
|
639
635
|
https://github.com/g-battaglia/kerykeion
|
|
640
636
|
```
|
|
641
|
-
|
|
@@ -1,41 +1,43 @@
|
|
|
1
1
|
kerykeion/__init__.py,sha256=18VYgL_5JcB3JwzfICoHxtQTqzwlgUXHY5j4HG2gjZQ,920
|
|
2
|
+
kerykeion/astrological_subject_factory.py,sha256=z8ehPW6_wT6fwayxAmST0oSdLMM1pAmHXuwncSF_A20,52340
|
|
3
|
+
kerykeion/composite_subject_factory.py,sha256=d3omKRw7AlJFQVrOa1nBOu9jQx7W-2UrL8V7TKyVXHg,7551
|
|
4
|
+
kerykeion/enums.py,sha256=nPXgP_ocsRnRno5H-yunZy3fp-hLZ9aYRaUb-2gBdvw,1199
|
|
5
|
+
kerykeion/ephemeris_data.py,sha256=h56Y4FCTYPcIzSnDiKNXYzEpeiqU554ccUmfXENigls,10750
|
|
6
|
+
kerykeion/fetch_geonames.py,sha256=e66Nh6yq9A4VjnuvVSiV1TW1IkJ9m3Q2LKPWrkOGgO0,4764
|
|
7
|
+
kerykeion/planetary_return_factory.py,sha256=Y3jMHsI1epuBC4N3Mto0mubVE8BIT89dBh15eOATg2Y,11449
|
|
8
|
+
kerykeion/relationship_score_factory.py,sha256=g0RL1sx_LsMlfX1XVDf-z2LrlZ_SAL_1C0kuOGhKhsA,8495
|
|
9
|
+
kerykeion/report.py,sha256=w4KNQz0ADPPXE60PX6NVTxjppZ9q_naSbgYKQiX6Epk,2827
|
|
10
|
+
kerykeion/transits_time_range.py,sha256=iJSkXcNKJBcfrN8gN9P0xGKLsRBwJs-mMuAtPsvUqNE,5505
|
|
11
|
+
kerykeion/utilities.py,sha256=mD-oPKlbpwyXv5CXOS4aS6e6u0fFYl2lf9ptUr06jxs,22217
|
|
2
12
|
kerykeion/aspects/__init__.py,sha256=9kx_Rx1NJx5SM7nDCSbI79S1neZ3c-q2NvQr-S6A9PY,292
|
|
3
13
|
kerykeion/aspects/aspects_utils.py,sha256=NgxdeKd9CAPbzFlLe-yr9RFumM0Cc0kfWEONYREOFJ4,3252
|
|
4
14
|
kerykeion/aspects/natal_aspects.py,sha256=SfI3ferjtyV47fBG6q3q1aczc-GFOwN4P7WpyZTgPSA,7269
|
|
5
15
|
kerykeion/aspects/synastry_aspects.py,sha256=4ZBiFrbyyXxclnyaEIBeLJQO3uQVnpsqvI5Kj3-ijuI,5979
|
|
6
16
|
kerykeion/aspects/transits_time_range.py,sha256=E03BJYcNK3kO30EC96Ys2EaH-EDyZF2nj4C7_LcFrOk,1182
|
|
7
|
-
kerykeion/astrological_subject_factory.py,sha256=z8ehPW6_wT6fwayxAmST0oSdLMM1pAmHXuwncSF_A20,52340
|
|
8
17
|
kerykeion/charts/__init__.py,sha256=i9NMZ7LdkllPlqQSi1or9gTobHbROGDKmJhBDO4R0mA,128
|
|
9
|
-
kerykeion/charts/charts_utils.py,sha256=
|
|
18
|
+
kerykeion/charts/charts_utils.py,sha256=mzYO_MYht9Gur8hMm2TbIZ1NfvNdl3FsBy4fl1qPOek,62948
|
|
10
19
|
kerykeion/charts/draw_planets.py,sha256=dbVCA4MFs7ChZKH4w1eErBiF_mluuxAD4fouBrXs-x0,17696
|
|
11
20
|
kerykeion/charts/draw_planets_v2.py,sha256=ft0KjngCIfYKNGlZ4cv7apX9V6uyHetIVOxbNRzEmWU,28210
|
|
12
21
|
kerykeion/charts/draw_planets_v3.py,sha256=3nrpef56qBsc0hfCOGdfCOr-61C2c5aWcRSiBcQiAuo,25811
|
|
13
|
-
kerykeion/charts/kerykeion_chart_svg.py,sha256=
|
|
14
|
-
kerykeion/charts/templates/aspect_grid_only.xml,sha256=
|
|
15
|
-
kerykeion/charts/templates/chart.xml,sha256=
|
|
16
|
-
kerykeion/charts/templates/wheel_only.xml,sha256=
|
|
22
|
+
kerykeion/charts/kerykeion_chart_svg.py,sha256=VHrTJZY8ETAiWPnhjCKGtRmhoa4f6-M5vLBgI14Jx20,97622
|
|
23
|
+
kerykeion/charts/templates/aspect_grid_only.xml,sha256=lBHBj5bS5klGnv7QMuFxQjhlE6VZRaOgW93akLgRjX4,70055
|
|
24
|
+
kerykeion/charts/templates/chart.xml,sha256=r3a_csMqcoqeOnDA3YCD-iUxdqgRw5GV1GOf1Cp0e_E,79940
|
|
25
|
+
kerykeion/charts/templates/wheel_only.xml,sha256=0P8kpdsmKdFFso892v5r5WTp4GZSZApgh4mj4BTDNkg,71388
|
|
17
26
|
kerykeion/charts/themes/classic.css,sha256=LYYYWQHNG7-vuPCq8F2EPl3LauWXVrY3Q_tpwM0klgo,4660
|
|
18
27
|
kerykeion/charts/themes/dark-high-contrast.css,sha256=YW5X5-M0dz5Vy2oz-JyDNXJYHSmV83lYCodydC-KS1A,7506
|
|
19
28
|
kerykeion/charts/themes/dark.css,sha256=XVspznDRNMXsFzk7hY7IB7AI58alPAV_-CgV3gCKyzg,7581
|
|
20
29
|
kerykeion/charts/themes/light.css,sha256=5eyUzhVlRjG6lPHKnprLum0HuRtPIJhMBzpGfzoTjnQ,7590
|
|
21
30
|
kerykeion/charts/themes/strawberry.css,sha256=UtcfRsCT-M9OZs_SoclWGZ0jDJiWvQjHTeI4M1jf7pQ,8314
|
|
22
|
-
kerykeion/composite_subject_factory.py,sha256=d3omKRw7AlJFQVrOa1nBOu9jQx7W-2UrL8V7TKyVXHg,7551
|
|
23
|
-
kerykeion/enums.py,sha256=nPXgP_ocsRnRno5H-yunZy3fp-hLZ9aYRaUb-2gBdvw,1199
|
|
24
|
-
kerykeion/ephemeris_data.py,sha256=h56Y4FCTYPcIzSnDiKNXYzEpeiqU554ccUmfXENigls,10750
|
|
25
|
-
kerykeion/fetch_geonames.py,sha256=e66Nh6yq9A4VjnuvVSiV1TW1IkJ9m3Q2LKPWrkOGgO0,4764
|
|
26
31
|
kerykeion/house_comparison/__init__.py,sha256=FQutYoG1T_ljkjJ0OAFvkeH8rASwMK7ieCpH_hDFJWU,139
|
|
27
32
|
kerykeion/house_comparison/house_comparison_factory.py,sha256=R3O3R786yH6W2c8cKma8P7FNXU6JGl29omRHmucNN_Q,3369
|
|
28
33
|
kerykeion/house_comparison/house_comparison_models.py,sha256=R9EW5F3fiIKIm8qrwTxtXhNOGDpf1-Lh9hbM1uK83oE,1549
|
|
29
34
|
kerykeion/house_comparison/house_comparison_utils.py,sha256=BXDXmxeLSwEDbum-APNzdwK3FjweCEaoY_Z3V1kGMIk,3851
|
|
30
35
|
kerykeion/kr_types/__init__.py,sha256=jshJOccCQcYZuoOvrILRZH6imy4RBvKpFPujlNLFyGE,295
|
|
31
|
-
kerykeion/kr_types/chart_types.py,sha256=
|
|
36
|
+
kerykeion/kr_types/chart_types.py,sha256=ofMYk7NRalSsdQcLVkpCbOb-dhdjYHEqIb_WPLtD0rM,2429
|
|
32
37
|
kerykeion/kr_types/kerykeion_exception.py,sha256=kE1y0K0rmuz32b4K_ZppSsZ59I2Get0ZkvOkTE5HejI,314
|
|
33
38
|
kerykeion/kr_types/kr_literals.py,sha256=4kJhzm_0LERiJEJks0KgDyThueMZj_F1OK2Far5SMZc,4870
|
|
34
|
-
kerykeion/kr_types/kr_models.py,sha256=
|
|
39
|
+
kerykeion/kr_types/kr_models.py,sha256=nzq8no2dBd4b529ybznF46_VUEvDj5ZdDdlLRBE0RmM,8835
|
|
35
40
|
kerykeion/kr_types/settings_models.py,sha256=qKlcn-Go1dAhC7oMFY_saogNcRa4WvKSewyvsKZt2S0,16604
|
|
36
|
-
kerykeion/planetary_return_factory.py,sha256=Y3jMHsI1epuBC4N3Mto0mubVE8BIT89dBh15eOATg2Y,11449
|
|
37
|
-
kerykeion/relationship_score_factory.py,sha256=g0RL1sx_LsMlfX1XVDf-z2LrlZ_SAL_1C0kuOGhKhsA,8495
|
|
38
|
-
kerykeion/report.py,sha256=w4KNQz0ADPPXE60PX6NVTxjppZ9q_naSbgYKQiX6Epk,2827
|
|
39
41
|
kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
|
|
40
42
|
kerykeion/settings/config_constants.py,sha256=R4fEe4WzRSq3BXqsnfgHj1oe_swkVMx3iGe-C_Zu0mw,1772
|
|
41
43
|
kerykeion/settings/kerykeion_settings.py,sha256=umd8TZy-8ywowsd4TTkhwxSLLyX3xYj3A1zvNsTV_Y8,2955
|
|
@@ -46,10 +48,8 @@ kerykeion/settings/legacy/legacy_chart_aspects_settings.py,sha256=tO4tgPgPP07_wu
|
|
|
46
48
|
kerykeion/settings/legacy/legacy_color_settings.py,sha256=gBUmGSNvvLzRYbdVtzwTDnMwWoh4tOCyT_9Q6aQRv_s,2620
|
|
47
49
|
kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
|
|
48
50
|
kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
|
|
49
|
-
kerykeion/
|
|
50
|
-
kerykeion/
|
|
51
|
-
kerykeion-5.0.
|
|
52
|
-
kerykeion-5.0.
|
|
53
|
-
kerykeion-5.0.
|
|
54
|
-
kerykeion-5.0.0a7.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
|
|
55
|
-
kerykeion-5.0.0a7.dist-info/RECORD,,
|
|
51
|
+
kerykeion-5.0.0a9.dist-info/METADATA,sha256=qRC5Lxj1uBxV_AAf3lb0VWXmqT3jmZzo1nD9FaJrOdM,25100
|
|
52
|
+
kerykeion-5.0.0a9.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
53
|
+
kerykeion-5.0.0a9.dist-info/entry_points.txt,sha256=j9J6dg4czXFgM3LDOxoWFl8UDU4LLe2bD_U0RgpyLGA,50
|
|
54
|
+
kerykeion-5.0.0a9.dist-info/licenses/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
|
|
55
|
+
kerykeion-5.0.0a9.dist-info/RECORD,,
|
|
File without changes
|