kerykeion 4.23.0__py3-none-any.whl → 4.24.1__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.

@@ -33,6 +33,7 @@ def get_aspect_from_two_points(
33
33
  diff = abs(point_one - point_two)
34
34
 
35
35
  for aid, aspect in enumerate(aspects_settings):
36
+ # TODO: Remove the "degree" element EVERYWHERE!
36
37
  aspect_degree = aspect["degree"] # type: ignore
37
38
  aspect_orb = aspect["orb"] # type: ignore
38
39
 
@@ -11,10 +11,10 @@ from kerykeion.settings.kerykeion_settings import get_settings
11
11
  from dataclasses import dataclass, field
12
12
  from functools import cached_property
13
13
  from kerykeion.aspects.aspects_utils import planet_id_decoder, get_aspect_from_two_points, get_active_points_list
14
- from kerykeion.kr_types.kr_models import AstrologicalSubjectModel, AspectModel
14
+ from kerykeion.kr_types.kr_models import AstrologicalSubjectModel, AspectModel, ActiveAspect
15
15
  from kerykeion.kr_types.kr_literals import AxialCusps, Planet
16
16
  from kerykeion.kr_types.settings_models import KerykeionSettingsModel
17
- from kerykeion.settings.config_constants import DEFAULT_ACTIVE_POINTS
17
+ from kerykeion.settings.config_constants import DEFAULT_ACTIVE_POINTS, DEFAULT_ACTIVE_ASPECTS
18
18
 
19
19
 
20
20
 
@@ -35,6 +35,7 @@ class NatalAspects:
35
35
  user: Union[AstrologicalSubject, AstrologicalSubjectModel]
36
36
  new_settings_file: Union[Path, KerykeionSettingsModel, dict, None] = None
37
37
  active_points: List[Union[AxialCusps, Planet]] = field(default_factory=lambda: DEFAULT_ACTIVE_POINTS)
38
+ active_aspects: List[ActiveAspect] = field(default_factory=lambda: DEFAULT_ACTIVE_ASPECTS)
38
39
 
39
40
  def __post_init__(self):
40
41
  self.settings = get_settings(self.new_settings_file)
@@ -112,17 +113,15 @@ class NatalAspects:
112
113
  the most important are hardcoded.
113
114
  Set the list with set_points and creating a list with the names
114
115
  or the numbers of the houses.
115
- The relevant aspects are the ones that are set as active ("is_active") in the settings.
116
+ The relevant aspects are the ones that are set as looping in the available_aspects list.
116
117
  """
117
118
 
118
119
  logging.debug("Relevant aspects not already calculated, calculating now...")
119
120
  self.all_aspects
120
121
 
121
122
  aspects_filtered = []
122
-
123
- # Only pick aspects for which the is_active setting (specified usually in kr.config.json file) is true.
124
123
  for a in self.all_aspects_list:
125
- if self.aspects_settings[a["aid"]]["is_active"] == True:
124
+ if a["aspect"] in [aspect["name"] for aspect in self.active_aspects]:
126
125
  aspects_filtered.append(a)
127
126
 
128
127
  axes_list = AXES_LIST
@@ -11,11 +11,11 @@ from functools import cached_property
11
11
  from kerykeion.aspects.natal_aspects import NatalAspects
12
12
  from kerykeion.settings.kerykeion_settings import get_settings
13
13
  from kerykeion.aspects.aspects_utils import planet_id_decoder, get_aspect_from_two_points, get_active_points_list
14
- from kerykeion.kr_types.kr_models import AstrologicalSubjectModel, AspectModel
14
+ from kerykeion.kr_types.kr_models import AstrologicalSubjectModel, AspectModel, ActiveAspect
15
15
  from kerykeion.kr_types.settings_models import KerykeionSettingsModel
16
- from kerykeion.settings.config_constants import DEFAULT_ACTIVE_POINTS
16
+ from kerykeion.settings.config_constants import DEFAULT_ACTIVE_POINTS, DEFAULT_ACTIVE_ASPECTS
17
17
  from kerykeion.kr_types.kr_literals import AxialCusps, Planet
18
- from typing import Union
18
+ from typing import Union, List
19
19
 
20
20
 
21
21
  class SynastryAspects(NatalAspects):
@@ -29,6 +29,7 @@ class SynastryAspects(NatalAspects):
29
29
  kr_object_two: Union[AstrologicalSubject, AstrologicalSubjectModel],
30
30
  new_settings_file: Union[Path, KerykeionSettingsModel, dict, None] = None,
31
31
  active_points: list[Union[AxialCusps, Planet]] = DEFAULT_ACTIVE_POINTS,
32
+ active_aspects: List[ActiveAspect] = DEFAULT_ACTIVE_ASPECTS,
32
33
  ):
33
34
  # Subjects
34
35
  self.first_user = kr_object_one
@@ -42,6 +43,7 @@ class SynastryAspects(NatalAspects):
42
43
  self.aspects_settings = self.settings.aspects
43
44
  self.axes_orbit_settings = self.settings.general_settings.axes_orbit
44
45
  self.active_points = active_points
46
+ self.active_aspects = active_aspects
45
47
 
46
48
  # Private variables of the aspects
47
49
  self._all_aspects: Union[list, None] = None
@@ -742,6 +742,7 @@ def draw_transit_aspect_list(
742
742
  inner_path += f'<use transform="scale(0.4)" x="0" y="3" xlink:href="#{celestial_point_language[aspects_list[i]["p1"]]["name"]}" />'
743
743
 
744
744
  # aspect symbol
745
+ # TODO: Remove the "degree" element EVERYWHERE!
745
746
  inner_path += f'<use x="15" y="0" xlink:href="#orb{aspects_settings[aspects_list[i]["aid"]]["degree"]}" />'
746
747
 
747
748
  # second planet symbol
@@ -12,7 +12,7 @@ from kerykeion.settings.kerykeion_settings import get_settings
12
12
  from kerykeion.aspects.synastry_aspects import SynastryAspects
13
13
  from kerykeion.aspects.natal_aspects import NatalAspects
14
14
  from kerykeion.astrological_subject import AstrologicalSubject
15
- from kerykeion.kr_types import KerykeionException, ChartType, KerykeionPointModel, Sign
15
+ from kerykeion.kr_types import KerykeionException, ChartType, KerykeionPointModel, Sign, ActiveAspect
16
16
  from kerykeion.kr_types import ChartTemplateDictionary
17
17
  from kerykeion.kr_types.kr_models import AstrologicalSubjectModel
18
18
  from kerykeion.kr_types.settings_models import KerykeionSettingsCelestialPointModel, KerykeionSettingsModel
@@ -39,7 +39,7 @@ from kerykeion.charts.charts_utils import (
39
39
  )
40
40
  from kerykeion.charts.draw_planets import draw_planets # type: ignore
41
41
  from kerykeion.utilities import get_houses_list
42
- from kerykeion.settings.config_constants import DEFAULT_ACTIVE_POINTS
42
+ from kerykeion.settings.config_constants import DEFAULT_ACTIVE_POINTS, DEFAULT_ACTIVE_ASPECTS
43
43
  from pathlib import Path
44
44
  from scour.scour import scourString
45
45
  from string import Template
@@ -64,6 +64,15 @@ class KerykeionChartSVG:
64
64
  - chart_language: Set the language for the chart (default: EN).
65
65
  - active_points: Set the active points for the chart (default: DEFAULT_ACTIVE_POINTS). Example:
66
66
  ["Sun", "Moon", "Mercury", "Venus", "Mars", "Jupiter", "Saturn", "Uranus", "Neptune", "Pluto", "True_Node", "True_South_Node", "Ascendant", "Medium_Coeli", "Descendant", "Imum_Coeli"]
67
+ - active_aspects: Set the active aspects for the chart (default: DEFAULT_ACTIVE_ASPECTS). Example:
68
+ [
69
+ {"name": "conjunction", "orb": 10},
70
+ {"name": "opposition", "orb": 10},
71
+ {"name": "trine", "orb": 8},
72
+ {"name": "sextile", "orb": 6},
73
+ {"name": "square", "orb": 5},
74
+ {"name": "quintile", "orb": 1},
75
+ ]
67
76
  """
68
77
 
69
78
  # Constants
@@ -84,6 +93,12 @@ class KerykeionChartSVG:
84
93
  new_output_directory: Union[Path, None]
85
94
  new_settings_file: Union[Path, None, KerykeionSettingsModel, dict]
86
95
  output_directory: Path
96
+ new_settings_file: Union[Path, None, KerykeionSettingsModel, dict]
97
+ theme: Union[KerykeionChartTheme, None]
98
+ double_chart_aspect_grid_type: Literal["list", "table"]
99
+ chart_language: KerykeionChartLanguage
100
+ active_points: List[Union[Planet, AxialCusps]]
101
+ active_aspects: List[ActiveAspect]
87
102
 
88
103
  # Internal properties
89
104
  fire: float
@@ -117,11 +132,13 @@ class KerykeionChartSVG:
117
132
  double_chart_aspect_grid_type: Literal["list", "table"] = "list",
118
133
  chart_language: KerykeionChartLanguage = "EN",
119
134
  active_points: List[Union[Planet, AxialCusps]] = DEFAULT_ACTIVE_POINTS,
135
+ active_aspects: List[ActiveAspect] = DEFAULT_ACTIVE_ASPECTS,
120
136
  ):
