kerykeion 4.19.0__py3-none-any.whl → 4.20.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.
- kerykeion/astrological_subject.py +2 -2
- kerykeion/charts/kerykeion_chart_svg.py +18 -4
- {kerykeion-4.19.0.dist-info → kerykeion-4.20.0.dist-info}/METADATA +17 -1
- {kerykeion-4.19.0.dist-info → kerykeion-4.20.0.dist-info}/RECORD +7 -7
- {kerykeion-4.19.0.dist-info → kerykeion-4.20.0.dist-info}/WHEEL +1 -1
- {kerykeion-4.19.0.dist-info → kerykeion-4.20.0.dist-info}/LICENSE +0 -0
- {kerykeion-4.19.0.dist-info → kerykeion-4.20.0.dist-info}/entry_points.txt +0 -0
|
@@ -227,7 +227,7 @@ class AstrologicalSubject:
|
|
|
227
227
|
#---------------#
|
|
228
228
|
|
|
229
229
|
# Geonames username
|
|
230
|
-
if geonames_username is None and online:
|
|
230
|
+
if geonames_username is None and online and (not lat or not lng or not tz_str):
|
|
231
231
|
logging.warning(GEONAMES_DEFAULT_USERNAME_WARNING)
|
|
232
232
|
self.geonames_username = DEFAULT_GEONAMES_USERNAME
|
|
233
233
|
else:
|
|
@@ -835,5 +835,5 @@ if __name__ == "__main__":
|
|
|
835
835
|
print(johnny.mean_lilith)
|
|
836
836
|
|
|
837
837
|
# Offline mode
|
|
838
|
-
johnny = AstrologicalSubject("Johnny Depp", 1963, 6, 9, 0, 0, "Owensboro", "US", online=False, tz_str="America/New_York", lng=-87.1111, lat=37.7711)
|
|
838
|
+
johnny = AstrologicalSubject("Johnny Depp", 1963, 6, 9, 0, 0, "Owensboro", "US", online=False, tz_str="America/New_York", lng=-87.1111, lat=37.7711, sidereal_mode="FAGAN_BRADLEY", zodiac_type="Sidereal")
|
|
839
839
|
print(johnny.json(dump=True, indent=2))
|
|
@@ -5,6 +5,7 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
import logging
|
|
8
|
+
import swisseph as swe
|
|
8
9
|
from typing import get_args
|
|
9
10
|
|
|
10
11
|
from kerykeion.settings.kerykeion_settings import get_settings
|
|
@@ -408,11 +409,19 @@ class KerykeionChartSVG:
|
|
|
408
409
|
else:
|
|
409
410
|
template_dict["stringTitle"] = self.user.name
|
|
410
411
|
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
412
|
+
if self.user.zodiac_type == 'Tropic':
|
|
413
|
+
zodiac_info = "Tropical Zodiac"
|
|
414
|
+
|
|
415
|
+
else:
|
|
416
|
+
mode_const = "SIDM_" + self.user.sidereal_mode # type: ignore
|
|
417
|
+
mode_name = swe.get_ayanamsa_name(getattr(swe, mode_const))
|
|
418
|
+
zodiac_info = f"Ayanamsa: {mode_name}"
|
|
419
|
+
|
|
420
|
+
template_dict["bottomLeft0"] = f"{self.user.houses_system_name} Houses"
|
|
421
|
+
template_dict["bottomLeft1"] = zodiac_info
|
|
422
|
+
|
|
414
423
|
if self.chart_type in ["Natal", "ExternalNatal", "Synastry"]:
|
|
415
|
-
template_dict["bottomLeft2"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}
|
|
424
|
+
template_dict["bottomLeft2"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")} {self.language_settings.get("day", "Day").lower()}: {self.user.lunar_phase.get("moon_phase", "")}'
|
|
416
425
|
template_dict["bottomLeft3"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}: {self.user.lunar_phase.moon_phase_name}'
|
|
417
426
|
template_dict["bottomLeft4"] = f'{self.user.perspective_type}'
|
|
418
427
|
else:
|
|
@@ -905,3 +914,8 @@ if __name__ == "__main__":
|
|
|
905
914
|
hindi_subject = AstrologicalSubject("Amitabh Bachchan", 1942, 10, 11, 4, 0, "Allahabad", "IN")
|
|
906
915
|
hindi_chart = KerykeionChartSVG(hindi_subject, chart_language="HI")
|
|
907
916
|
hindi_chart.makeSVG()
|
|
917
|
+
|
|
918
|
+
# Kanye West Natal Chart
|
|
919
|
+
kanye_west_subject = AstrologicalSubject("Kanye", 1977, 6, 8, 8, 45, "Atlanta", "US")
|
|
920
|
+
kanye_west_chart = KerykeionChartSVG(kanye_west_subject)
|
|
921
|
+
kanye_west_chart.makeSVG()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: kerykeion
|
|
3
|
-
Version: 4.
|
|
3
|
+
Version: 4.20.0
|
|
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
|
|
@@ -396,6 +397,21 @@ Example:
|
|
|
396
397
|
...
|
|
397
398
|
```
|
|
398
399
|
|
|
400
|
+
In the charts, by default, the mean nodes (M) are displayed, while the true nodes are not displayed.
|
|
401
|
+
To display them, you need to edit the configuration file (kr.config.json).
|
|
402
|
+
|
|
403
|
+
## JSON Support
|
|
404
|
+
|
|
405
|
+
The astrological subject, which is the base of data used in the library, can be easily serialized to JSON with the `json` method.
|
|
406
|
+
|
|
407
|
+
```python
|
|
408
|
+
from kerykeion import AstrologicalSubject
|
|
409
|
+
|
|
410
|
+
johnny = AstrologicalSubject("Johnny Depp", 1963, 6, 9, 0, 0, "Owensboro", "US")
|
|
411
|
+
|
|
412
|
+
print(johnny.json(dump=False, indent=2))
|
|
413
|
+
```
|
|
414
|
+
|
|
399
415
|
## Documentation
|
|
400
416
|
|
|
401
417
|
Most of the functions and the classes are self documented by the types and have docstrings.
|
|
@@ -4,11 +4,11 @@ kerykeion/aspects/__init__.py,sha256=9FlDVI1ndCJga0-chNIhcLitjU_x3kbtAFfFqVp2ejc
|
|
|
4
4
|
kerykeion/aspects/aspects_utils.py,sha256=kwH_FpReN8rMstyHthE_fWD6doltAVzXkKFcNfo-hLw,2977
|
|
5
5
|
kerykeion/aspects/natal_aspects.py,sha256=DzLI_JzEQPVHirTLym0MN0t_KIc6IYFPf9Y9-qHi_ZE,5548
|
|
6
6
|
kerykeion/aspects/synastry_aspects.py,sha256=cBJJFoAa-3LA7McmEFlEuN-mGWUryxaqmA79R9uhlAE,4327
|
|
7
|
-
kerykeion/astrological_subject.py,sha256=
|
|
7
|
+
kerykeion/astrological_subject.py,sha256=YZgCs4XQ9OTiSaSi6O5tk4BEzPKIiaok2_0DMszNDS0,36383
|
|
8
8
|
kerykeion/charts/__init__.py,sha256=Juxkduy2TaagWblh_7CE8Acrg3dHL27-WEddJhau_eQ,127
|
|
9
9
|
kerykeion/charts/charts_utils.py,sha256=Qql2Z_9xPaxQUaH6AOs8F9maYMqpG9DejYY0LKQT4_U,42265
|
|
10
10
|
kerykeion/charts/draw_planets.py,sha256=Uty3zpWYMQZvvK7ZHhlmynCHeL8DIN3qL2ifnBXVciM,17393
|
|
11
|
-
kerykeion/charts/kerykeion_chart_svg.py,sha256=
|
|
11
|
+
kerykeion/charts/kerykeion_chart_svg.py,sha256=DWgSkCzLXf7_l6Mac0nrAyHSU4BIRVuQoXVAVk9PDMc,43918
|
|
12
12
|
kerykeion/charts/templates/aspect_grid_only.xml,sha256=qXR4agGqI7GB_4z8LTSa9Hpgu1ldM9ZDRKGpviBM6a8,70097
|
|
13
13
|
kerykeion/charts/templates/chart.xml,sha256=4CJtMrPFYzgSC0hRjYd2ve53IZ5MKjfcRT8GUI0v_Fo,73767
|
|
14
14
|
kerykeion/charts/templates/wheel_only.xml,sha256=wna68vE2OtpwBBtpJteNRwYcyqqF0-SicXsR1PpCjtU,71310
|
|
@@ -35,8 +35,8 @@ kerykeion/settings/kr.config.json,sha256=635bN5jmcj_MzSiGFohuCzRYIUXY0lDMc0ng5f_
|
|
|
35
35
|
kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
|
|
36
36
|
kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
|
|
37
37
|
kerykeion/utilities.py,sha256=4b1QgUR3Z1iFel4FHPPp5Qe2EbPCGQukMqCaW0Y_K6s,9417
|
|
38
|
-
kerykeion-4.
|
|
39
|
-
kerykeion-4.
|
|
40
|
-
kerykeion-4.
|
|
41
|
-
kerykeion-4.
|
|
42
|
-
kerykeion-4.
|
|
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,,
|
|
File without changes
|
|
File without changes
|