kerykeion 4.20.0__py3-none-any.whl → 4.21.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.

kerykeion/__init__.py CHANGED
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
 
5
5
  .. include:: ../README.md
6
6
  """
@@ -1,8 +1,8 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
 
5
- The aspects module contains the classes and functions for calculating
5
+ The aspects module contains the classes and functions for calculating
6
6
  aspects between planets and points in a chart.
7
7
  """
8
8
 
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
  # TODO: Better documentation and unit tests
6
6
 
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
  from pathlib import Path
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
  from kerykeion import AstrologicalSubject
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
  import pytz
@@ -40,6 +40,7 @@ DEFAULT_SIDEREAL_MODE: SiderealMode = "FAGAN_BRADLEY"
40
40
  DEFAULT_HOUSES_SYSTEM_IDENTIFIER: HousesSystemIdentifier = "P"
41
41
  DEFAULT_ZODIAC_TYPE: ZodiacType = "Tropic"
42
42
  DEFAULT_PERSPECTIVE_TYPE: PerspectiveType = "Apparent Geocentric"
43
+ DEFAULT_GEONAMES_CACHE_EXPIRE_AFTER_DAYS = 30
43
44
  GEONAMES_DEFAULT_USERNAME_WARNING = (
44
45
  "\n********\n"
45
46
  "NO GEONAMES USERNAME SET!\n"
@@ -89,6 +90,7 @@ class AstrologicalSubject:
89
90
  - perspective_type (PerspectiveType, optional): The perspective to use for the calculation of the chart.
90
91
  Defaults to "Apparent Geocentric".
91
92
  Available perspectives are visible in the PerspectiveType Literal.
93
+ - cache_expire_after_days (int, optional): The number of days after which the geonames cache will expire. Defaults to 30.
92
94
  - is_dst (Union[None, bool], optional): Specify if the time is in DST. Defaults to None.
93
95
  By default (None), the library will try to guess if the time is in DST or not and raise an AmbiguousTimeError
94
96
  if it can't guess. If you know the time is in DST, set this to True, if you know it's not, set it to False.
@@ -187,6 +189,7 @@ class AstrologicalSubject:
187
189
  sidereal_mode: Union[SiderealMode, None] = None,
188
190
  houses_system_identifier: HousesSystemIdentifier = DEFAULT_HOUSES_SYSTEM_IDENTIFIER,
189
191
  perspective_type: PerspectiveType = DEFAULT_PERSPECTIVE_TYPE,
192
+ cache_expire_after_days: int = DEFAULT_GEONAMES_CACHE_EXPIRE_AFTER_DAYS,
190
193
  is_dst: Union[None, bool] = None,
191
194
  disable_chiron_and_lilith: bool = False
192
195
  ) -> None:
@@ -219,6 +222,7 @@ class AstrologicalSubject:
219
222
  self.sidereal_mode = sidereal_mode
220
223
  self.houses_system_identifier = houses_system_identifier
221
224
  self.perspective_type = perspective_type
225
+ self.cache_expire_after_days = cache_expire_after_days
222
226
  self.is_dst = is_dst
223
227
  self.disable_chiron_and_lilith = disable_chiron_and_lilith
224
228
 
@@ -381,6 +385,7 @@ class AstrologicalSubject:
381
385
  self.city,
382
386
  self.nation,
383
387
  username=self.geonames_username,
388
+ cache_expire_after_days=self.cache_expire_after_days
384
389
  )
385
390
  self.city_data: dict[str, str] = geonames.get_serialized_data()
386
391
 
@@ -1,5 +1,5 @@
1
1
  """
2
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
2
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
3
3
 
4
4
  This modules contains the charts logic for the Kerykeion project.
5
- """
5
+ """
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
 
@@ -1,10 +1,11 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
 
7
7
  import logging
8
+ from datetime import timedelta
8
9
  from requests import Request
9
10
  from requests_cache import CachedSession
10
11
  from typing import Union
@@ -15,9 +16,10 @@ class FetchGeonames:
15
16
  Class to handle requests to the GeoNames API
16
17
 
17
18
  Args:
18
- city_name (str): Name of the city
19
- country_code (str): Two letters country code
20
- username (str, optional): GeoNames username, defaults to "century.boy".
19
+ - city_name (str): Name of the city
20
+ - country_code (str): Two letters country code
21
+ - username (str, optional): GeoNames username, defaults to "century.boy".
22
+ - cache_expire_after_days (int, optional): Cache expiration time in days, defaults to 30.
21
23
  """