121
- # Directories:
122
137
  home_directory = Path.home()
123
138
  self.new_settings_file = new_settings_file
124
139
  self.chart_language = chart_language
140
+ self.active_points = active_points
141
+ self.active_aspects = active_aspects
125
142
 
126
143
  if new_output_directory:
127
144
  self.output_directory = Path(new_output_directory)
@@ -154,7 +171,11 @@ class KerykeionChartSVG:
154
171
 
155
172
  # Makes the sign number list.
156
173
  if self.chart_type == "Natal" or self.chart_type == "ExternalNatal":
157
- natal_aspects_instance = NatalAspects(self.user, new_settings_file=self.new_settings_file, active_points=active_points)
174
+ natal_aspects_instance = NatalAspects(
175
+ self.user, new_settings_file=self.new_settings_file,
176
+ active_points=active_points,
177
+ active_aspects=active_aspects,
178
+ )
158
179
  self.aspects_list = natal_aspects_instance.relevant_aspects
159
180
 
160
181
  if self.chart_type == "Transit" or self.chart_type == "Synastry":
@@ -165,7 +186,13 @@ class KerykeionChartSVG:
165
186
  self.t_user = second_obj
166
187
 
167
188
  # Aspects
168
- self.aspects_list = SynastryAspects(self.user, self.t_user, new_settings_file=self.new_settings_file, active_points=active_points).relevant_aspects
189
+ synastry_aspects_instance = SynastryAspects(
190
+ self.user, self.t_user,
191
+ new_settings_file=self.new_settings_file,
192
+ active_points=active_points,
193
+ active_aspects=active_aspects,
194
+ )
195
+ self.aspects_list = synastry_aspects_instance.relevant_aspects
169
196
 
