kerykeion 4.16.4__py3-none-any.whl → 4.17.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.

@@ -12,6 +12,7 @@ from dataclasses import dataclass
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
14
  from kerykeion.kr_types.kr_models import AstrologicalSubjectModel
15
+ from kerykeion.kr_types.settings_models import KerykeionSettingsModel
15
16
 
16
17
 
17
18
  AXES_LIST = [
@@ -29,7 +30,7 @@ class NatalAspects:
29
30
  """
30
31
 
31
32
  user: Union[AstrologicalSubject, AstrologicalSubjectModel]
32
- new_settings_file: Union[Path, None] = None
33
+ new_settings_file: Union[Path, KerykeionSettingsModel, dict, None] = None
33
34
 
34
35
  def __post_init__(self):
35
36
  self.settings = get_settings(self.new_settings_file)
@@ -12,6 +12,7 @@ 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
14
  from kerykeion.kr_types.kr_models import AstrologicalSubjectModel
15
+ from kerykeion.kr_types.settings_models import KerykeionSettingsModel
15
16
  from typing import Union
16
17
 
17
18
 
@@ -24,7 +25,7 @@ class SynastryAspects(NatalAspects):
24
25
  self,
25
26
  kr_object_one: Union[AstrologicalSubject, AstrologicalSubjectModel],
26
27
  kr_object_two: Union[AstrologicalSubject, AstrologicalSubjectModel],
27
- new_settings_file: Union[Path, None] = None,
28
+ new_settings_file: Union[Path, KerykeionSettingsModel, dict, None] = None
28
29
  ):
29
30
  # Subjects
30
31
  self.first_user = kr_object_one
@@ -14,7 +14,7 @@ from kerykeion.astrological_subject import AstrologicalSubject
14
14
  from kerykeion.kr_types import KerykeionException, ChartType, KerykeionPointModel, Sign
15
15
  from kerykeion.kr_types import ChartTemplateDictionary
16
16
  from kerykeion.kr_types.kr_models import AstrologicalSubjectModel
17
- from kerykeion.kr_types.settings_models import KerykeionSettingsCelestialPointModel
17
+ from kerykeion.kr_types.settings_models import KerykeionSettingsCelestialPointModel, KerykeionSettingsModel
18
18
  from kerykeion.kr_types.kr_literals import KerykeionChartTheme
19
19
  from kerykeion.charts.charts_utils import (
20
20
  draw_zodiac_slice,
@@ -59,6 +59,8 @@ class KerykeionChartSVG:
59
59
  In the settings file you can set the language, colors, planets, aspects, etc.
60
60
  - theme: Set the theme for the chart (default: classic). If None the <style> tag will be empty.
61
61
  That's useful if you want to use your own CSS file customizing the value of the default theme variables.
62
+ - double_chart_aspect_grid_type: Set the type of the aspect grid for the double chart (transit or synastry). (Default: list.)
63
+ - chart_language: Set the language for the chart (default: EN).
62
64
  """
63
65
 
64
66
  # Constants
@@ -71,7 +73,7 @@ class KerykeionChartSVG:
71
73
  second_obj: Union[AstrologicalSubject, AstrologicalSubjectModel, None]
72
74
  chart_type: ChartType
73
75
  new_output_directory: Union[Path, None]
74
- new_settings_file: Union[Path, None]
76
+ new_settings_file: Union[Path, None, KerykeionSettingsModel, dict]
75
77
  output_directory: Path
76
78
 
77
79
  # Internal properties
@@ -105,13 +107,15 @@ class KerykeionChartSVG:
105
107
  chart_type: ChartType = "Natal",
106
108
  second_obj: Union[AstrologicalSubject, AstrologicalSubjectModel, None] = None,
107
109
  new_output_directory: Union[str, None] = None,
108
- new_settings_file: Union[Path, None] = None,
110
+ new_settings_file: Union[Path, None, KerykeionSettingsModel, dict] = None,
109
111
  theme: Union[KerykeionChartTheme, None] = "classic",
110
- double_chart_aspect_grid_type: Literal["list", "table"] = "list"
112
+ double_chart_aspect_grid_type: Literal["list", "table"] = "list",
113
+ chart_language: str = "EN",
111
114
  ):
112
115
  # Directories:
113
116
  self.homedir = Path.home()
114
117
  self.new_settings_file = new_settings_file
