kerykeion 4.14.9__py3-none-any.whl → 4.14.11__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/aspects/aspects_utils.py +2 -1
- kerykeion/aspects/natal_aspects.py +2 -1
- kerykeion/aspects/synastry_aspects.py +4 -2
- kerykeion/astrological_subject.py +119 -172
- kerykeion/charts/charts_utils.py +44 -36
- kerykeion/charts/draw_planets.py +2 -1
- kerykeion/charts/kerykeion_chart_svg.py +28 -25
- kerykeion/ephemeris_data.py +5 -1
- kerykeion/kr_types/kr_literals.py +3 -0
- kerykeion/kr_types/kr_models.py +16 -8
- kerykeion/relationship_score.py +5 -4
- kerykeion/report.py +6 -3
- kerykeion/utilities.py +111 -213
- {kerykeion-4.14.9.dist-info → kerykeion-4.14.11.dist-info}/METADATA +1 -1
- kerykeion-4.14.11.dist-info/RECORD +34 -0
- kerykeion-4.14.9.dist-info/RECORD +0 -34
- {kerykeion-4.14.9.dist-info → kerykeion-4.14.11.dist-info}/LICENSE +0 -0
- {kerykeion-4.14.9.dist-info → kerykeion-4.14.11.dist-info}/WHEEL +0 -0
- {kerykeion-4.14.9.dist-info → kerykeion-4.14.11.dist-info}/entry_points.txt +0 -0
kerykeion/utilities.py
CHANGED
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
from kerykeion.kr_types import KerykeionPointModel, KerykeionException,
|
|
1
|
+
from kerykeion.kr_types import KerykeionPointModel, KerykeionException, ZodiacSignModel, AstrologicalSubjectModel
|
|
2
2
|
from kerykeion.kr_types.kr_literals import LunarPhaseEmoji, LunarPhaseName, PointType, Planet, Houses
|
|
3
|
-
from typing import Union
|
|
3
|
+
from typing import Union, get_args, TYPE_CHECKING
|
|
4
4
|
import logging
|
|
5
5
|
import math
|
|
6
6
|
|
|
7
|
+
if TYPE_CHECKING:
|
|
8
|
+
from kerykeion import AstrologicalSubject
|
|
7
9
|
|
|
8
10
|
|
|
9
11
|
def get_number_from_name(name: Planet) -> int:
|
|
@@ -41,172 +43,57 @@ def get_number_from_name(name: Planet) -> int:
|
|
|
41
43
|
raise KerykeionException(f"Error in getting number from name! Name: {name}")
|
|
42
44
|
|
|
43
45
|
|
|
44
|
-
def
|
|
45
|
-
degree: Union[int, float],
|
|
46
|
+
def get_kerykeion_point_from_degree(
|
|
47
|
+
degree: Union[int, float], name: Union[Planet, Houses], point_type: PointType
|
|
46
48
|
) -> KerykeionPointModel:
|
|
47
|
-
"""
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
result = degree - 30
|
|
64
|
-
dictionary = {
|
|
65
|
-
"name": number_name,
|
|
66
|
-
"quality": "Fixed",
|
|
67
|
-
"element": "Earth",
|
|
68
|
-
"sign": "Tau",
|
|
69
|
-
"sign_num": 1,
|
|
70
|
-
"position": result,
|
|
71
|
-
"abs_pos": degree,
|
|
72
|
-
"emoji": "♉️",
|
|
73
|
-
"point_type": point_type,
|
|
74
|
-
}
|
|
75
|
-
elif degree < 90:
|
|
76
|
-
result = degree - 60
|
|
77
|
-
dictionary = {
|
|
78
|
-
"name": number_name,
|
|
79
|
-
"quality": "Mutable",
|
|
80
|
-
"element": "Air",
|
|
81
|
-
"sign": "Gem",
|
|
82
|
-
"sign_num": 2,
|
|
83
|
-
"position": result,
|
|
84
|
-
"abs_pos": degree,
|
|
85
|
-
"emoji": "♊️",
|
|
86
|
-
"point_type": point_type,
|
|
87
|
-
}
|
|
88
|
-
elif degree < 120:
|
|
89
|
-
result = degree - 90
|
|
90
|
-
dictionary = {
|
|
91
|
-
"name": number_name,
|
|
92
|
-
"quality": "Cardinal",
|
|
93
|
-
"element": "Water",
|
|
94
|
-
"sign": "Can",
|
|
95
|
-
"sign_num": 3,
|
|
96
|
-
"position": result,
|
|
97
|
-
"abs_pos": degree,
|
|
98
|
-
"emoji": "♋️",
|
|
99
|
-
"point_type": point_type,
|
|
100
|
-
}
|
|
101
|
-
elif degree < 150:
|
|
102
|
-
result = degree - 120
|
|
103
|
-
dictionary = {
|
|
104
|
-
"name": number_name,
|
|
105
|
-
"quality": "Fixed",
|
|
106
|
-
"element": "Fire",
|
|
107
|
-
"sign": "Leo",
|
|
108
|
-
"sign_num": 4,
|
|
109
|
-
"position": result,
|
|
110
|
-
"abs_pos": degree,
|
|
111
|
-
"emoji": "♌️",
|
|
112
|
-
"point_type": point_type,
|
|
113
|
-
}
|
|
114
|
-
elif degree < 180:
|
|
115
|
-
result = degree - 150
|
|
116
|
-
dictionary = {
|
|
117
|
-
"name": number_name,
|
|
118
|
-
"quality": "Mutable",
|
|
119
|
-
"element": "Earth",
|
|
120
|
-
"sign": "Vir",
|
|
121
|
-
"sign_num": 5,
|
|
122
|
-
"position": result,
|
|
123
|
-
"abs_pos": degree,
|
|
124
|
-
"emoji": "♍️",
|
|
125
|
-
"point_type": point_type,
|
|
126
|
-
}
|
|
127
|
-
elif degree < 210:
|
|
128
|
-
result = degree - 180
|
|
129
|
-
dictionary = {
|
|
130
|
-
"name": number_name,
|
|
131
|
-
"quality": "Cardinal",
|
|
132
|
-
"element": "Air",
|
|
133
|
-
"sign": "Lib",
|
|
134
|
-
"sign_num": 6,
|
|
135
|
-
"position": result,
|
|
136
|
-
"abs_pos": degree,
|
|
137
|
-
"emoji": "♎️",
|
|
138
|
-
"point_type": point_type,
|
|
139
|
-
}
|
|
140
|
-
elif degree < 240:
|
|
141
|
-
result = degree - 210
|
|
142
|
-
dictionary = {
|
|
143
|
-
"name": number_name,
|
|
144
|
-
"quality": "Fixed",
|
|
145
|
-
"element": "Water",
|
|
146
|
-
"sign": "Sco",
|
|
147
|
-
"sign_num": 7,
|
|
148
|
-
"position": result,
|
|
149
|
-
"abs_pos": degree,
|
|
150
|
-
"emoji": "♏️",
|
|
151
|
-
"point_type": point_type,
|
|
152
|
-
}
|
|
153
|
-
elif degree < 270:
|
|
154
|
-
result = degree - 240
|
|
155
|
-
dictionary = {
|
|
156
|
-
"name": number_name,
|
|
157
|
-
"quality": "Mutable",
|
|
158
|
-
"element": "Fire",
|
|
159
|
-
"sign": "Sag",
|
|
160
|
-
"sign_num": 8,
|
|
161
|
-
"position": result,
|
|
162
|
-
"abs_pos": degree,
|
|
163
|
-
"emoji": "♐️",
|
|
164
|
-
"point_type": point_type,
|
|
165
|
-
}
|
|
166
|
-
elif degree < 300:
|
|
167
|
-
result = degree - 270
|
|
168
|
-
dictionary = {
|
|
169
|
-
"name": number_name,
|
|
170
|
-
"quality": "Cardinal",
|
|
171
|
-
"element": "Earth",
|
|
172
|
-
"sign": "Cap",
|
|
173
|
-
"sign_num": 9,
|
|
174
|
-
"position": result,
|
|
175
|
-
"abs_pos": degree,
|
|
176
|
-
"emoji": "♑️",
|
|
177
|
-
"point_type": point_type,
|
|
178
|
-
}
|
|
179
|
-
elif degree < 330:
|
|
180
|
-
result = degree - 300
|
|
181
|
-
dictionary = {
|
|
182
|
-
"name": number_name,
|
|
183
|
-
"quality": "Fixed",
|
|
184
|
-
"element": "Air",
|
|
185
|
-
"sign": "Aqu",
|
|
186
|
-
"sign_num": 10,
|
|
187
|
-
"position": result,
|
|
188
|
-
"abs_pos": degree,
|
|
189
|
-
"emoji": "♒️",
|
|
190
|
-
"point_type": point_type,
|
|
191
|
-
}
|
|
192
|
-
elif degree < 360:
|
|
193
|
-
result = degree - 330
|
|
194
|
-
dictionary = {
|
|
195
|
-
"name": number_name,
|
|
196
|
-
"quality": "Mutable",
|
|
197
|
-
"element": "Water",
|
|
198
|
-
"sign": "Pis",
|
|
199
|
-
"sign_num": 11,
|
|
200
|
-
"position": result,
|
|
201
|
-
"abs_pos": degree,
|
|
202
|
-
"emoji": "♓️",
|
|
203
|
-
"point_type": point_type,
|
|
204
|
-
}
|
|
205
|
-
else:
|
|
49
|
+
"""
|
|
50
|
+
Returns a KerykeionPointModel object based on the given degree.
|
|
51
|
+
|
|
52
|
+
Args:
|
|
53
|
+
degree (Union[int, float]): The degree of the celestial point.
|
|
54
|
+
name (str): The name of the celestial point.
|
|
55
|
+
point_type (PointType): The type of the celestial point.
|
|
56
|
+
|
|
57
|
+
Raises:
|
|
58
|
+
KerykeionException: If the degree is not within the valid range (0-360).
|
|
59
|
+
|
|
60
|
+
Returns:
|
|
61
|
+
KerykeionPointModel: The model representing the celestial point.
|
|
62
|
+
"""
|
|
63
|
+
|
|
64
|
+
if degree < 0 or degree >= 360:
|
|
206
65
|
raise KerykeionException(f"Error in calculating positions! Degrees: {degree}")
|
|
207
66
|
|
|
208
|
-
|
|
67
|
+
ZODIAC_SIGNS = {
|
|
68
|
+
0: ZodiacSignModel(sign="Ari", quality="Cardinal", element="Fire", emoji="♈️", sign_num=0),
|
|
69
|
+
1: ZodiacSignModel(sign="Tau", quality="Fixed", element="Earth", emoji="♉️", sign_num=1),
|
|
70
|
+
2: ZodiacSignModel(sign="Gem", quality="Mutable", element="Air", emoji="♊️", sign_num=2),
|
|
71
|
+
3: ZodiacSignModel(sign="Can", quality="Cardinal", element="Water", emoji="♋️", sign_num=3),
|
|
72
|
+
4: ZodiacSignModel(sign="Leo", quality="Fixed", element="Fire", emoji="♌️", sign_num=4),
|
|
73
|
+
5: ZodiacSignModel(sign="Vir", quality="Mutable", element="Earth", emoji="♍️", sign_num=5),
|
|
74
|
+
6: ZodiacSignModel(sign="Lib", quality="Cardinal", element="Air", emoji="♎️", sign_num=6),
|
|
75
|
+
7: ZodiacSignModel(sign="Sco", quality="Fixed", element="Water", emoji="♏️", sign_num=7),
|
|
76
|
+
8: ZodiacSignModel(sign="Sag", quality="Mutable", element="Fire", emoji="♐️", sign_num=8),
|
|
77
|
+
9: ZodiacSignModel(sign="Cap", quality="Cardinal", element="Earth", emoji="♑️", sign_num=9),
|
|
78
|
+
10: ZodiacSignModel(sign="Aqu", quality="Fixed", element="Air", emoji="♒️", sign_num=10),
|
|
79
|
+
11: ZodiacSignModel(sign="Pis", quality="Mutable", element="Water", emoji="♓️", sign_num=11),
|
|
80
|
+
}
|
|
209
81
|
|
|
82
|
+
sign_index = int(degree // 30)
|
|
83
|
+
sign_degree = degree % 30
|
|
84
|
+
zodiac_sign = ZODIAC_SIGNS[sign_index]
|
|
85
|
+
|
|
86
|
+
return KerykeionPointModel(
|
|
87
|
+
name=name,
|
|
88
|
+
quality=zodiac_sign.quality,
|
|
89
|
+
element=zodiac_sign.element,
|
|
90
|
+
sign=zodiac_sign.sign,
|
|
91
|
+
sign_num=zodiac_sign.sign_num,
|
|
92
|
+
position=sign_degree,
|
|
93
|
+
abs_pos=degree,
|
|
94
|
+
emoji=zodiac_sign.emoji,
|
|
95
|
+
point_type=point_type,
|
|
96
|
+
)
|
|
210
97
|
|
|
211
98
|
def setup_logging(level: str) -> None:
|
|
212
99
|
"""
|
|
@@ -251,45 +138,31 @@ def check_if_point_between(
|
|
|
251
138
|
|
|
252
139
|
def get_planet_house(planet_position_degree: Union[int, float], houses_degree_ut_list: list) -> Houses:
|
|
253
140
|
"""
|
|
254
|
-
|
|
141
|
+
Determines the house in which a planet is located based on its position in degrees.
|
|
255
142
|
|
|
256
143
|
Args:
|
|
257
|
-
|
|
258
|
-
|
|
144
|
+
planet_position_degree (Union[int, float]): The position of the planet in degrees.
|
|
145
|
+
houses_degree_ut_list (list): A list of the houses in degrees (0-360).
|
|
259
146
|
|
|
260
147
|
Returns:
|
|
261
|
-
|
|
148
|
+
str: The house in which the planet is located.
|
|
149
|
+
|
|
150
|
+
Raises:
|
|
151
|
+
ValueError: If the planet's position does not fall within any house range.
|
|
262
152
|
"""
|
|
263
153
|
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
elif check_if_point_between(houses_degree_ut_list[5], houses_degree_ut_list[6], planet_position_degree) == True:
|
|
276
|
-
house = "Sixth_House"
|
|
277
|
-
elif check_if_point_between(houses_degree_ut_list[6], houses_degree_ut_list[7], planet_position_degree) == True:
|
|
278
|
-
house = "Seventh_House"
|
|
279
|
-
elif check_if_point_between(houses_degree_ut_list[7], houses_degree_ut_list[8], planet_position_degree) == True:
|
|
280
|
-
house = "Eighth_House"
|
|
281
|
-
elif check_if_point_between(houses_degree_ut_list[8], houses_degree_ut_list[9], planet_position_degree) == True:
|
|
282
|
-
house = "Ninth_House"
|
|
283
|
-
elif check_if_point_between(houses_degree_ut_list[9], houses_degree_ut_list[10], planet_position_degree) == True:
|
|
284
|
-
house = "Tenth_House"
|
|
285
|
-
elif check_if_point_between(houses_degree_ut_list[10], houses_degree_ut_list[11], planet_position_degree) == True:
|
|
286
|
-
house = "Eleventh_House"
|
|
287
|
-
elif check_if_point_between(houses_degree_ut_list[11], houses_degree_ut_list[0], planet_position_degree) == True:
|
|
288
|
-
house = "Twelfth_House"
|
|
289
|
-
else:
|
|
290
|
-
raise ValueError("Error in house calculation, planet: ", planet_position_degree, "houses: ", houses_degree_ut_list)
|
|
154
|
+
house_names = get_args(Houses)
|
|
155
|
+
|
|
156
|
+
# Iterate through the house boundaries to find the correct house
|
|
157
|
+
for i in range(len(house_names)):
|
|
158
|
+
start_degree = houses_degree_ut_list[i]
|
|
159
|
+
end_degree = houses_degree_ut_list[(i + 1) % len(houses_degree_ut_list)]
|
|
160
|
+
if check_if_point_between(start_degree, end_degree, planet_position_degree):
|
|
161
|
+
return house_names[i]
|
|
162
|
+
|
|
163
|
+
# If no house is found, raise an error
|
|
164
|
+
raise ValueError(f"Error in house calculation, planet: {planet_position_degree}, houses: {houses_degree_ut_list}")
|
|
291
165
|
|
|
292
|
-
return house
|
|
293
166
|
|
|
294
167
|
def get_moon_emoji_from_phase_int(phase: int) -> LunarPhaseEmoji:
|
|
295
168
|
"""
|
|
@@ -301,23 +174,25 @@ def get_moon_emoji_from_phase_int(phase: int) -> LunarPhaseEmoji:
|
|
|
301
174
|
Returns:
|
|
302
175
|
- The emoji of the moon phase
|
|
303
176
|
"""
|
|
177
|
+
|
|
178
|
+
lunar_phase_emojis = get_args(LunarPhaseEmoji)
|
|
304
179
|
|
|
305
180
|
if phase == 1:
|
|
306
|
-
result =
|
|
181
|
+
result = lunar_phase_emojis[0]
|
|
307
182
|
elif phase < 7:
|
|
308
|
-
result =
|
|
183
|
+
result = lunar_phase_emojis[1]
|
|
309
184
|
elif 7 <= phase <= 9:
|
|
310
|
-
result =
|
|
185
|
+
result = lunar_phase_emojis[2]
|
|
311
186
|
elif phase < 14:
|
|
312
|
-
result =
|
|
187
|
+
result = lunar_phase_emojis[3]
|
|
313
188
|
elif phase == 14:
|
|
314
|
-
result =
|
|
189
|
+
result = lunar_phase_emojis[4]
|
|
315
190
|
elif phase < 20:
|
|
316
|
-
result =
|
|
191
|
+
result = lunar_phase_emojis[5]
|
|
317
192
|
elif 20 <= phase <= 22:
|
|
318
|
-
result =
|
|
193
|
+
result = lunar_phase_emojis[6]
|
|
319
194
|
elif phase <= 28:
|
|
320
|
-
result =
|
|
195
|
+
result = lunar_phase_emojis[7]
|
|
321
196
|
|
|
322
197
|
else:
|
|
323
198
|
raise KerykeionException(f"Error in moon emoji calculation! Phase: {phase}")
|
|
@@ -334,23 +209,25 @@ def get_moon_phase_name_from_phase_int(phase: int) -> LunarPhaseName:
|
|
|
334
209
|
Returns:
|
|
335
210
|
- The name of the moon phase
|
|
336
211
|
"""
|
|
337
|
-
|
|
212
|
+
lunar_phase_names = get_args(LunarPhaseName)
|
|
213
|
+
|
|
214
|
+
|
|
338
215
|
if phase == 1:
|
|
339
|
-
result =
|
|
216
|
+
result = lunar_phase_names[0]
|
|
340
217
|
elif phase < 7:
|
|
341
|
-
result =
|
|
218
|
+
result = lunar_phase_names[1]
|
|
342
219
|
elif 7 <= phase <= 9:
|
|
343
|
-
result =
|
|
220
|
+
result = lunar_phase_names[2]
|
|
344
221
|
elif phase < 14:
|
|
345
|
-
result =
|
|
222
|
+
result = lunar_phase_names[3]
|
|
346
223
|
elif phase == 14:
|
|
347
|
-
result =
|
|
224
|
+
result = lunar_phase_names[4]
|
|
348
225
|
elif phase < 20:
|
|
349
|
-
result =
|
|
226
|
+
result = lunar_phase_names[5]
|
|
350
227
|
elif 20 <= phase <= 22:
|
|
351
|
-
result =
|
|
228
|
+
result = lunar_phase_names[6]
|
|
352
229
|
elif phase <= 28:
|
|
353
|
-
result =
|
|
230
|
+
result = lunar_phase_names[7]
|
|
354
231
|
|
|
355
232
|
else:
|
|
356
233
|
raise KerykeionException(f"Error in moon name calculation! Phase: {phase}")
|
|
@@ -372,3 +249,24 @@ def check_and_adjust_polar_latitude(latitude: float) -> float:
|
|
|
372
249
|
logging.info("Polar circle override for houses, using -66 degrees")
|
|
373
250
|
|
|
374
251
|
return latitude
|
|
252
|
+
|
|
253
|
+
|
|
254
|
+
def get_houses_list(subject: Union["AstrologicalSubject", AstrologicalSubjectModel]) -> list[KerykeionPointModel]:
|
|
255
|
+
"""
|
|
256
|
+
Return the names of the houses in the order of the houses.
|
|
257
|
+
"""
|
|
258
|
+
houses_absolute_position_list = []
|
|
259
|
+
for house in subject.houses_names_list:
|
|
260
|
+
houses_absolute_position_list.append(subject[house.lower()])
|
|
261
|
+
|
|
262
|
+
return houses_absolute_position_list
|
|
263
|
+
|
|
264
|
+
def get_available_planets_list(subject: Union["AstrologicalSubject", AstrologicalSubjectModel]) -> list[KerykeionPointModel]:
|
|
265
|
+
"""
|
|
266
|
+
Return the names of the houses in the order of the houses.
|
|
267
|
+
"""
|
|
268
|
+
planets_absolute_position_list = []
|
|
269
|
+
for planet in subject.planets_names_list:
|
|
270
|
+
planets_absolute_position_list.append(subject[planet.lower()])
|
|
271
|
+
|
|
272
|
+
return planets_absolute_position_list
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
|
|
2
|
+
kerykeion/__init__.py,sha256=f4_J_hAh_OSLAUrabqVhrc1rH59I6X1LS9vuAEzE9PY,536
|
|
3
|
+
kerykeion/aspects/__init__.py,sha256=9FlDVI1ndCJga0-chNIhcLitjU_x3kbtAFfFqVp2ejc,293
|
|
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
|
|
7
|
+
kerykeion/astrological_subject.py,sha256=CFrg9eY_-ihN2idTyqLw3lmGcBV7OJlAw2kse_t8woM,34828
|
|
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=na2xrJVYuR2kLnI0s9X3tqTse9kgINJg3LfmuSAn09k,30156
|
|
12
|
+
kerykeion/charts/templates/chart.xml,sha256=tNOGyugpObF164ydR6gg9gBm9mDiLsAa9-VBDW6MKqc,68163
|
|
13
|
+
kerykeion/enums.py,sha256=Xp_0A6jBSW7SZvB5LlKfBObg0xTqB6hTq1IXjz-UWl4,997
|
|
14
|
+
kerykeion/ephemeris_data.py,sha256=AL9yilyRAL2e6L6hqxDkzSOqmKlHKgxhBDRS4wZd5HE,8309
|
|
15
|
+
kerykeion/fetch_geonames.py,sha256=NmyTErvKISjJCAxvRB1H35aVZI8_-_U-Cqb_rmqRseA,4563
|
|
16
|
+
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/kerykeion_exception.py,sha256=G-7VFta78qBt10l54JZWvwH-3lUNKmDwuILXaVGVu9A,314
|
|
19
|
+
kerykeion/kr_types/kr_literals.py,sha256=G7yoDQ7bUJNllZaNXR9_Zlwwtzv6t2XKoLb5go_Al68,3295
|
|
20
|
+
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/relationship_score.py,sha256=LzEA2JXb_GeUinjfEtce_eQ97jxXFGfK3B97fODHIOE,6992
|
|
23
|
+
kerykeion/report.py,sha256=QEZfadIxmqIugoLHMW0KBhOqCwTywGSDDfpX4NJD6qg,2785
|
|
24
|
+
kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
|
|
25
|
+
kerykeion/settings/kerykeion_settings.py,sha256=uRAbhJ0ZXAbGBPGJjhh5u8YX2phcXobEwJA646wMHcM,2347
|
|
26
|
+
kerykeion/settings/kr.config.json,sha256=3BNbPBfF-hCMx-LWtQxWCE7npf7lOrJ-AIOzowLwdgs,12646
|
|
27
|
+
kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
|
|
28
|
+
kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
|
|
29
|
+
kerykeion/utilities.py,sha256=wJdjksXZlMWyvFnEe_1HQuCxYAtAWg-p8lqe2aO2zpE,9046
|
|
30
|
+
kerykeion-4.14.11.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
|
|
31
|
+
kerykeion-4.14.11.dist-info/METADATA,sha256=_ce5uqKDhfCmEGH08TSK1wmZAPWeB5q_AofuziVAmEA,14426
|
|
32
|
+
kerykeion-4.14.11.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
33
|
+
kerykeion-4.14.11.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
|
|
34
|
+
kerykeion-4.14.11.dist-info/RECORD,,
|
|
@@ -1,34 +0,0 @@
|
|
|
1
|
-
LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
|
|
2
|
-
kerykeion/__init__.py,sha256=f4_J_hAh_OSLAUrabqVhrc1rH59I6X1LS9vuAEzE9PY,536
|
|
3
|
-
kerykeion/aspects/__init__.py,sha256=9FlDVI1ndCJga0-chNIhcLitjU_x3kbtAFfFqVp2ejc,293
|
|
4
|
-
kerykeion/aspects/aspects_utils.py,sha256=8zPbP4xTOiaSwJ8Yet6wh38Icsd0xUNVG-dptkuD-Ik,5409
|
|
5
|
-
kerykeion/aspects/natal_aspects.py,sha256=jzYItHWZcyaWqWJ6_akwFx3ct1eFesCcu0fE5l-1_uo,4691
|
|
6
|
-
kerykeion/aspects/synastry_aspects.py,sha256=uYzHZNSw7IckE5ngtyaQ7LhNzCfTB4VZOhKlly43-oc,4167
|
|
7
|
-
kerykeion/astrological_subject.py,sha256=0P8jUM3Z3E-BDJ2XFEmMbQRjm2X7GDtEUMwhHYW1-eE,35550
|
|
8
|
-
kerykeion/charts/__init__.py,sha256=Juxkduy2TaagWblh_7CE8Acrg3dHL27-WEddJhau_eQ,127
|
|
9
|
-
kerykeion/charts/charts_utils.py,sha256=ijrf3y0pBn49rD_ZYCzZGshX33XGcaVoBHmuuTw5F8c,38133
|
|
10
|
-
kerykeion/charts/draw_planets.py,sha256=9HZTzglbTyH5QUMNX3sgxgqrjd4J0ZR2IG7a6csDPJ4,17371
|
|
11
|
-
kerykeion/charts/kerykeion_chart_svg.py,sha256=Ei5Mn0vGAWB3H_TyyBrSVHBCGb0RuJCDQheFdA2xY7o,29688
|
|
12
|
-
kerykeion/charts/templates/chart.xml,sha256=tNOGyugpObF164ydR6gg9gBm9mDiLsAa9-VBDW6MKqc,68163
|
|
13
|
-
kerykeion/enums.py,sha256=Xp_0A6jBSW7SZvB5LlKfBObg0xTqB6hTq1IXjz-UWl4,997
|
|
14
|
-
kerykeion/ephemeris_data.py,sha256=IWWtZq7HrF8WDdevHZA3aCUpuqNypR3mCL_1-kWU2NE,8124
|
|
15
|
-
kerykeion/fetch_geonames.py,sha256=NmyTErvKISjJCAxvRB1H35aVZI8_-_U-Cqb_rmqRseA,4563
|
|
16
|
-
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/kerykeion_exception.py,sha256=G-7VFta78qBt10l54JZWvwH-3lUNKmDwuILXaVGVu9A,314
|
|
19
|
-
kerykeion/kr_types/kr_literals.py,sha256=htTlDgIZ8Fzq07M23-7DyRBEPYoVVGhsJM29BWRWeok,3153
|
|
20
|
-
kerykeion/kr_types/kr_models.py,sha256=nrH0GJAWQiAG8MECW3WUuy_DlB6aLET1zPqSFIBV2BE,3648
|
|
21
|
-
kerykeion/kr_types/settings_models.py,sha256=Zpa_SYY46HPpup1oDnBCw-eELxSQVA8my2Vk_wKMESI,12605
|
|
22
|
-
kerykeion/relationship_score.py,sha256=R9JugfK5_gJgr5ND-EghkqpqZcutzzKlJ-2JnYUMVv4,6794
|
|
23
|
-
kerykeion/report.py,sha256=kS5avIN119pJVapYjZOvabg77nEcA8sSrOuXbRifABk,2565
|
|
24
|
-
kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
|
|
25
|
-
kerykeion/settings/kerykeion_settings.py,sha256=uRAbhJ0ZXAbGBPGJjhh5u8YX2phcXobEwJA646wMHcM,2347
|
|
26
|
-
kerykeion/settings/kr.config.json,sha256=3BNbPBfF-hCMx-LWtQxWCE7npf7lOrJ-AIOzowLwdgs,12646
|
|
27
|
-
kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
|
|
28
|
-
kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
|
|
29
|
-
kerykeion/utilities.py,sha256=2FUL94UiLt5hcKQtVzmbSD1z7CaOSGKCOZzVFSVTveU,11458
|
|
30
|
-
kerykeion-4.14.9.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
|
|
31
|
-
kerykeion-4.14.9.dist-info/METADATA,sha256=gvwjCYvN1405Zts36U3hL4VKfSFrPcqiiJbWUyqM_Cc,14425
|
|
32
|
-
kerykeion-4.14.9.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
33
|
-
kerykeion-4.14.9.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
|
|
34
|
-
kerykeion-4.14.9.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|