170
197
  self.t_available_kerykeion_celestial_points = []
171
198
  for body in available_celestial_points_names:
@@ -1,4 +1,4 @@
1
- from typing import TypedDict
1
+ from typing_extensions import TypedDict
2
2
 
3
3
 
4
4
  class ChartTemplateDictionary(TypedDict):
@@ -30,7 +30,7 @@ class ChartTemplateDictionary(TypedDict):
30
30
  paper_color_0: str
31
31
  # Background color of the chart
32
32
  paper_color_1: str
33
-
33
+
34
34
  # Planets colors, from 0 to 16 (0 is the Sun)
35
35
  planets_color_0: str
36
36
  planets_color_1: str
@@ -49,7 +49,7 @@ class ChartTemplateDictionary(TypedDict):
49
49
  planets_color_14: str
50
50
  planets_color_15: str
51
51
  planets_color_16: str
52
-
52
+
53
53
  # Zodiac colors, from 0 to 11 (0 is Aries)
54
54
  zodiac_color_0: str
55
55
  zodiac_color_1: str
@@ -105,11 +105,29 @@ Usually the standard is "Apparent Geocentric"
105
105
 
106
106
 
107
107
  SignsEmoji = Literal["♈️", "♉️", "♊️", "♋️", "♌️", "♍️", "♎️", "♏️", "♐️", "♑️", "♒️", "♓️"]
108
-
108
+ """Literal type for Zodiac Signs Emoji"""
109
109
 
110
110
  KerykeionChartTheme = Literal["light", "dark", "dark-high-contrast", "classic"]