118
+ self.chart_language = chart_language
115
119
 
116
120
  if new_output_directory:
117
121
  self.output_directory = Path(new_output_directory)
@@ -221,14 +225,13 @@ class KerykeionChartSVG:
221
225
  self.output_directory = dir_path
222
226
  logging.info(f"Output direcotry set to: {self.output_directory}")
223
227
 
224
- def parse_json_settings(self, settings_file):
228
+ def parse_json_settings(self, settings_file_or_dict: Union[Path, dict, KerykeionSettingsModel, None]) -> None:
225
229
  """
226
230
  Parse the settings file.
227
231
  """
228
- settings = get_settings(settings_file)
232
+ settings = get_settings(settings_file_or_dict)
229
233
 
230
- language = settings["general_settings"]["language"]
231
- self.language_settings = settings["language_settings"].get(language, "EN")
234
+ self.language_settings = settings["language_settings"][self.chart_language]
232
235
  self.chart_colors_settings = settings["chart_colors"]
233
236
  self.planets_settings = settings["celestial_points"]
234
237
  self.aspects_settings = settings["aspects"]
@@ -572,7 +575,7 @@ class KerykeionChartSVG:
572
575
 
573
576
  # Set date time string
574
577
  dt = datetime.fromisoformat(self.user.iso_formatted_local_datetime)
575
- custom_format = dt.strftime('%Y-%-m-%-d %H:%M [%z]') # Note the use of '-' to remove leading zeros
578
+ custom_format = dt.strftime('%Y-%m-%d %H:%M [%z]')
576
579
  custom_format = custom_format[:-3] + ':' + custom_format[-3:]
577
580
  template_dict["stringDateTime"] = f"{custom_format}"
578
581
 
@@ -845,4 +848,44 @@ if __name__ == "__main__":
845
848
  # Transit Chart With draw_transit_aspect_grid table
846
849
  transit_chart_with_table_grid_subject = AstrologicalSubject("John Lennon - TCWTG", 1940, 10, 9, 18, 30, "Liverpool", "GB")
847
850
  transit_chart_with_table_grid = KerykeionChartSVG(transit_chart_with_table_grid_subject, "Transit", second, double_chart_aspect_grid_type="table", theme="dark")
848
- transit_chart_with_table_grid.makeSVG()
851
+ transit_chart_with_table_grid.makeSVG()
852
+
853
+ # Chines Language Chart
854
+ chinese_subject = AstrologicalSubject("Hua Chenyu", 1990, 2, 7, 12, 0, "Hunan", "CN")
855
+ chinese_chart = KerykeionChartSVG(chinese_subject, chart_language="CN")
856
+ chinese_chart.makeSVG()
857
+
858
+ # French Language Chart
859
+ french_subject = AstrologicalSubject("Jeanne Moreau", 1928, 1, 23, 10, 0, "Paris", "FR")
860
+ french_chart = KerykeionChartSVG(french_subject, chart_language="FR")
861
+ french_chart.makeSVG()
862
+
863
+ # Spanish Language Chart
864
+ spanish_subject = AstrologicalSubject("Antonio Banderas", 1960, 8, 10, 12, 0, "Malaga", "ES")
865
+ spanish_chart = KerykeionChartSVG(spanish_subject, chart_language="ES")
866
+ spanish_chart.makeSVG()
867
+
868
+ # Portuguese Language Chart
869
+ portuguese_subject = AstrologicalSubject("Cristiano Ronaldo", 1985, 2, 5, 5, 25, "Funchal", "PT")
870
+ portuguese_chart = KerykeionChartSVG(portuguese_subject, chart_language="PT")
871
+ portuguese_chart.makeSVG()
872
+
873
+ # Italian Language Chart
874
+ italian_subject = AstrologicalSubject("Sophia Loren", 1934, 9, 20, 2, 0, "Rome", "IT")
875
+ italian_chart = KerykeionChartSVG(italian_subject, chart_language="IT")
876
+ italian_chart.makeSVG()
877
+
878
+ # Russian Language Chart
879
+ russian_subject = AstrologicalSubject("Mikhail Bulgakov", 1891, 5, 15, 12, 0, "Kiev", "UA")
880
+ russian_chart = KerykeionChartSVG(russian_subject, chart_language="RU")
881
+ russian_chart.makeSVG()
882
+
883
+ # Turkish Language Chart
884
+ turkish_subject = AstrologicalSubject("Mehmet Oz", 1960, 6, 11, 12, 0, "Istanbul", "TR")
885
+ turkish_chart = KerykeionChartSVG(turkish_subject, chart_language="TR")
886
+ turkish_chart.makeSVG()
887
+
888
+ # German Language Chart
889
+ german_subject = AstrologicalSubject("Albert Einstein", 1879, 3, 14, 11, 30, "Ulm", "DE")
890
+ german_chart = KerykeionChartSVG(german_subject, chart_language="DE")
891
+ german_chart.makeSVG()
@@ -11,7 +11,7 @@ from typing import Dict, Union
11
11
  from kerykeion.kr_types import KerykeionSettingsModel
