kerykeion 3.4.2__tar.gz → 3.4.4__tar.gz
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-3.4.2 → kerykeion-3.4.4}/PKG-INFO +8 -1
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/main.py +12 -1
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion.egg-info/PKG-INFO +8 -1
- {kerykeion-3.4.2 → kerykeion-3.4.4}/setup.py +1 -1
- {kerykeion-3.4.2 → kerykeion-3.4.4}/MANIFEST.in +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/README.md +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/__init__.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/aspects.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/charts/__init__.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/charts/charts_svg.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/charts/templates/basic.xml +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/charts/templates/extended.xml +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/fetch_geonames.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/kr.config.json +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/print_all_data.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/relationship_score.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/report.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/types.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion/utilities.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion.egg-info/SOURCES.txt +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion.egg-info/dependency_links.txt +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion.egg-info/requires.txt +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/kerykeion.egg-info/top_level.txt +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/setup.cfg +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/tests/test_json_dump.py +0 -0
- {kerykeion-3.4.2 → kerykeion-3.4.4}/tests/test_main.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: kerykeion
|
|
3
|
-
Version: 3.4.
|
|
3
|
+
Version: 3.4.4
|
|
4
4
|
Summary: A python library for astrology.
|
|
5
5
|
Home-page: https://github.com/g-battaglia/kerykeion
|
|
6
6
|
Author: Giacomo Battaglia
|
|
@@ -20,6 +20,13 @@ Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
|
20
20
|
Classifier: Typing :: Typed
|
|
21
21
|
Requires-Python: >=3.9
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: pyswisseph
|
|
24
|
+
Requires-Dist: pytz
|
|
25
|
+
Requires-Dist: jsonpickle
|
|
26
|
+
Requires-Dist: requests
|
|
27
|
+
Requires-Dist: requests_cache
|
|
28
|
+
Requires-Dist: pydantic
|
|
29
|
+
Requires-Dist: terminaltables
|
|
23
30
|
|
|
24
31
|
<h1 align=center>Kerykeion</h1>
|
|
25
32
|
<div align="center">
|
|
@@ -119,6 +119,17 @@ class KrInstance():
|
|
|
119
119
|
if not self.nation:
|
|
120
120
|
self.nation = "GB"
|
|
121
121
|
self.__logger.warning("No nation specified, using GB as default")
|
|
122
|
+
|
|
123
|
+
if self.lat:
|
|
124
|
+
if self.lat > 66.0:
|
|
125
|
+
self.lat = 66.0
|
|
126
|
+
self.__logger.info(
|
|
127
|
+
'Polar circle override for houses, using 66 degrees')
|
|
128
|
+
|
|
129
|
+
elif self.lat < -66.0:
|
|
130
|
+
self.lat = -66.0
|
|
131
|
+
self.__logger.info(
|
|
132
|
+
'Polar circle override for houses, using -66 degrees')
|
|
122
133
|
|
|
123
134
|
if (not self.online) and (not lng or not lat or not tz_str):
|
|
124
135
|
raise KerykeionException(
|
|
@@ -601,7 +612,7 @@ if __name__ == "__main__":
|
|
|
601
612
|
|
|
602
613
|
kanye = KrInstance(
|
|
603
614
|
"Kanye", 1977, 6, 8, 8, 45,
|
|
604
|
-
lng=50, lat=
|
|
615
|
+
lng=50, lat=70, tz_str="Europe/Rome"
|
|
605
616
|
)
|
|
606
617
|
|
|
607
618
|
test = KrInstance("Kanye", 1977, 6, 8, 8, 45, "Milano")
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: kerykeion
|
|
3
|
-
Version: 3.4.
|
|
3
|
+
Version: 3.4.4
|
|
4
4
|
Summary: A python library for astrology.
|
|
5
5
|
Home-page: https://github.com/g-battaglia/kerykeion
|
|
6
6
|
Author: Giacomo Battaglia
|
|
@@ -20,6 +20,13 @@ Classifier: Topic :: Scientific/Engineering :: Astronomy
|
|
|
20
20
|
Classifier: Typing :: Typed
|
|
21
21
|
Requires-Python: >=3.9
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
|
+
Requires-Dist: pyswisseph
|
|
24
|
+
Requires-Dist: pytz
|
|
25
|
+
Requires-Dist: jsonpickle
|
|
26
|
+
Requires-Dist: requests
|
|
27
|
+
Requires-Dist: requests_cache
|
|
28
|
+
Requires-Dist: pydantic
|
|
29
|
+
Requires-Dist: terminaltables
|
|
23
30
|
|
|
24
31
|
<h1 align=center>Kerykeion</h1>
|
|
25
32
|
<div align="center">
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|