22
24
 
23
25
  def __init__(
@@ -25,11 +27,12 @@ class FetchGeonames:
25
27
  city_name: str,
26
28
  country_code: str,
27
29
  username: str = "century.boy",
30
+ cache_expire_after_days=30,
28
31
  ):
29
32
  self.session = CachedSession(
30
33
  cache_name="cache/kerykeion_geonames_cache",
31
34
  backend="sqlite",
32
- expire_after=86400,
35
+ expire_after=timedelta(days=cache_expire_after_days),
33
36
  )
34
37
 
35
38
  self.username = username
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
  from .kerykeion_exception import KerykeionException
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
 
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
  from typing import Literal
6
6
 
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
 
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
 
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
  from kerykeion import AstrologicalSubject
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
  from kerykeion import AstrologicalSubject
kerykeion/report.py CHANGED
@@ -1,5 +1,5 @@
1
1
  from kerykeion import AstrologicalSubject
2
- from terminaltables import AsciiTable
2
+ from simple_ascii_tables import AsciiTable
3
3
  from kerykeion.utilities import get_houses_list, get_available_planets_list
4
4
  from typing import Union
5
5
  from kerykeion.kr_types.kr_models import AstrologicalSubjectModel
@@ -1,6 +1,6 @@
1
1
  # -*- coding: utf-8 -*-
2
2
  """
3
- This is part of Kerykeion (C) 2024 Giacomo Battaglia
3
+ This is part of Kerykeion (C) 2025 Giacomo Battaglia
4
4
  """
5
5
 
6
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kerykeion
3
- Version: 4.20.0
3
+ Version: 4.21.1
4
4
  Summary: A python library for astrology.
5
5
  Home-page: https://www.kerykeion.net/
6
6
  License: AGPL-3.0
@@ -19,7 +19,6 @@ 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
23
22
  Classifier: Programming Language :: Python :: 3 :: Only
24
23
  Classifier: Topic :: Scientific/Engineering :: Astronomy
25
24
  Classifier: Topic :: Software Development
@@ -28,11 +27,11 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
28
27
  Classifier: Typing :: Typed
29
28
  Requires-Dist: pydantic (>=2.5,<3.0)
30
29
  Requires-Dist: pyswisseph (>=2.10.3.1,<3.0.0.0)
31
- Requires-Dist: pytz (>=2022.7,<2023.0)
30
+ Requires-Dist: pytz (>=2024.2,<2025.0)
32
31
  Requires-Dist: requests (>=2.32.3,<3.0.0)
33
32
  Requires-Dist: requests-cache (>=1.2.1,<2.0.0)
34
33
  Requires-Dist: scour (>=0.38.2,<0.39.0)
35
- Requires-Dist: terminaltables (>=3.1.10,<4.0.0)
34
+ Requires-Dist: simple-ascii-tables (>=1.0.0,<2.0.0)
36
35
  Project-URL: Repository, https://github.com/g-battaglia/kerykeion
37
36
  Description-Content-Type: text/markdown
38
37
 