12
12
 
13
13
 
14
- def get_settings(new_settings_file: Union[Path, None] = None) -> KerykeionSettingsModel:
14
+ def get_settings(new_settings_file: Union[Path, None, KerykeionSettingsModel, dict] = None) -> KerykeionSettingsModel:
15
15
  """
16
16
  This function is used to get the settings dict from the settings file.
17
17
  If no settings file is passed as argument, or the file is not found, it will fallback to:
@@ -25,6 +25,11 @@ def get_settings(new_settings_file: Union[Path, None] = None) -> KerykeionSettin
25
25
  Dict: The settings dict
26
26
  """
27
27
 
28
+ if isinstance(new_settings_file, dict):
29
+ return KerykeionSettingsModel(**new_settings_file)
30
+ elif isinstance(new_settings_file, KerykeionSettingsModel):
31
+ return new_settings_file
32
+
28
33
  # Config path we passed as argument
29
34
  if new_settings_file is not None:
30
35
  settings_file = new_settings_file
@@ -209,6 +209,174 @@
209
209
  "Chiron": "凱龍星",
210
210
  "Mean_Lilith": "黑月亮"
211
211
  }
212
+ },
213
+ "ES": {
214
+ "info": "Información",
215
+ "cusp": "Casa",
216
+ "longitude": "Longitud",
217
+ "latitude": "Latitud",
218
+ "north": "Norte",
219
+ "east": "Este",
220
+ "south": "Sur",
221
+ "west": "Oeste",
222
+ "fire": "Fuego",
223
+ "earth": "Tierra",
224
+ "air": "Aire",
225
+ "water": "Agua",
226
+ "and_word": "y",
227
+ "transits": "Tránsitos para",
228
+ "type": "Tipo",
229
+ "aspects": "Aspectos de la pareja",
230
+ "planets_and_house": "Puntos para",
231
+ "transit_name": "En el momento del tránsito",
232
+ "lunar_phase": "Fase lunar",
233
+ "day": "Día",
234
+ "celestial_points": {
235
+ "Sun": "Sol",
236
+ "Moon": "Luna",
237
+ "Mercury": "Mercurio",
238
+ "Venus": "Venus",
239
+ "Mars": "Marte",
240
+ "Jupiter": "Júpiter",
241
+ "Saturn": "Saturno",
242
+ "Uranus": "Urano",
243
+ "Neptune": "Neptuno",
244
+ "Pluto": "Plutón",
245
+ "Asc": "Asc",
246
+ "Mc": "Mc",
247
+ "Dsc": "Dsc",
248
+ "Ic": "Ic",
249
+ "True_Node": "Nodo Norte",
250
+ "Mean_Node": "Nodo Medio",
251
+ "Chiron": "Quirón",
252
+ "Mean_Lilith": "Lilith"
253
+ }
254
+ },
255
+ "RU": {
256
+ "info": "Информация",
257
+ "cusp": "Дом",
258
+ "longitude": "Долгота",
259
+ "latitude": "Широта",
260
+ "north": "Север",
261
+ "east": "Восток",
262
+ "south": "Юг",
263
+ "west": "Запад",
264
+ "fire": "Огонь",
265
+ "earth": "Земля",
266
+ "air": "Воздух",
267
+ "water": "Вода",
268
+ "and_word": "и",
269
+ "transits": "Транзиты для",
270
+ "type": "Тип",
271
+ "aspects": "Аспекты пары",
272
+ "planets_and_house": "Пункты для",
273
+ "transit_name": "В момент транзита",
274
+ "lunar_phase": "Лунная фаза",
275
+ "day": "День",
276
+ "celestial_points": {
277
+ "Sun": "Солнце",
278
+ "Moon": "Луна",
279
+ "Mercury": "Меркурий",
280
+ "Venus": "Венера",
281
+ "Mars": "Марс",
282
+ "Jupiter": "Юпитер",
283
+ "Saturn": "Сатурн",
284
+ "Uranus": "Уран",
285
+ "Neptune": "Нептун",
286
+ "Pluto": "Плутон",
287
+ "Asc": "Асц",
288
+ "Mc": "MC",
289
+ "Dsc": "ДСЦ",
290
+ "Ic": "IC",
291
+ "True_Node": "Северный узел",
292
+ "Mean_Node": "Средний узел",
293
+ "Chiron": "Хирон",
294
+ "Mean_Lilith": "Лилит"
295
+ }
296
+ },
297
+ "TR": {
298
+ "info": "Bilgi",
299
+ "cusp": "Ev",
300
+ "longitude": "Boylam",
301
+ "latitude": "Enlem",
302
+ "north": "Kuzey",
303
+ "east": "Doğu",
304
+ "south": "Güney",
305
+ "west": "Batı",
306
+ "fire": "Ateş",
307
+ "earth": "Toprak",
308
+ "air": "Hava",
309
+ "water": "Su",
310
+ "and_word": "ve",
311
+ "transits": "Geçişler için",
312
+ "type": "Tür",
313
+ "aspects": "Çiftin Açılar",
314
+ "planets_and_house": "Puanlar için",
315
+ "transit_name": "Geçiş anında",
316
+ "lunar_phase": "Ay Aşaması",
317
+ "day": "Gün",
318
+ "celestial_points": {
319
+ "Sun": "Güneş",
320
+ "Moon": "Ay",
321
+ "Mercury": "Merkür",
322
+ "Venus": "Venüs",
323
+ "Mars": "Mars",
324
+ "Jupiter": "Jüpiter",
325
+ "Saturn": "Satürn",
326
+ "Uranus": "Uranüs",
327
+ "Neptune": "Neptün",
328
+ "Pluto": "Plüton",
329
+ "Asc": "Yükselen",
330
+ "Mc": "MC",
331
+ "Dsc": "İK",
332
+ "Ic": "IC",
333
+ "True_Node": "Kuzey Düğümü",
334
+ "Mean_Node": "Ortalama Düğüm",
335
+ "Chiron": "Kiron",
336
+ "Mean_Lilith": "Lilith"
337
+ }
338
+ },
339
+ "DE": {
340
+ "info": "Informationen",
341
+ "cusp": "Haus",
342
+ "longitude": "Längengrad",
343
+ "latitude": "Breitengrad",
344
+ "north": "Norden",
345
+ "east": "Osten",
346
+ "south": "Süden",
347
+ "west": "Westen",
348
+ "fire": "Feuer",
349
+ "earth": "Erde",
350
+ "air": "Luft",
351
+ "water": "Wasser",
352
+ "and_word": "und",
353
+ "transits": "Transite für",
354
+ "type": "Typ",
355
+ "aspects": "Aspekte des Paares",
356
+ "planets_and_house": "Punkte für",
357
+ "transit_name": "Zum Zeitpunkt des Transits",
358
+ "lunar_phase": "Mondphase",
359
+ "day": "Tag",
360
+ "celestial_points": {
361
+ "Sun": "Sonne",
362
+ "Moon": "Mond",
363
+ "Mercury": "Merkur",
364
+ "Venus": "Venus",
365
+ "Mars": "Mars",
366
+ "Jupiter": "Jupiter",
367
+ "Saturn": "Saturn",
368
+ "Uranus": "Uranus",
369
+ "Neptune": "Neptun",
370
+ "Pluto": "Pluto",
371
+ "Asc": "Asz",
372
+ "Mc": "MC",
373
+ "Dsc": "DSC",
374
+ "Ic": "IC",
375
+ "True_Node": "Wahrer Mondknoten",
376
+ "Mean_Node": "Mittlerer Mondknoten",
377
+ "Chiron": "Chiron",
378
+ "Mean_Lilith": "Lilith"
379
+ }
212
380
  }