111
+ """Literal type for Kerykeion Chart Themes"""
111
112
 
112
113
 
113
114
  KerykeionChartLanguage = Literal["EN", "FR", "PT", "IT", "CN", "ES", "RU", "TR", "DE", "HI"]
115
+ """Literal type for Kerykeion Chart Languages"""
114
116
 
115
117
  RelationshipScoreDescription = Literal["Minimal", "Medium", "Important", "Very Important", "Exceptional", "Rare Exceptional"]
118
+ """Literal type for Relationship Score Description"""
119
+
120
+ AspectName = Literal[
121
+ "conjunction",
122
+ "semi-sextile",
123
+ "semi-square",
124
+ "sextile",
125
+ "quintile",
126
+ "square",
127
+ "trine",
128
+ "sesquiquadrate",
129
+ "biquintile",
130
+ "quincunx",
131
+ "opposition"
132
+ ]
133
+ """Literal type for all the available aspects names"""
@@ -5,7 +5,9 @@
5
5
 
6
6
 
7
7
  from typing import Union, Optional
8
+ from typing_extensions import TypedDict
8
9
  from pydantic import BaseModel
10
+ from kerykeion.kr_types.kr_literals import AspectName
9
11
 
10
12
  from kerykeion.kr_types import (
11
13
  AxialCusps,
@@ -196,3 +198,8 @@ class RelationshipScoreModel(SubscriptableBaseModel):
196
198
  is_destiny_sign: bool
197
199
  aspects: list[RelationshipScoreAspectModel]
198
200
  subjects: list[AstrologicalSubjectModel]
201
+
202
+
203
+ class ActiveAspect(TypedDict):
204
+ name: AspectName
205
+ orb: int
@@ -78,7 +78,6 @@ class KerykeionSettingsAspectModel(SubscriptableBaseModel):
78
78
 
79
79
  degree: int = Field(title="Aspect Degrees", description="The degree of the aspect")
80
80
  name: str = Field(title="Aspect Name", description="The name of the aspect")
81
- is_active: bool = Field(title="Aspect is Active", description="Is the aspect active?")
82
81
  is_major: bool = Field(title="Aspect is Major", description="Is the aspect major?")
83
82
  orb: int = Field(title="Aspect Orb", description="The orb of the aspect")
84
83
  color: str = Field(title="Aspect Color", description="The color of the aspect")
@@ -1,4 +1,5 @@
1
- from kerykeion.kr_types.kr_literals import Planet, AxialCusps
1
+ from kerykeion.kr_types.kr_literals import Planet, AxialCusps, AspectName
2
+ from kerykeion.kr_types.kr_models import ActiveAspect
2
3
  from typing import List, Union
3
4
 
4
5
  DEFAULT_ACTIVE_POINTS: List[Union[Planet, AxialCusps]] = [
@@ -26,3 +27,21 @@ DEFAULT_ACTIVE_POINTS: List[Union[Planet, AxialCusps]] = [
26
27
  """
27
28
  Default list of active points in the charts or aspects calculations.
28
29
  """
30
+
31
+ DEFAULT_ACTIVE_ASPECTS: List[ActiveAspect] = [
32
+ {"name": "conjunction", "orb": 10},
33
+ {"name": "opposition", "orb": 10},
34
+ {"name": "trine", "orb": 8},
35
+ {"name": "sextile", "orb": 6},
36
+ {"name": "square", "orb": 5},
37
+ {"name": "quintile", "orb": 1},
38
+ # {"name": "semi-sextile", "orb": 1},
39
+ # {"name": "semi-square", "orb": 1},
40
+ # {"name": "sesquiquadrate", "orb": 1},
41
+ # {"name": "biquintile", "orb": 1},
42
+ # {"name": "quincunx", "orb": 1},
43
+ ]
44
+ """
45
+ Default list of active aspects in the aspects calculations.
46
+ The full list of aspects is available in the `kr_types.kr_literals.AspectName` literal.
47
+ """
@@ -445,88 +445,77 @@
445
445
  {
446
446
  "degree": 0,
447
447
  "name": "conjunction",
448
- "is_active": 1,
449
- "is_major": 1,
448
+ "is_major": true,
450
449
  "orb": 10,
451
450
  "color": "var(--kerykeion-chart-color-conjunction)"
452
451
  },
453
452
  {
454
453
  "degree": 30,
455
454
  "name": "semi-sextile",
456
- "is_active": 0,
457
- "is_major": 0,
455
+ "is_major": false,
458
456
  "orb": 1,
459
457
  "color": "var(--kerykeion-chart-color-semi-sextile)"
460
458
  },
461
459
  {
462
460
  "degree": 45,
463
461
  "name": "semi-square",
464
- "is_active": 0,
465
- "is_major": 0,
462
+ "is_major": false,
466
463
  "orb": 1,
467
464
  "color": "var(--kerykeion-chart-color-semi-square)"
468
465
  },
469
466
  {
470
467
  "degree": 60,
471
468
  "name": "sextile",
472
- "is_active": 1,
473
- "is_major": 1,
469
+ "is_major": true,
474
470
  "orb": 6,
475
471
  "color": "var(--kerykeion-chart-color-sextile)"
476
472
  },
477
473
  {
478
474
  "degree": 72,
479
475
  "name": "quintile",
480
- "is_active": 1,
481
- "is_major": 0,
476
+ "is_major": false,
482
477
  "orb": 1,
483
478
  "color": "var(--kerykeion-chart-color-quintile)"
484
479
  },
485
480
  {
486
481
  "degree": 90,
487
482
  "name": "square",
488
- "is_active": 1,
489
- "is_major": 1,
483
+ "is_major": true,
490
484
  "orb": 5,
491
485
  "color": "var(--kerykeion-chart-color-square)"
492
486
  },
493
487
  {
494
488
  "degree": 120,
495
489
  "name": "trine",
496
- "is_active": 1,
497
- "is_major": 1,
490
+ "is_major": true,
498
491
  "orb": 8,
499
492
  "color": "var(--kerykeion-chart-color-trine)"
500
493
  },
501
494
  {
502
495
  "degree": 135,
503
496
  "name": "sesquiquadrate",
504
- "is_active": 0,
505
- "is_major": 0,
497
+ "is_major": false,
506
498
  "orb": 1,
507
499
  "color": "var(--kerykeion-chart-color-sesquiquadrate)"
508
500
  },
509
501
  {
510
502
  "degree": 144,
511
503
  "name": "biquintile",
512
- "is_active": 0,
513
- "is_major": 0,
504
+ "is_major": false,
514
505
  "orb": 1,
515
506
  "color": "var(--kerykeion-chart-color-biquintile)"
516
507
  },
517
508
  {
518
509
  "degree": 150,
519
510
  "name": "quincunx",
520
- "is_active": 0,
521
- "is_major": 0,
511
+ "is_major": false,
522
512
  "orb": 1,
523
513
  "color": "var(--kerykeion-chart-color-quincunx)"
524
514
  },
525
515
  {
526
516
  "degree": 180,
527
517
  "name": "opposition",
528
- "is_active": 1,
529
- "is_major": 1,
518
+ "is_major": true,
530
519
  "orb": 10,
531
520
  "color": "var(--kerykeion-chart-color-opposition)"
532
521
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kerykeion
3
- Version: 4.23.0
3
+ Version: 4.24.1
4
4
  Summary: A python library for astrology.
5
5
  Home-page: https://www.kerykeion.net/
6
6
  License: AGPL-3.0
@@ -19,6 +19,7 @@ Classifier: Programming Language :: Python :: 3.9
19
19
  Classifier: Programming Language :: Python :: 3.10
20
20
  Classifier: Programming Language :: Python :: 3.11
21
21
  Classifier: Programming Language :: Python :: 3.12
22
+ Classifier: Programming Language :: Python :: 3.13
22
23
  Classifier: Programming Language :: Python :: 3 :: Only
23
24
  Classifier: Topic :: Scientific/Engineering :: Astronomy
24
25
  Classifier: Topic :: Software Development
@@ -32,6 +33,7 @@ Requires-Dist: requests (>=2.32.3,<3.0.0)
32
33
  Requires-Dist: requests-cache (>=1.2.1,<2.0.0)
33
34
  Requires-Dist: scour (>=0.38.2,<0.39.0)
34
35
  Requires-Dist: simple-ascii-tables (>=1.0.0,<2.0.0)
36
+ Requires-Dist: typing-extensions (>=4.12.2,<5.0.0)
35
37
  Project-URL: Repository, https://github.com/g-battaglia/kerykeion
36
38
  Description-Content-Type: text/markdown
37
39
 
@@ -1,14 +1,14 @@
1
1
  LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
2
2
  kerykeion/__init__.py,sha256=XtKNBNSVsQ-PAbnJfNUcw-femdF4NgQqohMtM0cRH18,639
3
3
  kerykeion/aspects/__init__.py,sha256=9kx_Rx1NJx5SM7nDCSbI79S1neZ3c-q2NvQr-S6A9PY,292
4
- kerykeion/aspects/aspects_utils.py,sha256=bwADXR49DZXdOpbIk8sdo6P3PbUfaB13yS9k0tbagFY,3069
5
- kerykeion/aspects/natal_aspects.py,sha256=A_Le1nvA7ShEUd_disII28y7vVQysPcGMoFTqHSXCcA,6368
6
- kerykeion/aspects/synastry_aspects.py,sha256=Se4oRWNXw7qXzEhZGCyULQmHuMPyq40K6CwUKQ-Qm8g,4622
4
+ kerykeion/aspects/aspects_utils.py,sha256=gqBtQZHbziHd3LVRNc0pJ07UJMjBGm2_p4nMea3ziZM,3125
5
+ kerykeion/aspects/natal_aspects.py,sha256=GCFCjXzOF_9kuMx-jjbI_OwJXOxcrgp7JZ3Lp2-5yY4,6402
6
+ kerykeion/aspects/synastry_aspects.py,sha256=819RVZuXmRIta1HkHxLiVCU1nJvpbHm-ar96aITJmlU,4780
7
7
  kerykeion/astrological_subject.py,sha256=OWBpAKP0aavvqNWg_c1dTbGVkd6BM7XMzgIMOVo683A,39157
8
8
  kerykeion/charts/__init__.py,sha256=i9NMZ7LdkllPlqQSi1or9gTobHbROGDKmJhBDO4R0mA,128
9
- kerykeion/charts/charts_utils.py,sha256=HjCmBa9TCoAmH5Z20W8BRnQICN3qZOjQcSQ20sLLz7M,41965
9
+ kerykeion/charts/charts_utils.py,sha256=_dv24QSsTps2wNXJLJ0YEhoQhrTucF8vUCIlmwhZYG8,42021
10
10
  kerykeion/charts/draw_planets.py,sha256=Uty3zpWYMQZvvK7ZHhlmynCHeL8DIN3qL2ifnBXVciM,17393
11
- kerykeion/charts/kerykeion_chart_svg.py,sha256=-bMdYXsVM69jgbAC_BILEMZrp2P6xnZ0xSvBeIJvPMc,44464
11
+ kerykeion/charts/kerykeion_chart_svg.py,sha256=LnkdhnLXJ-rVKQVnDnHKpz8E-p41bxXEbpHodDDwUm8,45638
12
12
  kerykeion/charts/templates/aspect_grid_only.xml,sha256=ZiBVeToVmCA8QxYlB_cfnsAO1NNeQAnJ_6rIYkr4F58,70091
13
13
  kerykeion/charts/templates/chart.xml,sha256=rUO7kL3z1RZuFjFBwA88xIF2KQFuGOcHQ5Kcw-K4hLY,73761
14
14
  kerykeion/charts/templates/wheel_only.xml,sha256=E0JCxcnjTjxuaomw7PQEc_3xRVErj1y2hIOGTrShuhc,71304
@@ -20,24 +20,24 @@ kerykeion/enums.py,sha256=nPXgP_ocsRnRno5H-yunZy3fp-hLZ9aYRaUb-2gBdvw,1199
20
20
  kerykeion/ephemeris_data.py,sha256=Cd5TK5nTkFHYU6bkLKjZRfiU4_6AgsWGcwBDrBHKrQk,8096
21
21
  kerykeion/fetch_geonames.py,sha256=e66Nh6yq9A4VjnuvVSiV1TW1IkJ9m3Q2LKPWrkOGgO0,4764
22
22
  kerykeion/kr_types/__init__.py,sha256=jshJOccCQcYZuoOvrILRZH6imy4RBvKpFPujlNLFyGE,295
23
- kerykeion/kr_types/chart_types.py,sha256=OlDvjCra7acaBT--B_gqsqOcAwbuKCXmQQyDTDNfy4o,1983
23
+ kerykeion/kr_types/chart_types.py,sha256=zO8pVFgklRFX60BS__CWAkFZ70v9ThKX2z1js-s1fQA,1986
24
24
  kerykeion/kr_types/kerykeion_exception.py,sha256=kE1y0K0rmuz32b4K_ZppSsZ59I2Get0ZkvOkTE5HejI,314
25
- kerykeion/kr_types/kr_literals.py,sha256=hnbKFC0Wu_ee1VjpXd1GJaE_tC6ALjhbuo7PEW51yQc,3766
26
- kerykeion/kr_types/kr_models.py,sha256=53VnGY8ie35crNemMusf8iasACHRrM1ZVc0kuZggCes,4593
27
- kerykeion/kr_types/settings_models.py,sha256=Do7Ccc7dHFZIPDMamw9tacNTC9jh5WdjgrqV25LgSTs,11928
25
+ kerykeion/kr_types/kr_literals.py,sha256=UDTgG6Hoe2378WzLpobCpYy1gLcHulbiamP8l3_GgFw,4225
26
+ kerykeion/kr_types/kr_models.py,sha256=LlRrx9HRXpoMsgW1CUmJIaW90D8i-0Rhy5NWd4xDmx8,4754
27
+ kerykeion/kr_types/settings_models.py,sha256=BdeFIPc_adBSqEf-MTowPzQZUHR13B0Guv3_Lm58qLw,11837
28
28
  kerykeion/relationship_score/__init__.py,sha256=cLaEBQXQBfyRkv0OaS3ceLROzvWcvKXWiRq0PS6LDjY,114
29
29
  kerykeion/relationship_score/relationship_score.py,sha256=lJkSbHw9nOUaPMrPxqcGhnVQIwAgI52K8BQzXXswb6A,6504
30
30
  kerykeion/relationship_score/relationship_score_factory.py,sha256=P_swvpip5luODeByv_qaP1c5IpUqWTqSlEumDJjal7I,10861
31
31
  kerykeion/report.py,sha256=snqnrJzb89q2ixL74qS9ksvzNSh_WXtZ_haBOIvHYeY,2814
32
32
  kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
33
- kerykeion/settings/config_constants.py,sha256=TadU2WSQAKeQwMKFYVlKkEosn0IlqJWN0BbmsSUeN_g,559
33
+ kerykeion/settings/config_constants.py,sha256=OUi28L2l8s09Df3GHiQUiBZuTjOdfL4A5zSRNqBRHc8,1255
34
34
  kerykeion/settings/kerykeion_settings.py,sha256=WZyiC4uwpjnTmoDGWORYLIk9rIpJ3EuLdjFw6eUuylo,2554
35
- kerykeion/settings/kr.config.json,sha256=qgkW1s1I-thPT0_KR9AV5HxjEMhDr_ECWWiNYkf7MhU,21494
35
+ kerykeion/settings/kr.config.json,sha256=kd45JTd8F-PSXnjNH3_XJIqFtMpaTuJpTMkqDQwhEtk,21291
36
36
  kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
37
37
  kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
38
38
  kerykeion/utilities.py,sha256=vuEDWs5Htl2zi6_3flLvlAsFC9YT9LaOQDpRirFf3Cg,11160
39
- kerykeion-4.23.0.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
40
- kerykeion-4.23.0.dist-info/METADATA,sha256=fmm7uFeCAe0T9wCDd14aoKTBuig702wSWzmxKruawfM,17620
41
- kerykeion-4.23.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
42
- kerykeion-4.23.0.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
43
- kerykeion-4.23.0.dist-info/RECORD,,
39
+ kerykeion-4.24.1.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
40
+ kerykeion-4.24.1.dist-info/METADATA,sha256=T4sr53sGnOuj8dH2k4j7xZBzq8h_XLfM80t-WeFUQS4,17722
41
+ kerykeion-4.24.1.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
42
+ kerykeion-4.24.1.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
43
+ kerykeion-4.24.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.0
2
+ Generator: poetry-core 1.9.1
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any