@@ -0,0 +1,42 @@
1
+ LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
2
+ kerykeion/__init__.py,sha256=XtKNBNSVsQ-PAbnJfNUcw-femdF4NgQqohMtM0cRH18,639
3
+ kerykeion/aspects/__init__.py,sha256=9kx_Rx1NJx5SM7nDCSbI79S1neZ3c-q2NvQr-S6A9PY,292
4
+ kerykeion/aspects/aspects_utils.py,sha256=XyjQvvdrN6-L8QqpecV-mCG9Wb8I9G0S1ZvzXIsQSCk,2977
5
+ kerykeion/aspects/natal_aspects.py,sha256=I5HyT9BHUR0r5xlbCj-EYLxvsRWLVi59Jynlpq04-cY,5548
6
+ kerykeion/aspects/synastry_aspects.py,sha256=HtXSVPkiDQmbkqnI7k9IOhCgON59VZXjflqWJdugwyI,4327
7
+ kerykeion/astrological_subject.py,sha256=KalMYAY4s-1eaV5-L9YsgJRAZah4MnTwSelQPuRkOQ4,36764
8
+ kerykeion/charts/__init__.py,sha256=i9NMZ7LdkllPlqQSi1or9gTobHbROGDKmJhBDO4R0mA,128
9
+ kerykeion/charts/charts_utils.py,sha256=Qql2Z_9xPaxQUaH6AOs8F9maYMqpG9DejYY0LKQT4_U,42265
10
+ kerykeion/charts/draw_planets.py,sha256=Uty3zpWYMQZvvK7ZHhlmynCHeL8DIN3qL2ifnBXVciM,17393
11
+ kerykeion/charts/kerykeion_chart_svg.py,sha256=1k3TDnngStieOKxY69aaHdjJCrh9wr8FBzT5o6BepRs,43918
12
+ kerykeion/charts/templates/aspect_grid_only.xml,sha256=qXR4agGqI7GB_4z8LTSa9Hpgu1ldM9ZDRKGpviBM6a8,70097
13
+ kerykeion/charts/templates/chart.xml,sha256=4CJtMrPFYzgSC0hRjYd2ve53IZ5MKjfcRT8GUI0v_Fo,73767
14
+ kerykeion/charts/templates/wheel_only.xml,sha256=wna68vE2OtpwBBtpJteNRwYcyqqF0-SicXsR1PpCjtU,71310
15
+ kerykeion/charts/themes/classic.css,sha256=-b6XllAZmqUDjBwDtIkfzfI3Wtc8AImuGMpfAQ_2wa0,3552
16
+ kerykeion/charts/themes/dark-high-contrast.css,sha256=9tdyFC-4Ytnv4lrVwKnOjZJ0YNgbRrP_HNnfJRlnbn0,6099
17
+ kerykeion/charts/themes/dark.css,sha256=ml2lnzQVuS5DhCdoeUrDmMv9kB1nNceRt7hHbOHSbjM,6099
18
+ kerykeion/charts/themes/light.css,sha256=ALf5U8tQsb6ky0N9R7ZLOHDrfKEXNM-sBR3JIRxFrCI,6092
19
+ kerykeion/enums.py,sha256=gzB_GDDLGurQI24L0Ga0xpL3DoU6E4ld-gC2xMeLmC8,1077
20
+ kerykeion/ephemeris_data.py,sha256=g52P0jc1Roo8udXW04BOtIBTaOh3Rcp8_ZDw2MJNn_k,8072
21
+ kerykeion/fetch_geonames.py,sha256=e66Nh6yq9A4VjnuvVSiV1TW1IkJ9m3Q2LKPWrkOGgO0,4764
22
+ kerykeion/kr_types/__init__.py,sha256=jshJOccCQcYZuoOvrILRZH6imy4RBvKpFPujlNLFyGE,295
23
+ kerykeion/kr_types/chart_types.py,sha256=OlDvjCra7acaBT--B_gqsqOcAwbuKCXmQQyDTDNfy4o,1983
24
+ kerykeion/kr_types/kerykeion_exception.py,sha256=kE1y0K0rmuz32b4K_ZppSsZ59I2Get0ZkvOkTE5HejI,314
25
+ kerykeion/kr_types/kr_literals.py,sha256=LW5OED0FgDNq5PPHW3_zVot4esz1Y8hCM2nJbgIQDF4,3638
26
+ kerykeion/kr_types/kr_models.py,sha256=3zRhQ17sWDPN1t5k-GV8VT7Hr2K7mYV8tec6VqMZWig,4314
27
+ kerykeion/kr_types/settings_models.py,sha256=oG0fbN9aXzdeBWRKXxy15TFXMR3bU2Be0Ze-wfZi59w,11863
28
+ kerykeion/relationship_score/__init__.py,sha256=cLaEBQXQBfyRkv0OaS3ceLROzvWcvKXWiRq0PS6LDjY,114
29
+ kerykeion/relationship_score/relationship_score.py,sha256=lJkSbHw9nOUaPMrPxqcGhnVQIwAgI52K8BQzXXswb6A,6504
30
+ kerykeion/relationship_score/relationship_score_factory.py,sha256=9iqKHyMS9u9mSc8Ub1CHTDfifxBE40qs7PgbtGt7Gxc,10865
31
+ kerykeion/report.py,sha256=Ry9VME6VgKuUYATIN06nobLAbMep1LT5dw43N300T4Q,2790
32
+ kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
33
+ kerykeion/settings/kerykeion_settings.py,sha256=WZyiC4uwpjnTmoDGWORYLIk9rIpJ3EuLdjFw6eUuylo,2554
34
+ kerykeion/settings/kr.config.json,sha256=635bN5jmcj_MzSiGFohuCzRYIUXY0lDMc0ng5f_Egus,21694
35
+ kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
36
+ kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
37
+ kerykeion/utilities.py,sha256=4b1QgUR3Z1iFel4FHPPp5Qe2EbPCGQukMqCaW0Y_K6s,9417
38
+ kerykeion-4.21.1.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
39
+ kerykeion-4.21.1.dist-info/METADATA,sha256=7eSvqREVZ7K8tXrZGv-vL5rBaDbh_Yc20XN3CqP7hiw,17620
40
+ kerykeion-4.21.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
41
+ kerykeion-4.21.1.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
42
+ kerykeion-4.21.1.dist-info/RECORD,,
@@ -1,4 +1,4 @@
1
1
  Wheel-Version: 1.0
