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

@@ -1,7 +1,7 @@
1
1
  import math
2
2
  import datetime
3
3
  from kerykeion.kr_types import KerykeionException, ChartType
4
- from typing import Union
4
+ from typing import Union, Literal
5
5
  from kerykeion.kr_types.kr_models import AspectModel, KerykeionPointModel
6
6
  from kerykeion.kr_types.settings_models import KerykeionLanguageCelestialPointModel, KerykeionSettingsAspectModel
7
7
 
@@ -314,46 +314,43 @@ def draw_elements_percentages(
314
314
 
315
315
  return (
316
316
  f'<g transform="translate(-30,79)">'
317
- f'<text y="0" style="fill:#ff6600; font-size: 10px;">{fire_label} {str(fire_percentage)}%</text>'
318
- f'<text y="12" style="fill:#6a2d04; font-size: 10px;">{earth_label} {str(earth_percentage)}%</text>'
319
- f'<text y="24" style="fill:#6f76d1; font-size: 10px;">{air_label} {str(air_percentage)}%</text>'
320
- f'<text y="36" style="fill:#630e73; font-size: 10px;">{water_label} {str(water_percentage)}%</text>'
317
+ f'<text y="0" style="fill: var(--kerykeion-chart-color-fire-percentage); font-size: 10px;">{fire_label} {str(fire_percentage)}%</text>'
318
+ f'<text y="12" style="fill: var(--kerykeion-chart-color-earth-percentage); font-size: 10px;">{earth_label} {str(earth_percentage)}%</text>'
319
+ f'<text y="24" style="fill: var(--kerykeion-chart-color-air-percentage); font-size: 10px;">{air_label} {str(air_percentage)}%</text>'
320
+ f'<text y="36" style="fill: var(--kerykeion-chart-color-water-percentage); font-size: 10px;">{water_label} {str(water_percentage)}%</text>'
321
321
  f"</g>"
322
322
  )
323
323
 
324
324
 
325
- def convert_decimal_to_degree_string(dec: float, type="3") -> str:
325
+ def convert_decimal_to_degree_string(dec: float, format_type: Literal["1", "2", "3"] = "3") -> str:
326
326
  """
327
- Coverts decimal float to degrees in format a°b'c".
327
+ Converts a decimal float to a degrees string in the specified format.
328
328
 
329
329
  Args:
330
- - dec (float): decimal float
331
- - type (str): type of format:
332
- - 1: a°
333
- - 2: a°b'
334
- - 3: a°b'c"
330
+ dec (float): The decimal float to convert.
331
+ format_type (str): The format type:
332
+ - "1": a°
333
+ - "2": a°b'
334
+ - "3": a°b'c" (default)
335
335
 
336
336
  Returns:
337
- str: degrees in format a°b'c"
337
+ str: The degrees string in the specified format.
338
338
  """
339
-
339
+ # Ensure the input is a float
340
340
  dec = float(dec)
341
- a = int(dec)
342
- a_new = (dec - float(a)) * 60.0
343
- b_rounded = int(round(a_new))
344
- b = int(a_new)
345
- c = int(round((a_new - float(b)) * 60.0))
346
-
347
- if type == "3":
348
- out = f"{a:02d}&#176;{b:02d}&#39;{c:02d}&#34;"
349
- elif type == "2":
350
- out = f"{a:02d}&#176;{b_rounded:02d}&#39;"
351
- elif type == "1":
352
- out = f"{a:02d}&#176;"
353
- else:
354
- raise KerykeionException(f"Wrong type: {type}, it must be 1, 2 or 3.")
355
341
 
356
- return str(out)
342
+ # Calculate degrees, minutes, and seconds
343
+ degrees = int(dec)
344
+ minutes = int((dec - degrees) * 60)
345
+ seconds = int(round((dec - degrees - minutes / 60) * 3600))
346
+
347
+ # Format the output based on the specified type
348
+ if format_type == "1":
349
+ return f"{degrees}°"
350
+ elif format_type == "2":
351
+ return f"{degrees}°{minutes:02d}'"
352
+ elif format_type == "3":
353
+ return f"{degrees}°{minutes:02d}'{seconds:02d}\""
357
354
 
358
355
 
359
356
  def draw_transit_ring_degree_steps(r: Union[int, float], seventh_house_degree_ut: Union[int, float]) -> str:
@@ -675,7 +672,7 @@ def draw_houses_cusps_and_text_number(
675
672
 
676
673
  # Add the house number text for the first subject
677
674
  path += f'<g kr:node="HouseNumber">'
678
- path += f'<text style="fill: #f00; fill-opacity: .6; font-size: 14px"><tspan x="{xtext - 3}" y="{ytext + 3}">{i + 1}</tspan></text>'
675
+ path += f'<text style="fill: var(--kerykeion-chart-color-house-number); fill-opacity: .6; font-size: 14px"><tspan x="{xtext - 3}" y="{ytext + 3}">{i + 1}</tspan></text>'
679
676
  path += f"</g>"
680
677
 
681
678
  return path
@@ -765,10 +762,7 @@ def draw_aspect_transit_grid(
765
762
 
766
763
  def draw_moon_phase(
767
764
  degrees_between_sun_and_moon: float,
768
- latitude: float,
769
- lunar_phase_outline_color: str = "#000000",
770
- dark_color: str = "#000000",
771
- light_color: str = "#ffffff",
765
+ latitude: float
772
766
  ) -> str:
773
767
  """
774
768
  Draws the moon phase based on the degrees between the sun and the moon.
@@ -786,8 +780,6 @@ def draw_moon_phase(
786
780
  deg = degrees_between_sun_and_moon
787
781
 
788
782
  # Initialize variables for lunar phase properties
789
- fill_color_foreground = None
790
- fill_color_background = None
791
783
  circle_center_x = None
792
784
  circle_radius = None
793
785
 
@@ -798,8 +790,6 @@ def draw_moon_phase(
798
790
  max_radius = max_radius * max_radius
799
791
  circle_center_x = 20.0 + (deg / 90.0) * (max_radius + 10.0)
800
792
  circle_radius = 10.0 + (deg / 90.0) * max_radius
801
- fill_color_foreground = dark_color
802
- fill_color_background = light_color
803
793
 
804
794
  elif deg < 180.0:
805
795
  max_radius = 180.0 - deg
@@ -807,8 +797,6 @@ def draw_moon_phase(
807
797
  max_radius = max_radius * max_radius
808
798
  circle_center_x = 20.0 + ((deg - 90.0) / 90.0 * (max_radius + 10.0)) - (max_radius + 10.0)
809
799
  circle_radius = 10.0 + max_radius - ((deg - 90.0) / 90.0 * max_radius)
810
- fill_color_foreground = light_color
811
- fill_color_background = dark_color
812
800
 
813
801
  elif deg < 270.0:
814
802
  max_radius = deg - 180.0
@@ -816,8 +804,6 @@ def draw_moon_phase(
816
804
  max_radius = max_radius * max_radius
817
805
  circle_center_x = 20.0 + ((deg - 180.0) / 90.0 * (max_radius + 10.0))
818
806
  circle_radius = 10.0 + ((deg - 180.0) / 90.0 * max_radius)
819
- fill_color_foreground = light_color
820
- fill_color_background = dark_color
821
807
 
822
808
  elif deg < 361.0:
823
809
  max_radius = 360.0 - deg
@@ -825,8 +811,6 @@ def draw_moon_phase(
825
811
  max_radius = max_radius * max_radius
826
812
  circle_center_x = 20.0 + ((deg - 270.0) / 90.0 * (max_radius + 10.0)) - (max_radius + 10.0)
827
813
  circle_radius = 10.0 + max_radius - ((deg - 270.0) / 90.0 * max_radius)
828
- fill_color_foreground = dark_color
829
- fill_color_background = light_color
830
814
 
831
815
  else:
832
816
  raise KerykeionException(f"Invalid degree value: {deg}")
@@ -843,9 +827,9 @@ def draw_moon_phase(
843
827
  f' <circle cx="20" cy="10" r="10" />'
844
828
  f' </clipPath>'
845
829
  f' </defs>'
846
- f' <circle cx="20" cy="10" r="10" style="fill: {fill_color_background}" />'
847
- f' <circle cx="{circle_center_x}" cy="10" r="{circle_radius}" style="fill: {fill_color_foreground}" clip-path="url(#moonPhaseCutOffCircle)" />'
848
- f' <circle cx="20" cy="10" r="10" style="fill: none; stroke: {lunar_phase_outline_color}; stroke-width: 0.5px; stroke-opacity: 0.5" />'
830
+ f' <circle cx="20" cy="10" r="10" style="fill: var(--kerykeion-chart-color-lunar-phase-0)" />'
831
+ f' <circle cx="{circle_center_x}" cy="10" r="{circle_radius}" style="fill: var(--kerykeion-chart-color-lunar-phase-1)" clip-path="url(#moonPhaseCutOffCircle)" />'
832
+ f' <circle cx="20" cy="10" r="10" style="fill: none; stroke: var(--kerykeion-chart-color-lunar-phase-0); stroke-width: 0.5px; stroke-opacity: 0.5" />'
849
833
  f'</g>'
850
834
  )
851
835
 
@@ -0,0 +1,86 @@
1
+ DEFAULT_COLOR_STYLE_TAG = """
2
+ <style>
3
+ :root {
4
+ /* Main Colors */
5
+ --kerykeion-chart-color-paper-0: #000000;
6
+ --kerykeion-chart-color-paper-1: #ffffff;
7
+ --kerykeion-chart-color-zodiac-bg-0: #ff7200;
8
+ --kerykeion-chart-color-zodiac-bg-1: #6b3d00;
9
+ --kerykeion-chart-color-zodiac-bg-2: #69acf1;
10
+ --kerykeion-chart-color-zodiac-bg-3: #2b4972;
11
+ --kerykeion-chart-color-zodiac-bg-4: #ff7200;
12
+ --kerykeion-chart-color-zodiac-bg-5: #6b3d00;
13
+ --kerykeion-chart-color-zodiac-bg-6: #69acf1;
14
+ --kerykeion-chart-color-zodiac-bg-7: #2b4972;
15
+ --kerykeion-chart-color-zodiac-bg-8: #ff7200;
16
+ --kerykeion-chart-color-zodiac-bg-9: #6b3d00;
17
+ --kerykeion-chart-color-zodiac-bg-10: #69acf1;
18
+ --kerykeion-chart-color-zodiac-bg-11: #2b4972;
19
+ --kerykeion-chart-color-zodiac-icon-0: #ff7200;
20
+ --kerykeion-chart-color-zodiac-icon-1: #6b3d00;
21
+ --kerykeion-chart-color-zodiac-icon-2: #69acf1;
22
+ --kerykeion-chart-color-zodiac-icon-3: #2b4972;
23
+ --kerykeion-chart-color-zodiac-icon-4: #ff7200;
24
+ --kerykeion-chart-color-zodiac-icon-5: #6b3d00;
25
+ --kerykeion-chart-color-zodiac-icon-6: #69acf1;
26
+ --kerykeion-chart-color-zodiac-icon-7: #2b4972;
27
+ --kerykeion-chart-color-zodiac-icon-8: #ff7200;
28
+ --kerykeion-chart-color-zodiac-icon-9: #6b3d00;
29
+ --kerykeion-chart-color-zodiac-icon-10: #69acf1;
30
+ --kerykeion-chart-color-zodiac-icon-11: #2b4972;
31
+ --kerykeion-chart-color-zodiac-radix-ring-0: #ff0000;
32
+ --kerykeion-chart-color-zodiac-radix-ring-1: #ff0000;
33
+ --kerykeion-chart-color-zodiac-radix-ring-2: #ff0000;
34
+ --kerykeion-chart-color-zodiac-transit-ring-0: #ff0000;
35
+ --kerykeion-chart-color-zodiac-transit-ring-1: #ff0000;
36
+ --kerykeion-chart-color-zodiac-transit-ring-2: #0000ff;
37
+ --kerykeion-chart-color-zodiac-transit-ring-3: #0000ff;
38
+ --kerykeion-chart-color-houses-radix-line: #ff0000;
39
+ --kerykeion-chart-color-houses-transit-line: #0000ff;
40
+ --kerykeion-chart-color-lunar-phase-0: #000000;
41
+ --kerykeion-chart-color-lunar-phase-1: #ffffff;
42
+
43
+ /* Aspects */
44
+ --kerykeion-chart-color-conjunction: #5757e2;
45
+ --kerykeion-chart-color-semi-sextile: #810757;
46
+ --kerykeion-chart-color-semi-square: #b14e58;
47
+ --kerykeion-chart-color-sextile: #d59e28;
48
+ --kerykeion-chart-color-quintile: #1f99b3;
49
+ --kerykeion-chart-color-square: #dc0000;
50
+ --kerykeion-chart-color-trine: #36d100;
51
+ --kerykeion-chart-color-sesquiquadrate: #985a10;
52
+ --kerykeion-chart-color-biquintile: #7a9810;
53
+ --kerykeion-chart-color-quincunx: #26bbcf;
54
+ --kerykeion-chart-color-opposition: #510060;
55
+
56
+ /* Planets */
57
+ --kerykeion-chart-color-sun: #984b00;
58
+ --kerykeion-chart-color-moon: #150052;
59
+ --kerykeion-chart-color-mercury: #520800;
60
+ --kerykeion-chart-color-venus: #400052;
61
+ --kerykeion-chart-color-mars: #540000;
62
+ --kerykeion-chart-color-jupiter: #47133d;
63
+ --kerykeion-chart-color-saturn: #124500;
64
+ --kerykeion-chart-color-uranus: #6f0766;
65
+ --kerykeion-chart-color-neptune: #06537f;
66
+ --kerykeion-chart-color-pluto: #713f04;
67
+ --kerykeion-chart-color-mean-node: #4c1541;
68
+ --kerykeion-chart-color-true-node: #4c1541;
69
+ --kerykeion-chart-color-chiron: #666f06;
70
+ --kerykeion-chart-color-first-house: #ff7e00;
71
+ --kerykeion-chart-color-tenth-house: #ff0000;
72
+ --kerykeion-chart-color-seventh-house: #0000ff;
73
+ --kerykeion-chart-color-fourth-house: #000000;
74
+ --kerykeion-chart-color-mean-lilith: #000000;
75
+
76
+ /* Elements Percentage */
77
+ --kerykeion-chart-color-air-percentage: #6f76d1;
78
+ --kerykeion-chart-color-earth-percentage: #6a2d04;
79
+ --kerykeion-chart-color-fire-percentage: #ff6600;
80
+ --kerykeion-chart-color-water-percentage: #630e73;
81
+
82
+ /* Other */
83
+ --kerykeion-chart-color-house-number: #f00;
84
+ }
85
+ </style>
86
+ """
@@ -375,7 +375,7 @@ def draw_planets(
375
375
  degree = int(t_offset)
376
376
  output += f'<g transform="translate({deg_x},{deg_y})">'
377
377
  output += f'<text transform="rotate({rotate})" text-anchor="{textanchor}'
378
- output += f'" style="fill: {available_planets_setting[i]["color"]}; font-size: 10px;">{convert_decimal_to_degree_string(t_points_deg[i], type="1")}'
378
+ output += f'" style="fill: {available_planets_setting[i]["color"]}; font-size: 10px;">{convert_decimal_to_degree_string(t_points_deg[i], format_type="1")}'
379
379
  output += "</text></g>"
380
380
 
381
381
  # check transit
@@ -36,6 +36,7 @@ from kerykeion.charts.charts_utils import (
36
36
  )
37
37
  from kerykeion.charts.draw_planets import draw_planets # type: ignore
38
38
  from kerykeion.utilities import get_houses_list
39
+ from kerykeion.charts.color_style_tags import DEFAULT_COLOR_STYLE_TAG
39
40
  from pathlib import Path
40
41
  from scour.scour import scourString
41
42
  from string import Template
@@ -103,6 +104,7 @@ class KerykeionChartSVG:
103
104
  second_obj: Union[AstrologicalSubject, AstrologicalSubjectModel, None] = None,
104
105
  new_output_directory: Union[str, None] = None,
105
106
  new_settings_file: Union[Path, None] = None,
107
+ color_style_tag: str = DEFAULT_COLOR_STYLE_TAG
106
108
  ):
107
109
  # Directories:
108
110
  self.homedir = Path.home()
@@ -184,6 +186,9 @@ class KerykeionChartSVG:
184
186
  self.air = 0.0
185
187
  self.water = 0.0
186
188
 
189
+ # Color style tag
190
+ self.color_style_tag = color_style_tag
191
+
187
192
  # Calculate element points from planets
188
193
  self._calculate_elements_points_from_planets()
189
194
 
@@ -325,6 +330,9 @@ class KerykeionChartSVG:
325
330
  # Initialize template dictionary
326
331
  template_dict: ChartTemplateDictionary = dict() # type: ignore
327
332
 
333
+ # Set the color style tag
334
+ template_dict["color_style_tag"] = self.color_style_tag
335
+
328
336
  # Set chart dimensions
329
337
  template_dict["chart_height"] = self.height
330
338
  template_dict["chart_width"] = self.width
@@ -376,7 +384,10 @@ class KerykeionChartSVG:
376
384
  template_dict["bottomLeft4"] = f'{self.t_user.perspective_type}'
377
385
 
378
386
  # Draw moon phase
379
- template_dict['moon_phase'] = draw_moon_phase(self.user.lunar_phase["degrees_between_s_m"], self.geolat)
387
+ template_dict['moon_phase'] = draw_moon_phase(
388
+ self.user.lunar_phase["degrees_between_s_m"],
389
+ self.geolat
390
+ )
380
391
 
381
392
  # Set location string
382
393
  if len(self.location) > 35:
@@ -569,7 +580,7 @@ class KerykeionChartSVG:
569
580
  def makeSVG(self, minify: bool = False):
570
581
  """Prints out the SVG file in the specifide folder"""
571
582
 
572
- if not (self.template):
583
+ if not hasattr(self, "template"):
573
584
  self.template = self.makeTemplate(minify)
574
585
 
575
586
  self.chartname = self.output_directory / f"{self.user.name} - {self.chart_type} Chart.svg"
@@ -10,6 +10,10 @@
10
10
  preserveAspectRatio="xMidYMid"
11
11
  >
12
12
  <title>$stringTitle | Kerykeion</title>
13
+
14
+ <!-- Colors -->
15
+ $color_style_tag
16
+
13
17
  <!--- Main Chart -->
14
18
  <g kr:node="Main_Chart">
15
19
 
@@ -29,73 +33,73 @@
29
33
  <text x="20" y="508" style="fill: $paper_color_0; font-size: 10px">$bottomLeft4</text>
30
34
  </g>
31
35
 
32
- <!-- Lunar Phase -->
36
+ <!-- Lunar Phase -->
33
37
  <g kr:node="Lunar_Phase" transform="translate(20,518)">
34
38
  $moon_phase
35
39
  </g>
36
40
 
37
41
  <g kr:node="Main_Content" transform="translate(50,50)">
38
- <!-- Zodiac -->
42
+ <!-- Zodiac -->
39
43
  <g kr:node="Zodiac">
40
44
  $makeZodiac
41
45
  </g>
42
46
 
43
- <!-- First Circle -->
47
+ <!-- First Circle -->
44
48
  <g kr:node="First_Circle">
45
49
  $first_circle
46
50
  </g>
47
51
 
48
- <!-- Second Circle -->
52
+ <!-- Second Circle -->
49
53
  <g kr:node="Second_Circle">
50
54
  $second_circle
51
55
  </g>
52
56
 
53
- <!-- Third Circle -->
57
+ <!-- Third Circle -->
54
58
  <g kr:node="Third_Circle">
55
59
  $third_circle
56
60
  </g>
57
61
 
58
- <!-- Transit_Ring -->
62
+ <!-- Transit_Ring -->
59
63
  <g kr:node="Transint_Ring">
60
64
  $transitRing
61
65
  </g>
62
66
 
63
- <!-- Degree Ring -->
67
+ <!-- Degree Ring -->
64
68
  <g kr:node="Degree_Ring">
65
69
  $degreeRing
66
70
  </g>
67
71
 
68
- <!-- Houses -->
72
+ <!-- Houses -->
69
73
  <g kr:node="Houses_Wheel">
70
74
  $makeHouses
71
75
  </g>
72
76
 
73
- <!-- Planets -->
77
+ <!-- Planets -->
74
78
  <g kr:node="Planets_Wheel">
75
79
  $makePlanets
76
80
  </g>
77
81
 
78
- <!-- Aspects -->
82
+ <!-- Aspects -->
79
83
  <g kr:node="Aspects_Wheel">
80
84
  $makeAspects
81
85
  </g>
82
86
 
83
- <!-- AspectGrid -->
87
+ <!-- AspectGrid -->
84
88
  <g kr:node="Aspect_Grid">
85
89
  $makeAspectGrid
86
90
  </g>
87
91
 
88
- <!-- Elements -->
92
+ <!-- Elements -->
89
93
  <g kr:node="Elements_Percentages">
90
94
  $elements_percentages
91
95
  </g>
92
96
 
93
- <!-- Planet Grid -->
97
+ <!-- Planet Grid -->
94
98
  <g kr:node="Planet_Grid">
95
99
  $makePlanetGrid
96
100
  </g>
97
101
 
98
- <!-- Houses Grid -->
102
+ <!-- Houses Grid -->
99
103
  <g kr:node="Houses_Grid">
100
104
  $makeHousesGrid
101
105
  </g>
@@ -103,9 +107,9 @@
103
107
 
104
108
  </g>
105
109
 
106
- <!-- Symbols Definitions -->
110
+ <!-- Symbols Definitions -->
107
111
  <defs>
108
- <!-- Planets (24x24) -->
112
+ <!-- Planets (24x24) -->
109
113
  <symbol id="Sun">
110
114
  <g transform="translate(1,4)">
111
115
  <circle cx="10" cy="10" r="9"
@@ -251,7 +255,7 @@
251
255
  <symbol id="Fourth_House">
252
256
  <text y="20" style="font-size: 22px; fill: $planets_color_15">Ic</text>
253
257
  </symbol>
254
- <!-- Zodiac -->
258
+ <!-- Zodiac -->
255
259
  <symbol id="Ari">
256
260
  <path
257
261
  d="M 14.833536,31 C 14.832186,29.72825 14.845936,28.45584 14.780346,27.18523 C 14.640926,24.23046 14.271927,21.28979 13.761657,18.3776 C 13.321987,15.91911 12.787787,13.46983 11.990517,11.10075 C 11.530267,9.76243 10.992887,8.44912 10.357087,7.1849 C 9.7764065,6.054 9.1143465,4.94296 8.2160065,4.03494 C 7.6282465,3.4465 6.9007265,2.94535 6.0649765,2.81624 C 5.3237266,2.70142 4.5304666,2.87571 3.9356966,3.34384 C 3.2136565,3.90519 2.7654365,4.75625 2.5438365,5.63289 C 2.3053765,6.59995 2.2959765,7.61358 2.4292165,8.5973 C 2.6464465,10.15587 3.2689665,11.63258 4.0815466,12.96908 C 3.2924465,12.96908 2.5033465,12.96908 1.7142465,12.96908 C 0.89724651,11.48481 0.25799651,9.87299 0.060256514,8.17899 C -0.071203486,7.00695 0.0037165138,5.79903 0.37149651,4.67421 C 0.76442651,3.47499 1.5195865,2.3932 2.5232565,1.6304 C 3.2809665,1.05478 4.2059366,0.71268 5.1519466,0.63781 C 6.1938265,0.54496 7.2610465,0.74619 8.1909265,1.22976 C 9.3998665,1.85021 10.363677,2.85944 11.145277,3.95766 C 12.190347,5.44147 12.965067,7.10101 13.584287,8.80382 C 14.630766,11.7176 15.212626,14.77861 15.575146,17.84795 C 15.664836,18.61648 15.739556,19.38675 15.801446,20.15803 C 15.933606,20.15803 16.065776,20.15803 16.197936,20.15803 C 16.431516,16.78332 16.919066,13.40761 17.920236,10.17029 C 18.536746,8.19886 19.343216,6.2733 20.460106,4.53209 C 21.232966,3.34246 22.178396,2.22691 23.393236,1.47473 C 24.303946,0.906 25.375406,0.59315 26.449836,0.61744 C 27.406076,0.6265 28.366336,0.88414 29.173386,1.40571 C 29.918276,1.88417 30.536726,2.54825 31.007306,3.29688 C 31.640376,4.30981 31.942786,5.5036 31.990526,6.69149 C 32.064366,8.24898 31.700306,9.79841 31.118136,11.23409 C 30.878056,11.82774 30.600746,12.40584 30.296796,12.96908 C 29.503806,12.96908 28.710826,12.96908 27.917836,12.96908 C 28.695646,11.56825 29.330906,10.06044 29.565756,8.46485 C 29.705436,7.49053 29.689976,6.48739 29.469736,5.52616 C 29.266586,4.67296 28.870956,3.83354 28.201276,3.25079 C 27.718386,2.82263 27.078466,2.59021 26.436216,2.58446 C 25.680306,2.56059 24.950086,2.87303 24.358336,3.32879 C 23.494556,3.99307 22.844986,4.89198 22.282956,5.81679 C 21.451756,7.21072 20.811436,8.71018 20.250396,10.23124 C 19.437586,12.49802 18.893326,14.85166 18.440286,17.21432 C 17.839016,20.40325 17.413216,23.6291 17.246136,26.8715 C 17.183796,28.01857 17.173966,29.16745 17.177516,30.31595 C 17.177516,30.54397 17.177516,30.77198 17.177516,31 C 16.396186,31 15.614856,31 14.833536,31 z"
@@ -324,7 +328,7 @@
324
328
  style="fill: $zodiac_color_11"
325
329
  />
326
330
  </symbol>
327
- <!-- Aspects 12x12 -->
331
+ <!-- Aspects 12x12 -->
328
332
  <symbol id="orb0">
329
333
  <path
330
334
  d="M 6.0697539,7.3234852 C 6.0697539,8.7354882 4.9173651,9.8801442 3.4958214,9.8801442 C 2.0742775,9.8801442 0.92188857,8.7354882 0.92188857,7.3234852 C 0.92188857,5.9114822 2.0742775,4.7668272 3.4958214,4.7668272 C 4.9173651,4.7668272 6.0697539,5.9114822 6.0697539,7.3234852 L 6.0697539,7.3234852 z M 5.6252609,5.2113202 C 10.07019,0.76639018 10.07019,0.76639018 10.07019,0.76639018"
@@ -522,7 +526,7 @@
522
526
  "
523
527
  />
524
528
  </symbol>
525
- <!-- retrograde symbol (12x12) -->
529
+ <!-- retrograde symbol (12x12) -->
526
530
  <symbol id="retrograde">
527
531
  <path
528
532
  d="M 5.1695089,0.06514307 C 3.7597989,0.21597207 2.3317349,0.33149007 0.91358191,0.23513107 C 1.5490329,0.81902207 1.4024849,1.7100011 1.4228379,2.4700431 C 1.4174159,5.2174481 1.4337709,7.9652731 1.4145019,10.712411 C 1.5149409,11.170848 0.96799791,11.834471 0.90284691,11.964302 C 1.9976889,11.964302 3.0925299,11.964302 4.1873719,11.964302 C 3.6018439,11.577975 3.6510929,10.820034 3.6417399,10.219838 C 3.6417399,8.8974601 3.6417399,7.5750831 3.6417399,6.2527051 C 4.5026259,7.3972911 5.3635109,8.5418771 6.2243959,9.6864631 C 5.6030699,10.013049 5.0721439,10.497354 4.3692489,10.672393 C 4.5753769,10.955706 4.7815039,11.23902 4.9876319,11.522333 C 5.4939219,11.018036 6.1426389,10.672218 6.7336529,10.264421 C 7.3897039,11.216912 8.4697479,12.048392 9.7419399,12.011579 C 10.143603,12.002199 11.067691,11.885824 11.063775,11.676075 C 9.9004969,11.128054 9.0018849,10.179085 8.4069229,9.1085041 C 8.9670439,8.6756641 9.5056289,8.1870051 10.177382,7.9086731 C 10.419881,7.8661501 10.031668,7.5763571 9.9815039,7.4190951 C 9.7896089,6.9062931 9.6214379,7.4694661 9.2950839,7.6239451 C 8.8453989,7.8927681 8.3078839,8.3646011 7.8614459,8.4454351 C 7.2551369,7.5898671 6.6488279,6.7342991 6.0425199,5.8787321 C 7.2451939,5.6174351 8.5827839,5.0853891 9.0704409,3.9368981 C 9.4063139,3.1120211 9.2637339,2.1667931 8.9107889,1.3734701 C 8.1684869,0.41091107 6.8692049,-0.072451931 5.6199729,0.02510607 C 5.4693279,0.03287207 5.3190519,0.04651007 5.1695089,0.06514307 L 5.1695089,0.06514307 z M 4.0054949,0.98307806 C 4.9274209,0.87516007 6.0752839,0.95659406 6.6119469,1.7769821 C 7.1995489,2.7436231 6.9771779,4.0277241 6.2388859,4.8694001 C 5.6053289,5.5549031 4.5521059,5.6780771 3.6417399,5.5727531 C 3.6417399,4.0655271 3.6417399,2.5583001 3.6417399,1.0510731 C 3.7629919,1.0284081 3.8842429,1.0057431 4.0054949,0.98307806 z"
@@ -84,3 +84,5 @@ class ChartTemplateDictionary(TypedDict):
84
84
  elements_percentages: str
85
85
  makePlanetGrid: str
86
86
  makeHousesGrid: str
87
+
88
+ color_style_tag: str
@@ -68,7 +68,6 @@ class KerykeionSettingsChartColorsModel(SubscriptableBaseModel):
68
68
  # Deprecated: Not used anymore
69
69
  lunar_phase_0: str = Field(title="Lunar Phase Color 0", description="Lunar Phase Color 0")
70
70
  lunar_phase_1: str = Field(title="Lunar Phase Color 1", description="Lunar Phase Color 1")
71
- lunar_phase_2: str = Field(title="Lunar Phase Color 2", description="Lunar Phase Color 2")
72
71
 
73
72
 
74
73
  # Aspect Settings
@@ -220,7 +220,7 @@
220
220
  "is_major": 1,
221
221
  "is_minor": 0,
222
222
  "orb": 10,
223
- "color": "#5757e2"
223
+ "color": "var(--kerykeion-chart-color-conjunction)"
224
224
  },
225
225
  {
226
226
  "degree": 30,
@@ -230,7 +230,7 @@
230
230
  "is_major": 0,
231
231
  "is_minor": 1,
232
232
  "orb": 1,
233
- "color": "#810757"
233
+ "color": "var(--kerykeion-chart-color-semi-sextile)"
234
234
  },
235
235
  {
236
236
  "degree": 45,
@@ -240,7 +240,7 @@
240
240
  "is_major": 0,
241
241
  "is_minor": 1,
242
242
  "orb": 1,
243
- "color": "#b14e58"
243
+ "color": "var(--kerykeion-chart-color-semi-square)"
244
244
  },
245
245
  {
246
246
  "degree": 60,
@@ -250,7 +250,7 @@
250
250
  "is_major": 1,
251
251
  "is_minor": 0,
252
252
  "orb": 6,
253
- "color": "#d59e28"
253
+ "color": "var(--kerykeion-chart-color-sextile)"
254
254
  },
255
255
  {
256
256
  "degree": 72,
@@ -260,7 +260,7 @@
260
260
  "is_major": 0,
261
261
  "is_minor": 1,
262
262
  "orb": 1,
263
- "color": "#1f99b3"
263
+ "color": "var(--kerykeion-chart-color-quintile)"
264
264
  },
265
265
  {
266
266
  "degree": 90,
@@ -270,7 +270,7 @@
270
270
  "is_major": 1,
271
271
  "is_minor": 0,
272
272
  "orb": 5,
273
- "color": "#dc0000"
273
+ "color": "var(--kerykeion-chart-color-square)"
274
274
  },
275
275
  {
276
276
  "degree": 120,
@@ -280,7 +280,7 @@
280
280
  "is_major": 1,
281
281
  "is_minor": 0,
282
282
  "orb": 8,
283
- "color": "#36d100"
283
+ "color": "var(--kerykeion-chart-color-trine)"
284
284
  },
285
285
  {
286
286
  "degree": 135,
@@ -290,7 +290,7 @@
290
290
  "is_major": 0,
291
291
  "is_minor": 1,
292
292
  "orb": 1,
293
- "color": "#985a10"
293
+ "color": "var(--kerykeion-chart-color-sesquiquadrate)"
294
294
  },
295
295
  {
296
296
  "degree": 144,
@@ -300,7 +300,7 @@
300
300
  "is_major": 0,
301
301
  "is_minor": 1,
302
302
  "orb": 1,
303
- "color": "#7a9810"
303
+ "color": "var(--kerykeion-chart-color-biquintile)"
304
304
  },
305
305
  {
306
306
  "degree": 150,
@@ -310,7 +310,7 @@
310
310
  "is_major": 0,
311
311
  "is_minor": 0,
312
312
  "orb": 1,
313
- "color": "#26bbcf"
313
+ "color": "var(--kerykeion-chart-color-quincunx)"
314
314
  },
315
315
  {
316
316
  "degree": 180,
@@ -320,14 +320,14 @@
320
320
  "is_major": 1,
321
321
  "is_minor": 0,
322
322
  "orb": 10,
323
- "color": "#510060"
323
+ "color": "var(--kerykeion-chart-color-opposition)"
324
324
  }
325
325
  ],
326
326
  "celestial_points": [
327
327
  {
328
328
  "id": 0,
329
329
  "name": "Sun",
330
- "color": "#984b00",
330
+ "color": "var(--kerykeion-chart-color-sun)",
331
331
  "is_active": true,
332
332
  "element_points": 40,
333
333
  "related_zodiac_signs": ["4"],
@@ -336,7 +336,7 @@
336
336
  {
337
337
  "id": 1,
338
338
  "name": "Moon",
339
- "color": "#150052",
339
+ "color": "var(--kerykeion-chart-color-moon)",
340
340
  "is_active": true,
341
341
  "element_points": 40,
342
342
  "related_zodiac_signs": ["3"],
@@ -345,7 +345,7 @@
345
345
  {
346
346
  "id": 2,
347
347
  "name": "Mercury",
348
- "color": "#520800",
348
+ "color": "var(--kerykeion-chart-color-mercury)",
349
349
  "is_active": true,
350
350
  "element_points": 15,
351
351
  "related_zodiac_signs": ["2", "5"],
@@ -354,7 +354,7 @@
354
354
  {
355
355
  "id": 3,
356
356
  "name": "Venus",
357
- "color": "#400052",
357
+ "color": "var(--kerykeion-chart-color-venus)",
358
358
  "is_active": true,
359
359
  "element_points": 15,
360
360
  "related_zodiac_signs": ["1", "6"],
@@ -363,7 +363,7 @@
363
363
  {
364
364
  "id": 4,
365
365
  "name": "Mars",
366
- "color": "#540000",
366
+ "color": "var(--kerykeion-chart-color-mars)",
367
367
  "is_active": true,
368
368
  "element_points": 15,
369
369
  "related_zodiac_signs": ["0"],
@@ -372,7 +372,7 @@
372
372
  {
373
373
  "id": 5,
374
374
  "name": "Jupiter",
375
- "color": "#47133d",
375
+ "color": "var(--kerykeion-chart-color-jupiter)",
376
376
  "is_active": true,
377
377
  "element_points": 10,
378
378
  "related_zodiac_signs": ["8"],
@@ -381,7 +381,7 @@
381
381
  {
382
382
  "id": 6,
383
383
  "name": "Saturn",
384
- "color": "#124500",
384
+ "color": "var(--kerykeion-chart-color-saturn)",
385
385
  "is_active": true,
386
386
  "element_points": 10,
387
387
  "related_zodiac_signs": ["9"],
@@ -390,7 +390,7 @@
390
390
  {
391
391
  "id": 7,
392
392
  "name": "Uranus",
393
- "color": "#6f0766",
393
+ "color": "var(--kerykeion-chart-color-uranus)",
394
394
  "is_active": true,
395
395
  "element_points": 10,
396
396
  "related_zodiac_signs": ["10"],
@@ -399,7 +399,7 @@
399
399
  {
400
400
  "id": 8,
401
401
  "name": "Neptune",
402
- "color": "#06537f",
402
+ "color": "var(--kerykeion-chart-color-neptune)",
403
403
  "is_active": true,
404
404
  "element_points": 10,
405
405
  "related_zodiac_signs": ["11"],
@@ -408,7 +408,7 @@
408
408
  {
409
409
  "id": 9,
410
410
  "name": "Pluto",
411
- "color": "#713f04",
411
+ "color": "var(--kerykeion-chart-color-pluto)",
412
412
  "is_active": true,
413
413
  "element_points": 10,
414
414
  "related_zodiac_signs": ["7"],
@@ -417,7 +417,7 @@
417
417
  {
418
418
  "id": 10,
419
419
  "name": "Mean_Node",
420
- "color": "#4c1541",
420
+ "color": "var(--kerykeion-chart-color-mean-node)",
421
421
  "is_active": false,
422
422
  "element_points": 0,
423
423
  "related_zodiac_signs": [],
@@ -426,7 +426,7 @@
426
426
  {
427
427
  "id": 11,
428
428
  "name": "True_Node",
429
- "color": "#4c1541",
429
+ "color": "var(--kerykeion-chart-color-true-node)",
430
430
  "is_active": true,
431
431
  "element_points": 20,
432
432
  "related_zodiac_signs": [],
@@ -435,7 +435,7 @@
435
435
  {
436
436
  "id": 12,
437
437
  "name": "Chiron",
438
- "color": "#666f06",
438
+ "color": "var(--kerykeion-chart-color-chiron)",
439
439
  "is_active": true,
440
440
  "element_points": 0,
441
441
  "related_zodiac_signs": [],
@@ -444,7 +444,7 @@
444
444
  {
445
445
  "id": 13,
446
446
  "name": "First_House",
447
- "color": "#ff7e00",
447
+ "color": "var(--kerykeion-chart-color-first-house)",
448
448
  "is_active": true,
449
449
  "element_points": 40,
450
450
  "related_zodiac_signs": [],
@@ -453,7 +453,7 @@
453
453
  {
454
454
  "id": 14,
455
455
  "name": "Tenth_House",
456
- "color": "#FF0000",
456
+ "color": "var(--kerykeion-chart-color-tenth-house)",
457
457
  "is_active": true,
458
458
  "element_points": 20,
459
459
  "related_zodiac_signs": [],
@@ -462,7 +462,7 @@
462
462
  {
463
463
  "id": 15,
464
464
  "name": "Seventh_House",
465
- "color": "#0000FF",
465
+ "color": "var(--kerykeion-chart-color-seventh-house)",
466
466
  "is_active": false,
467
467
  "element_points": 0,
468
468
  "related_zodiac_signs": [],
@@ -471,7 +471,7 @@
471
471
  {
472
472
  "id": 16,
473
473
  "name": "Fourth_House",
474
- "color": "#000000",
474
+ "color": "var(--kerykeion-chart-color-fourth-house)",
475
475
  "is_active": false,
476
476
  "element_points": 0,
477
477
  "related_zodiac_signs": [],
@@ -480,52 +480,52 @@
480
480
  {
481
481
  "id": 17,
482
482
  "name": "Mean_Lilith",
483
- "color": "#000",
483
+ "color": "var(--kerykeion-chart-color-mean-lilith)",
484
484
  "is_active": true,
485
485
  "element_points": 0,
486
486
  "related_zodiac_signs": [],
487
487
  "label": "Mean_Lilith"
488
488
  }
489
489
  ],
490
+
490
491
  "chart_colors": {
491
- "paper_0": "#000000",
492
- "paper_1": "#ffffff",
493
- "zodiac_bg_0": "#ff7200",
494
- "zodiac_bg_1": "#6b3d00",
495
- "zodiac_bg_2": "#69acf1",
496
- "zodiac_bg_3": "#2b4972",
497
- "zodiac_bg_4": "#ff7200",
498
- "zodiac_bg_5": "#6b3d00",
499
- "zodiac_bg_6": "#69acf1",
500
- "zodiac_bg_7": "#2b4972",
501
- "zodiac_bg_8": "#ff7200",
502
- "zodiac_bg_9": "#6b3d00",
503
- "zodiac_bg_10": "#69acf1",
504
- "zodiac_bg_11": "#2b4972",
505
- "zodiac_icon_0": "#ff7200",
506
- "zodiac_icon_1": "#6b3d00",
507
- "zodiac_icon_2": "#69acf1",
508
- "zodiac_icon_3": "#2b4972",
509
- "zodiac_icon_4": "#ff7200",
510
- "zodiac_icon_5": "#6b3d00",
511
- "zodiac_icon_6": "#69acf1",
512
- "zodiac_icon_7": "#2b4972",
513
- "zodiac_icon_8": "#ff7200",
514
- "zodiac_icon_9": "#6b3d00",
515
- "zodiac_icon_10": "#69acf1",
516
- "zodiac_icon_11": "#2b4972",
517
- "zodiac_radix_ring_0": "#ff0000",
518
- "zodiac_radix_ring_1": "#ff0000",
519
- "zodiac_radix_ring_2": "#ff0000",
520
- "zodiac_transit_ring_0": "#ff0000",
521
- "zodiac_transit_ring_1": "#ff0000",
522
- "zodiac_transit_ring_2": "#0000ff",
523
- "zodiac_transit_ring_3": "#0000ff",
524
- "houses_radix_line": "#ff0000",
525
- "houses_transit_line": "#0000ff",
526
- "lunar_phase_0": "#000000",
527
- "lunar_phase_1": "#FFFFFF",
528
- "lunar_phase_2": "#CCCCCC"
492
+ "paper_0": "var(--kerykeion-chart-color-paper-0)",
493
+ "paper_1": "var(--kerykeion-chart-color-paper-1)",
494
+ "zodiac_bg_0": "var(--kerykeion-chart-color-zodiac-bg-0)",
495
+ "zodiac_bg_1": "var(--kerykeion-chart-color-zodiac-bg-1)",
496
+ "zodiac_bg_2": "var(--kerykeion-chart-color-zodiac-bg-2)",
497
+ "zodiac_bg_3": "var(--kerykeion-chart-color-zodiac-bg-3)",
498
+ "zodiac_bg_4": "var(--kerykeion-chart-color-zodiac-bg-4)",
499
+ "zodiac_bg_5": "var(--kerykeion-chart-color-zodiac-bg-5)",
500
+ "zodiac_bg_6": "var(--kerykeion-chart-color-zodiac-bg-6)",
501
+ "zodiac_bg_7": "var(--kerykeion-chart-color-zodiac-bg-7)",
502
+ "zodiac_bg_8": "var(--kerykeion-chart-color-zodiac-bg-8)",
503
+ "zodiac_bg_9": "var(--kerykeion-chart-color-zodiac-bg-9)",
504
+ "zodiac_bg_10": "var(--kerykeion-chart-color-zodiac-bg-10)",
505
+ "zodiac_bg_11": "var(--kerykeion-chart-color-zodiac-bg-11)",
506
+ "zodiac_icon_0": "var(--kerykeion-chart-color-zodiac-icon-0)",
507
+ "zodiac_icon_1": "var(--kerykeion-chart-color-zodiac-icon-1)",
508
+ "zodiac_icon_2": "var(--kerykeion-chart-color-zodiac-icon-2)",
509
+ "zodiac_icon_3": "var(--kerykeion-chart-color-zodiac-icon-3)",
510
+ "zodiac_icon_4": "var(--kerykeion-chart-color-zodiac-icon-4)",
511
+ "zodiac_icon_5": "var(--kerykeion-chart-color-zodiac-icon-5)",
512
+ "zodiac_icon_6": "var(--kerykeion-chart-color-zodiac-icon-6)",
513
+ "zodiac_icon_7": "var(--kerykeion-chart-color-zodiac-icon-7)",
514
+ "zodiac_icon_8": "var(--kerykeion-chart-color-zodiac-icon-8)",
515
+ "zodiac_icon_9": "var(--kerykeion-chart-color-zodiac-icon-9)",
516
+ "zodiac_icon_10": "var(--kerykeion-chart-color-zodiac-icon-10)",
517
+ "zodiac_icon_11": "var(--kerykeion-chart-color-zodiac-icon-11)",
518
+ "zodiac_radix_ring_0": "var(--kerykeion-chart-color-zodiac-radix-ring-0)",
519
+ "zodiac_radix_ring_1": "var(--kerykeion-chart-color-zodiac-radix-ring-1)",
520
+ "zodiac_radix_ring_2": "var(--kerykeion-chart-color-zodiac-radix-ring-2)",
521
+ "zodiac_transit_ring_0": "var(--kerykeion-chart-color-zodiac-transit-ring-0)",
522
+ "zodiac_transit_ring_1": "var(--kerykeion-chart-color-zodiac-transit-ring-1)",
523
+ "zodiac_transit_ring_2": "var(--kerykeion-chart-color-zodiac-transit-ring-2)",
524
+ "zodiac_transit_ring_3": "var(--kerykeion-chart-color-zodiac-transit-ring-3)",
525
+ "houses_radix_line": "var(--kerykeion-chart-color-houses-radix-line)",
526
+ "houses_transit_line": "var(--kerykeion-chart-color-houses-transit-line)",
527
+ "lunar_phase_0": "var(--kerykeion-chart-color-lunar-phase-0)",
528
+ "lunar_phase_1": "var(--kerykeion-chart-color-lunar-phase-1)"
529
529
  },
530
530
  "general_settings": {
531
531
  "axes_orbit": 1,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kerykeion
3
- Version: 4.14.10
3
+ Version: 4.15.0
4
4
  Summary: A python library for astrology.
5
5
  Home-page: https://www.kerykeion.net/
6
6
  License: AGPL-3.0
@@ -6,29 +6,30 @@ kerykeion/aspects/natal_aspects.py,sha256=KnrHt8AvEE66RWLXXAMv-srm8x077AHLtoNabj
6
6
  kerykeion/aspects/synastry_aspects.py,sha256=_qrsdzxtZ8nl_f4k3q2iRFL10GNp7zM5sJEEz2XBWhg,4324
7
7
  kerykeion/astrological_subject.py,sha256=CFrg9eY_-ihN2idTyqLw3lmGcBV7OJlAw2kse_t8woM,34828
8
8
  kerykeion/charts/__init__.py,sha256=Juxkduy2TaagWblh_7CE8Acrg3dHL27-WEddJhau_eQ,127
9
- kerykeion/charts/charts_utils.py,sha256=VqY9r2g3QrKKB8fxnaLazP3p14DE_CuuItqRED71aeY,38683
10
- kerykeion/charts/draw_planets.py,sha256=-EO_fD1gmkdokT5MUp0iVUlSDpoCVV4ry2FeKWhO0Lk,17386
11
- kerykeion/charts/kerykeion_chart_svg.py,sha256=FCDjbhPnH8Dvgk4zi69d99hqfTZ4frpm6MF1c-vqeqk,30146
12
- kerykeion/charts/templates/chart.xml,sha256=tNOGyugpObF164ydR6gg9gBm9mDiLsAa9-VBDW6MKqc,68163
9
+ kerykeion/charts/charts_utils.py,sha256=jQngriIhrnGRwxAbAtIkI5dxSEyKeumnxufT5EsB2iA,38524
10
+ kerykeion/charts/color_style_tags.py,sha256=6p2lhL8LzPFxr_G9siR_hvo8XKov-OoVgUlvguK54gc,4066
11
+ kerykeion/charts/draw_planets.py,sha256=Uty3zpWYMQZvvK7ZHhlmynCHeL8DIN3qL2ifnBXVciM,17393
12
+ kerykeion/charts/kerykeion_chart_svg.py,sha256=wOIj3GmN7goSegR66Mt3EbkSTao5nE8sT131jPw1xaM,30489
13
+ kerykeion/charts/templates/chart.xml,sha256=7l1whVk8OPdXZYlRU_zfNWVDuXopLTu2ftw4ix4-HIU,68282
13
14
  kerykeion/enums.py,sha256=Xp_0A6jBSW7SZvB5LlKfBObg0xTqB6hTq1IXjz-UWl4,997
14
15
  kerykeion/ephemeris_data.py,sha256=AL9yilyRAL2e6L6hqxDkzSOqmKlHKgxhBDRS4wZd5HE,8309
15
16
  kerykeion/fetch_geonames.py,sha256=NmyTErvKISjJCAxvRB1H35aVZI8_-_U-Cqb_rmqRseA,4563
16
17
  kerykeion/kr_types/__init__.py,sha256=-qhGQikurdoHnGtuT1bsaEeZ-IwmZtIHMjGOPC9_oqQ,295
17
- kerykeion/kr_types/chart_types.py,sha256=89Z2RVoLVWvYSEbMlb910M-7nVV-Azc8nzK0TC23TJk,1957
18
+ kerykeion/kr_types/chart_types.py,sha256=OlDvjCra7acaBT--B_gqsqOcAwbuKCXmQQyDTDNfy4o,1983
18
19
  kerykeion/kr_types/kerykeion_exception.py,sha256=G-7VFta78qBt10l54JZWvwH-3lUNKmDwuILXaVGVu9A,314
19
20
  kerykeion/kr_types/kr_literals.py,sha256=G7yoDQ7bUJNllZaNXR9_Zlwwtzv6t2XKoLb5go_Al68,3295
20
21
  kerykeion/kr_types/kr_models.py,sha256=x6s-OOim5DRxtbH8t4Rk4sO26RMj7-aJgydZoslRiKw,3805
21
- kerykeion/kr_types/settings_models.py,sha256=Zpa_SYY46HPpup1oDnBCw-eELxSQVA8my2Vk_wKMESI,12605
22
+ kerykeion/kr_types/settings_models.py,sha256=hDDoJBz1arIsBySKUeqpmW9mw4aOaoUQo6icMfI1sgQ,12510
22
23
  kerykeion/relationship_score.py,sha256=LzEA2JXb_GeUinjfEtce_eQ97jxXFGfK3B97fODHIOE,6992
23
24
  kerykeion/report.py,sha256=QEZfadIxmqIugoLHMW0KBhOqCwTywGSDDfpX4NJD6qg,2785
24
25
  kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
25
26
  kerykeion/settings/kerykeion_settings.py,sha256=uRAbhJ0ZXAbGBPGJjhh5u8YX2phcXobEwJA646wMHcM,2347
26
- kerykeion/settings/kr.config.json,sha256=3BNbPBfF-hCMx-LWtQxWCE7npf7lOrJ-AIOzowLwdgs,12646
27
+ kerykeion/settings/kr.config.json,sha256=OT_aqKDiWIGGufGyl4qRLWgz6_br0-VYuVAf_Jpf8vY,14817
27
28
  kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
28
29
  kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
29
30
  kerykeion/utilities.py,sha256=wJdjksXZlMWyvFnEe_1HQuCxYAtAWg-p8lqe2aO2zpE,9046
30
- kerykeion-4.14.10.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
31
- kerykeion-4.14.10.dist-info/METADATA,sha256=mxqiTEwLGKUVCkbfuOPvri9D6rozIDt5XcTQTHP8x_I,14426
32
- kerykeion-4.14.10.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
33
- kerykeion-4.14.10.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
34
- kerykeion-4.14.10.dist-info/RECORD,,
31
+ kerykeion-4.15.0.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
32
+ kerykeion-4.15.0.dist-info/METADATA,sha256=uf9pRYwXcFsX5RTdwPbsyZCIg6PYQoHhjadwfT0H0t8,14425
33
+ kerykeion-4.15.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
34
+ kerykeion-4.15.0.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
35
+ kerykeion-4.15.0.dist-info/RECORD,,