213
381
  },
214
382
  "aspects": [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kerykeion
3
- Version: 4.16.4
3
+ Version: 4.17.0
4
4
  Summary: A python library for astrology.
5
5
  Home-page: https://www.kerykeion.net/
6
6
  License: AGPL-3.0
@@ -318,6 +318,29 @@ More examples [here](https://www.kerykeion.net/docs/examples/perspective-type/).
318
318
 
319
319
  Full list of supported perspective types [here](https://www.kerykeion.net/pydocs/kerykeion/kr_types/kr_literals.html#PerspectiveType).
320
320
 
321
+ ## Themes
322
+
323
+ You can now personalize your astrological charts with different themes! Four themes are available:
324
+
325
+ - **Classic** (default)
326
+ - **Dark**
327
+ - **Dark High Contrast**
328
+ - **Light**
329
+
330
+ Each theme offers a distinct visual style, allowing you to choose the one that best suits your preferences or presentation needs. If you prefer more control over the appearance, you can opt not to set any theme, making it easier to customize the chart by overriding the default CSS variables. For more detailed instructions on how to apply themes, check the [documentation](https://www.kerykeion.net/docs/examples/theming)
331
+
332
+ Here's an example of how to set the theme:
333
+
334
+ ```python
335
+ from kerykeion import AstrologicalSubject, KerykeionChartSVG
336
+
337
+ dark_theme_subject = AstrologicalSubject("John Lennon - Dark Theme", 1940, 10, 9, 18, 30, "Liverpool", "GB")
338
+ dark_theme_natal_chart = KerykeionChartSVG(dark_high_contrast_theme_subject, theme="dark_high_contrast")
339
+ dark_theme_natal_chart.makeSVG()
340
+ ```
341
+
342
+ ![John Lennon](https://www.kerykeion.net/assets/img/showcase/John%20Lennon%20-%20Dark%20-%20Natal%20Chart.svg)
343
+
321
344
  ## Alternative Initialization
322
345
 
323
346
  You can initialize the AstrologicalSubject from a **UTC** ISO 8601 string:
@@ -351,16 +374,20 @@ Sooner or later I'll try to write an extensive documentation.
351
374
 
352
375
  You can clone this repository or download a zip file using the right side buttons.
353
376
 
354
- ## Contributing
377
+ ## Integrate Kerykeion Functionalities in Your Project
355
378
 
356
- Feel free to contribute to the code!
379
+ If you are interested in integrating Kerykeion's astrological functionalities into your project, I would be happy to collaborate with you. Whether you need custom features, support, or consultation, feel free to reach out to me at my [email](mailto:kerykeion.astrology@gmail.com?subject=Integration%20Request) address.
357
380
 
358
381
  ## License
359
382
 
360
383
  This project is licensed under the AGPL-3.0 License.
361
384
  To understand how this impacts your use of the software, please see the [LICENSE](LICENSE) file for details.
362
- If you have questions, you can reach out to me at my [email](mailto:battaglia.giacomo@yahoo.it?subject=Kerykeion) address.
385
+ If you have questions, you can reach out to me at my [email](mailto:kerykeion.astrology@gmail.com?subject=Kerykeion) address.
363
386
  As a rule of thumb, if you are using this library in a project, you should open source the code of the project with a compatible license.
364
387
 
365
388
  You can implement the logic of kerykeion in your project and also keep it closed source by using a third party API, like the [AstrologerAPI](https://rapidapi.com/gbattaglia/api/astrologer/). The AstrologerAPI is AGPL-3.0 compliant. Subscribing to the API is also, currently, the best way to support the project.
366
389
 
390
+ ## Contributing
391
+
392
+ Feel free to contribute to the code!
393
+
@@ -2,13 +2,13 @@ LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
2
2
  kerykeion/__init__.py,sha256=f4_J_hAh_OSLAUrabqVhrc1rH59I6X1LS9vuAEzE9PY,536
3
3
  kerykeion/aspects/__init__.py,sha256=9FlDVI1ndCJga0-chNIhcLitjU_x3kbtAFfFqVp2ejc,293
4
4
  kerykeion/aspects/aspects_utils.py,sha256=vV21Xr5b3TF-HQ28h56VZeoCHcObHNxErW18S-kUxms,5508
5
- kerykeion/aspects/natal_aspects.py,sha256=KnrHt8AvEE66RWLXXAMv-srm8x077AHLtoNabjeC9KI,4790
6
- kerykeion/aspects/synastry_aspects.py,sha256=_qrsdzxtZ8nl_f4k3q2iRFL10GNp7zM5sJEEz2XBWhg,4324
5
+ kerykeion/aspects/natal_aspects.py,sha256=rnzdwTNGaRETs8qDMYE81mAIuKTOmmoN7ak1mtgOGF0,4890
6
+ kerykeion/aspects/synastry_aspects.py,sha256=cy7Zz5EcR5LKMgCyZxRRnJxGlFNVrUMxCFFq2kykgwY,4423
7
7
  kerykeion/astrological_subject.py,sha256=YkEHyge_S6FTsAsLNuSMBR-4XdNMFhRo6lHqYdp-u6Y,35045
8
8
  kerykeion/charts/__init__.py,sha256=Juxkduy2TaagWblh_7CE8Acrg3dHL27-WEddJhau_eQ,127
9
9
  kerykeion/charts/charts_utils.py,sha256=IMvYy6jt6HmZZqpE1FIMhpL3eIqdxq2_aaF1RrpgzpE,42148
10
10
  kerykeion/charts/draw_planets.py,sha256=Uty3zpWYMQZvvK7ZHhlmynCHeL8DIN3qL2ifnBXVciM,17393
11
- kerykeion/charts/kerykeion_chart_svg.py,sha256=Es4G3jGEbU-RmDPAjQC_QOL6LUObiU2Gl8iwpF5Jc0g,40499
11
+ kerykeion/charts/kerykeion_chart_svg.py,sha256=RuU14RNWM6b-fmPPUviHps_EI1GQRtMWDVVWNoQyFVg,42668
12
12
  kerykeion/charts/templates/aspect_grid_only.xml,sha256=5CUctWk2wgXV-ev2JHJ5yLlow7gzzFZz1eO744PLu2A,65150
13
13
  kerykeion/charts/templates/chart.xml,sha256=ryQao1xDqlSjNUY0HzZiJjdRK__mQoMFA3WV-W6t5Jo,68383
14
14
  kerykeion/charts/templates/wheel_only.xml,sha256=xyFlULo1rKZDk8kT9pRWgaEoYyNcmwK40PARKqr30FY,66372
@@ -28,13 +28,13 @@ kerykeion/kr_types/settings_models.py,sha256=hDDoJBz1arIsBySKUeqpmW9mw4aOaoUQo6i
28
28
  kerykeion/relationship_score.py,sha256=LzEA2JXb_GeUinjfEtce_eQ97jxXFGfK3B97fODHIOE,6992
29
29
  kerykeion/report.py,sha256=QEZfadIxmqIugoLHMW0KBhOqCwTywGSDDfpX4NJD6qg,2785
30
30
  kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
31
- kerykeion/settings/kerykeion_settings.py,sha256=uRAbhJ0ZXAbGBPGJjhh5u8YX2phcXobEwJA646wMHcM,2347
32
- kerykeion/settings/kr.config.json,sha256=OT_aqKDiWIGGufGyl4qRLWgz6_br0-VYuVAf_Jpf8vY,14817
31
+ kerykeion/settings/kerykeion_settings.py,sha256=zGLq9vNUQRXs8KY47EyKZ9bHrDl2gNYrvVhwsbh4yas,2578
32
+ kerykeion/settings/kr.config.json,sha256=G7P9k6zwN7XqYyqAYZ4ATIkDJAh5E9nSQDoYDzfTRU0,19481
33
33
  kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
34
34
  kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
35
35
  kerykeion/utilities.py,sha256=wJdjksXZlMWyvFnEe_1HQuCxYAtAWg-p8lqe2aO2zpE,9046
36
- kerykeion-4.16.4.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
37
- kerykeion-4.16.4.dist-info/METADATA,sha256=hvJmPMkG1quGdw23pvMiS-AhLdexHZaYMk01tNxaIUQ,14428
38
- kerykeion-4.16.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
39
- kerykeion-4.16.4.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
40
- kerykeion-4.16.4.dist-info/RECORD,,
36
+ kerykeion-4.17.0.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
37
+ kerykeion-4.17.0.dist-info/METADATA,sha256=od1EdESgWryLgY1m00zckK-PqvlBQg-7Q1W29z2sWms,15895
38
+ kerykeion-4.17.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
39
+ kerykeion-4.17.0.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
40
+ kerykeion-4.17.0.dist-info/RECORD,,