2
- Generator: poetry-core 1.9.1
2
+ Generator: poetry-core 1.9.0
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
@@ -1,42 +0,0 @@
1
- LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
2
- kerykeion/__init__.py,sha256=2NnLOl-3f7L7x_8vXFKV7mgExlJBmsNIBenZNsR1Seo,639
3
- kerykeion/aspects/__init__.py,sha256=9FlDVI1ndCJga0-chNIhcLitjU_x3kbtAFfFqVp2ejc,293
4
- kerykeion/aspects/aspects_utils.py,sha256=kwH_FpReN8rMstyHthE_fWD6doltAVzXkKFcNfo-hLw,2977
5
- kerykeion/aspects/natal_aspects.py,sha256=DzLI_JzEQPVHirTLym0MN0t_KIc6IYFPf9Y9-qHi_ZE,5548
6
- kerykeion/aspects/synastry_aspects.py,sha256=cBJJFoAa-3LA7McmEFlEuN-mGWUryxaqmA79R9uhlAE,4327
7
- kerykeion/astrological_subject.py,sha256=YZgCs4XQ9OTiSaSi6O5tk4BEzPKIiaok2_0DMszNDS0,36383
8
- kerykeion/charts/__init__.py,sha256=Juxkduy2TaagWblh_7CE8Acrg3dHL27-WEddJhau_eQ,127
9
- kerykeion/charts/charts_utils.py,sha256=Qql2Z_9xPaxQUaH6AOs8F9maYMqpG9DejYY0LKQT4_U,42265
10
- kerykeion/charts/draw_planets.py,sha256=Uty3zpWYMQZvvK7ZHhlmynCHeL8DIN3qL2ifnBXVciM,17393
11
- kerykeion/charts/kerykeion_chart_svg.py,sha256=DWgSkCzLXf7_l6Mac0nrAyHSU4BIRVuQoXVAVk9PDMc,43918
12
- kerykeion/charts/templates/aspect_grid_only.xml,sha256=qXR4agGqI7GB_4z8LTSa9Hpgu1ldM9ZDRKGpviBM6a8,70097
13
- kerykeion/charts/templates/chart.xml,sha256=4CJtMrPFYzgSC0hRjYd2ve53IZ5MKjfcRT8GUI0v_Fo,73767
14
- kerykeion/charts/templates/wheel_only.xml,sha256=wna68vE2OtpwBBtpJteNRwYcyqqF0-SicXsR1PpCjtU,71310
15
- kerykeion/charts/themes/classic.css,sha256=-b6XllAZmqUDjBwDtIkfzfI3Wtc8AImuGMpfAQ_2wa0,3552
16
- kerykeion/charts/themes/dark-high-contrast.css,sha256=9tdyFC-4Ytnv4lrVwKnOjZJ0YNgbRrP_HNnfJRlnbn0,6099
17
- kerykeion/charts/themes/dark.css,sha256=ml2lnzQVuS5DhCdoeUrDmMv9kB1nNceRt7hHbOHSbjM,6099
18
- kerykeion/charts/themes/light.css,sha256=ALf5U8tQsb6ky0N9R7ZLOHDrfKEXNM-sBR3JIRxFrCI,6092
19
- kerykeion/enums.py,sha256=gzB_GDDLGurQI24L0Ga0xpL3DoU6E4ld-gC2xMeLmC8,1077
20
- kerykeion/ephemeris_data.py,sha256=g52P0jc1Roo8udXW04BOtIBTaOh3Rcp8_ZDw2MJNn_k,8072
21
- kerykeion/fetch_geonames.py,sha256=NmyTErvKISjJCAxvRB1H35aVZI8_-_U-Cqb_rmqRseA,4563
22
- kerykeion/kr_types/__init__.py,sha256=-qhGQikurdoHnGtuT1bsaEeZ-IwmZtIHMjGOPC9_oqQ,295
23
- kerykeion/kr_types/chart_types.py,sha256=OlDvjCra7acaBT--B_gqsqOcAwbuKCXmQQyDTDNfy4o,1983
24
- kerykeion/kr_types/kerykeion_exception.py,sha256=G-7VFta78qBt10l54JZWvwH-3lUNKmDwuILXaVGVu9A,314
25
- kerykeion/kr_types/kr_literals.py,sha256=bEdSa67VrVplzAqac0BDWusQmFhs4xonvd6pvpv7jhg,3638
26
- kerykeion/kr_types/kr_models.py,sha256=o4gzJLb05v0RWOZulxcjv0LcNnwy5IuMrd4yaHBwF7o,4314
27
- kerykeion/kr_types/settings_models.py,sha256=nMFxfJmPAFpyDWUqcfKlvh80uiE22PKiFZtKujYfLko,11863
28
- kerykeion/relationship_score/__init__.py,sha256=cLaEBQXQBfyRkv0OaS3ceLROzvWcvKXWiRq0PS6LDjY,114
29
- kerykeion/relationship_score/relationship_score.py,sha256=ZUMRjEJdtB5_nRXdx4WJdBbTHu9ACwQTeTGhyeOSsoE,6504
30
- kerykeion/relationship_score/relationship_score_factory.py,sha256=DL-a-Sb7JLscZl0qlW69SpkETkDmB-akpf5y3Sz8sds,10865
31
- kerykeion/report.py,sha256=QEZfadIxmqIugoLHMW0KBhOqCwTywGSDDfpX4NJD6qg,2785
32
- kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
33
- kerykeion/settings/kerykeion_settings.py,sha256=mB8lBU5IFzPaiq-eIUmca4B4GOI8nYFvLwdHVEZk1-I,2554
34
- kerykeion/settings/kr.config.json,sha256=635bN5jmcj_MzSiGFohuCzRYIUXY0lDMc0ng5f_Egus,21694
35
- kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
36
- kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
37
- kerykeion/utilities.py,sha256=4b1QgUR3Z1iFel4FHPPp5Qe2EbPCGQukMqCaW0Y_K6s,9417
38
- kerykeion-4.20.0.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
39
- kerykeion-4.20.0.dist-info/METADATA,sha256=l3vRxWujrcExNf9OfZAtxOu7tNGKEjjG5u_zSt9uFlc,17667
40
- kerykeion-4.20.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
41
- kerykeion-4.20.0.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
42
- kerykeion-4.20.0.dist-info/RECORD,,