kerykeion 4.25.0__py3-none-any.whl → 4.25.2__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.

@@ -185,12 +185,24 @@ class KerykeionChartSVG:
185
185
  self.t_user = second_obj
186
186
 
187
187
  # Aspects
188
- synastry_aspects_instance = SynastryAspects(
189
- self.user, self.t_user,
190
- new_settings_file=self.new_settings_file,
191
- active_points=active_points,
192
- active_aspects=active_aspects,
193
- )
188
+ if self.chart_type == "Transit":
189
+ synastry_aspects_instance = SynastryAspects(
190
+ self.t_user,
191
+ self.user,
192
+ new_settings_file=self.new_settings_file,
193
+ active_points=active_points,
194
+ active_aspects=active_aspects,
195
+ )
196
+
197
+ else:
198
+ synastry_aspects_instance = SynastryAspects(
199
+ self.user,
200
+ self.t_user,
201
+ new_settings_file=self.new_settings_file,
202
+ active_points=active_points,
203
+ active_aspects=active_aspects,
204
+ )
205
+
194
206
  self.aspects_list = synastry_aspects_instance.relevant_aspects
195
207
 
196
208
  self.t_available_kerykeion_celestial_points = []
@@ -432,7 +444,13 @@ class KerykeionChartSVG:
432
444
  template_dict['third_circle'] = draw_third_circle(self.main_radius, self.chart_colors_settings['zodiac_transit_ring_0'], self.chart_colors_settings['paper_1'], self.chart_type, self.third_circle_radius)
433
445
 
434
446
  if self.double_chart_aspect_grid_type == "list":
435
- template_dict["makeAspectGrid"] = draw_transit_aspect_list(self.language_settings["aspects"], self.aspects_list, self.planets_settings, self.aspects_settings)
447
+ title = ""
448
+ if self.chart_type == "Synastry":
449
+ title = self.language_settings.get("couple_aspects", "Couple Aspects")
450
+ else:
451
+ title = self.language_settings.get("transit_aspects", "Transit Aspects")
452
+
453
+ template_dict["makeAspectGrid"] = draw_transit_aspect_list(title, self.aspects_list, self.planets_settings, self.aspects_settings)
436
454
  else:
437
455
  template_dict["makeAspectGrid"] = draw_transit_aspect_grid(self.chart_colors_settings['paper_0'], self.available_planets_setting, self.aspects_list, 550, 450)
438
456
 
@@ -459,23 +477,23 @@ class KerykeionChartSVG:
459
477
 
460
478
  # Zodiac Type Info
461
479
  if self.user.zodiac_type == 'Tropic':
462
- zodiac_info = "Tropical Zodiac"
480
+ zodiac_info = f"{self.language_settings.get('zodiac', 'Zodiac')}: {self.language_settings.get('tropical', 'Tropical')}"
463
481
  else:
464
482
  mode_const = "SIDM_" + self.user.sidereal_mode # type: ignore
465
483
  mode_name = swe.get_ayanamsa_name(getattr(swe, mode_const))
466
- zodiac_info = f"Ayanamsa: {mode_name}"
484
+ zodiac_info = f"{self.language_settings.get('ayanamsa', 'Ayanamsa')}: {mode_name}"
467
485
 
468
- template_dict["bottom_left_0"] = f"{self.user.houses_system_name} Houses"
486
+ template_dict["bottom_left_0"] = f"{self.language_settings.get('houses_system_' + self.user.houses_system_identifier, self.user.houses_system_name)} {self.language_settings.get('houses', 'Houses')}"
469
487
  template_dict["bottom_left_1"] = zodiac_info
470
488
 
471
489
  if self.chart_type in ["Natal", "ExternalNatal", "Synastry"]:
472
490
  template_dict["bottom_left_2"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")} {self.language_settings.get("day", "Day").lower()}: {self.user.lunar_phase.get("moon_phase", "")}'
473
- template_dict["bottom_left_3"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}: {self.user.lunar_phase.moon_phase_name}'
474
- template_dict["bottom_left_4"] = f'{self.user.perspective_type}'
491
+ template_dict["bottom_left_3"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}: {self.language_settings.get(self.user.lunar_phase.moon_phase_name.lower().replace(" ", "_"), self.user.lunar_phase.moon_phase_name)}'
492
+ template_dict["bottom_left_4"] = f'{self.language_settings.get(self.user.perspective_type.lower().replace(" ", "_"), self.user.perspective_type)}'
475
493
  elif self.chart_type == "Transit":
476
494
  template_dict["bottom_left_2"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}: {self.language_settings.get("day", "Day")} {self.t_user.lunar_phase.get("moon_phase", "")}'
477
495
  template_dict["bottom_left_3"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}: {self.t_user.lunar_phase.moon_phase_name}'
478
- template_dict["bottom_left_4"] = f'{self.t_user.perspective_type}'
496
+ template_dict["bottom_left_4"] = f'{self.language_settings.get(self.t_user.perspective_type.lower().replace(" ", "_"), self.t_user.perspective_type)}'
479
497
  elif self.chart_type == "Composite":
480
498
  template_dict["bottom_left_2"] = f'{self.user.first_subject.perspective_type}'
481
499
  template_dict["bottom_left_3"] = f'{self.language_settings.get("composite_chart", "Composite Chart")} - {self.language_settings.get("midpoints", "Midpoints")}'
@@ -529,7 +547,7 @@ class KerykeionChartSVG:
529
547
  longitude_string = convert_longitude_coordinate_to_string(self.geolon, self.language_settings['east'], self.language_settings['west'])
530
548
  template_dict["top_left_3"] = f"{self.language_settings['latitude']}: {latitude_string}"
531
549
  template_dict["top_left_4"] = f"{self.language_settings['longitude']}: {longitude_string}"
532
- template_dict["top_left_5"] = f"{self.language_settings['type']}: {self.chart_type}"
550
+ template_dict["top_left_5"] = f"{self.language_settings['type']}: {self.language_settings.get(self.chart_type, self.chart_type)}"
533
551
 
534
552
 
535
553
  # Set paper colors
@@ -116,33 +116,79 @@ class KerykeionLanguageModel(SubscriptableBaseModel):
116
116
  it's used to translate the celestial points and the other labels
117
117
  """
118
118
 
119
- info: str = Field(title="Info", description="The name of the Info label in the chart, in the language")
120
- cusp: str = Field(title="Cusp", description="The name of the Cusp label in the chart, in the language")
121
- longitude: str = Field(title="Longitude", description="The name of the Longitude label in the chart, in the language")
122
- latitude: str = Field(title="Latitude", description="The name of the Latitude label in the chart, in the language")
123
- north: str = Field(title="North", description="The name of the North label in the chart, in the language")
124
- east: str = Field(title="East", description="The name of the East label in the chart, in the language")
125
- south: str = Field(title="South", description="The name of the South label in the chart, in the language")
126
- west: str = Field(title="West", description="The name of the West label in the chart, in the language")
127
- fire: str = Field(title="Fire", description="The name of the Fire label in the chart, in the language")
128
- earth: str = Field(title="Earth", description="The name of the Earth label in the chart, in the language")
129
- air: str = Field(title="Air", description="The name of the Air label in the chart, in the language")
130
- water: str = Field(title="Water", description="The name of the Water label in the chart, in the language")
131
- and_word: str = Field(title="And", description="The name of the And word in the chart, in the language")
132
- transits: str = Field(title="Transits", description="The name of the Transits label in the chart, in the language")
133
- type: str = Field(title="Type", description="The name of the Type label in the chart, in the language")
134
- aspects: str = Field(title="Aspects", description="The name of the Aspects label in the chart, in the language")
135
- planets_and_house: str = Field(title="Planets and Houses", description="The name of the Planets and Houses label in the chart, in the language")
136
- transit_name: str = Field(title="Transit Name", description="The name of the Transit Name label in the chart, in the language")
137
- lunar_phase: str = Field(title="Lunar Phase", description="The name of the Lunar Phase label in the chart, in the language")
138
- day: str = Field(title="Day", description="The name of the Day label in the chart, in the language")
119
+ info: str
120
+ cusp: str
121
+ longitude: str
122
+ latitude: str
123
+ north: str
124
+ east: str
125
+ south: str
126
+ west: str
127
+ fire: str
128
+ earth: str
129
+ air: str
130
+ water: str
131
+ and_word: str
132
+ transits: str
133
+ type: str
134
+ couple_aspects: str
135
+ transit_aspects: str
136
+ planets_and_house: str
137
+ transit_name: str
138
+ lunar_phase: str
139
+ day: str
139
140
  celestial_points: KerykeionLanguageCelestialPointModel
140
- composite_chart: str = Field(title="Composite Chart", description="The name of the Composite Chart label in the chart, in the language")
141
- midpoints: str = Field(title="Midpoints", description="The name of the Midpoints label in the chart, in the language")
142
- north_letter: str = Field(title="North Letter", description="The name of the North Letter label in the chart, in the language")
143
- east_letter: str = Field(title="East Letter", description="The name of the East Letter label in the chart, in the language")
144
- south_letter: str = Field(title="South Letter", description="The name of the South Letter label in the chart, in the language")
145
- west_letter: str = Field(title="West Letter", description="The name of the West Letter label in the chart, in the language")
141
+ composite_chart: str
142
+ midpoints: str
143
+ north_letter: str
144
+ east_letter: str
145
+ south_letter: str
146
+ west_letter: str
147
+ tropical: str
148
+ sidereal: str
149
+ zodiac: str
150
+ ayanamsa: str
151
+ apparent_geocentric: str
152
+ heliocentric: str
153
+ topocentric: str
154
+ true_geocentric: str
155
+ new_moon: str
156
+ waxing_crescent: str
157
+ first_quarter: str
158
+ waxing_gibbous: str
159
+ full_moon: str
160
+ waning_gibbous: str
161
+ last_quarter: str
162
+ waning_crescent: str
163
+ houses: str
164
+ houses_system_A: str
165
+ houses_system_B: str
166
+ houses_system_C: str
167
+ houses_system_D: str
168
+ houses_system_F: str
169
+ houses_system_H: str
170
+ houses_system_I: str
171
+ houses_system_i: str
172
+ houses_system_K: str
173
+ houses_system_L: str
174
+ houses_system_M: str
175
+ houses_system_N: str
176
+ houses_system_O: str
177
+ houses_system_P: str
178
+ houses_system_Q: str
179
+ houses_system_R: str
180
+ houses_system_S: str
181
+ houses_system_T: str
182
+ houses_system_U: str
183
+ houses_system_V: str
184
+ houses_system_W: str
185
+ houses_system_X: str
186
+ houses_system_Y: str
187
+ Natal: str
188
+ ExternalNatal: str
189
+ Synastry: str
190
+ Transit: str
191
+ Composite: str
146
192
 
147
193
 
148
194
  class KerykeionGeneralSettingsModel(SubscriptableBaseModel):
@@ -221,57 +221,10 @@ if __name__ == "__main__":
221
221
 
222
222
  setup_logging(level="critical")
223
223
 
224
- john = AstrologicalSubject("John", 1940, 10, 9, 18, 30, "Liverpool", "UK")
225
- yoko = AstrologicalSubject("Yoko", 1933, 2, 18, 20, 30, "Tokyo", "JP")
226
-
227
- relationship_score_factory = RelationshipScoreFactory(john, yoko)
228
- relationship_score = relationship_score_factory.get_relationship_score()
229
-
230
- print("John and Yoko relationship score:")
231
- print(relationship_score.score_value)
232
- print(relationship_score.score_description)
233
- print(relationship_score.is_destiny_sign)
234
- print(len(relationship_score.aspects))
235
- print(len(relationship_score_factory._synastry_aspects))
236
-
237
- print("------------------->")
238
- freud = AstrologicalSubject("Freud", 1856, 5, 6, 18, 30, "Freiberg", "DE")
239
- jung = AstrologicalSubject("Jung", 1875, 7, 26, 18, 30, "Kesswil", "CH")
240
-
241
- relationship_score_factory = RelationshipScoreFactory(freud, jung)
242
- relationship_score = relationship_score_factory.get_relationship_score()
243
-
244
- print("Freud and Jung relationship score:")
245
- print(relationship_score.score_value)
246
- print(relationship_score.score_description)
247
- print(relationship_score.is_destiny_sign)
248
- print(len(relationship_score.aspects))
249
- print(len(relationship_score_factory._synastry_aspects))
250
-
251
- print("------------------->")
252
- richart_burton = AstrologicalSubject("Richard Burton", 1925, 11, 10, 15, 00, "Pontrhydyfen", "UK")
253
- liz_taylor = AstrologicalSubject("Elizabeth Taylor", 1932, 2, 27, 2, 30, "London", "UK")
254
-
255
- relationship_score_factory = RelationshipScoreFactory(richart_burton, liz_taylor)
256
- relationship_score = relationship_score_factory.get_relationship_score()
257
-
258
- print("Richard Burton and Elizabeth Taylor relationship score:")
259
- print(relationship_score.score_value)
260
- print(relationship_score.score_description)
261
- print(relationship_score.is_destiny_sign)
262
- print(len(relationship_score.aspects))
263
- print(len(relationship_score_factory._synastry_aspects))
264
-
265
- print("------------------->")
266
- dario_fo = AstrologicalSubject("Dario Fo", 1926, 3, 24, 12, 25, "Sangiano", "IT")
267
- franca_rame = AstrologicalSubject("Franca Rame", 1929, 7, 18, 12, 25, "Parabiago", "IT")
268
-
269
- relationship_score_factory = RelationshipScoreFactory(dario_fo, franca_rame)
270
- relationship_score = relationship_score_factory.get_relationship_score()
271
-
272
- print("Dario Fo and Franca Rame relationship score:")
273
- print(relationship_score.score_value)
274
- print(relationship_score.score_description)
275
- print(relationship_score.is_destiny_sign)
276
- print(len(relationship_score.aspects))
277
- print(len(relationship_score_factory._synastry_aspects))
224
+ giacomo = AstrologicalSubject("Giacomo", 1993, 6, 10, 12, 15, "Montichiari", "IT")
225
+ yoko = AstrologicalSubject("Susie Cox", 1949, 6, 17, 9, 40, "Tucson", "US")
226
+
227
+ factory = RelationshipScoreFactory(giacomo, yoko)
228
+ score = factory.get_relationship_score()
229
+ print(score)
230
+
@@ -16,7 +16,8 @@
16
16
  "and_word": "and",
17
17
  "transits": "Transits for",
18
18
  "type": "Type",
19
- "aspects": "Couple aspects",
19
+ "couple_aspects": "Couple aspects",
20
+ "transit_aspects": "Transit aspects",
20
21
  "planets_and_house": "Points for",
21
22
  "transit_name": "At the time of the transit",
22
23
  "lunar_phase": "Lunar phase",
@@ -27,6 +28,51 @@
27
28
  "east_letter": "E",
28
29
  "south_letter": "S",
29
30
  "west_letter": "W",
31
+ "tropical": "Tropical",
32
+ "sidereal": "Sidereal",
33
+ "zodiac": "Zodiac",
34
+ "ayanamsa": "Ayanamsa",
35
+ "apparent_geocentric": "Apparent Geocentric",
36
+ "heliocentric": "Heliocentric",
37
+ "topocentric": "Topocentric",
38
+ "true_geocentric": "True Geocentric",
39
+ "new_moon": "New Moon",
40
+ "waxing_crescent": "Waxing Crescent",
41
+ "first_quarter": "First Quarter",
42
+ "waxing_gibbous": "Waxing Gibbous",
43
+ "full_moon": "Full Moon",
44
+ "waning_gibbous": "Waning Gibbous",
45
+ "last_quarter": "Last Quarter",
46
+ "waning_crescent": "Waning Crescent",
47
+ "houses": "Houses",
48
+ "houses_system_A": "Equal",
49
+ "houses_system_B": "Alcabitius",
50
+ "houses_system_C": "Campanus",
51
+ "houses_system_D": "Equal (MC)",
52
+ "houses_system_F": "Carter poli-equ.",
53
+ "houses_system_H": "Horizon/Azimut",
54
+ "houses_system_I": "Sunshine",
55
+ "houses_system_i": "Sunshine/alt.",
56
+ "houses_system_K": "Koch",
57
+ "houses_system_L": "Pullen SD",
58
+ "houses_system_M": "Morinus",
59
+ "houses_system_N": "Equal/1=Aries",
60
+ "houses_system_O": "Porphyry",
61
+ "houses_system_P": "Placidus",
62
+ "houses_system_Q": "Pullen SR",
63
+ "houses_system_R": "Regiomontanus",
64
+ "houses_system_S": "Sripati",
65
+ "houses_system_T": "Polich/Page",
66
+ "houses_system_U": "Krusinski-Pisa-Goelzer",
67
+ "houses_system_V": "Equal/Vehlow",
68
+ "houses_system_W": "Equal/Whole sign",
69
+ "houses_system_X": "Axial rotation system/Meridian houses",
70
+ "houses_system_Y": "APC houses",
71
+ "Natal": "Natal",
72
+ "ExternalNatal": "External Natal",
73
+ "Synastry": "Synastry",
74
+ "Transit": "Transit",
75
+ "Composite": "Composite",
30
76
  "celestial_points": {
31
77
  "Sun": "Sun",
32
78
  "Moon": "Moon",
@@ -66,7 +112,8 @@
66
112
  "and_word": "et",
67
113
  "transits": "Transites pour",
68
114
  "type": "Type",
69
- "aspects": "Les aspects",
115
+ "couple_aspects": "Les aspects",
116
+ "transit_aspects": "Les aspects de transit",
70
117
  "planets_and_house": "Points pour",
71
118
  "transit_name": "Au moment de la transition",
72
119
  "lunar_phase": "Phase Lunaire",
@@ -77,6 +124,51 @@
77
124
  "east_letter": "E",
78
125
  "south_letter": "S",
79
126
  "west_letter": "W",
127
+ "tropical": "Tropical",
128
+ "sidereal": "Sidéral",
129
+ "zodiac": "Zodiaque",
130
+ "ayanamsa": "Ayanamsa",
131
+ "apparent_geocentric": "Géocentrique Apparent",
132
+ "heliocentric": "Héliocentrique",
133
+ "topocentric": "Topocentrique",
134
+ "true_geocentric": "Géocentrique Vrai",
135
+ "new_moon": "Nouvelle Lune",
136
+ "waxing_crescent": "Premier Croissant",
137
+ "first_quarter": "Premier Quartier",
138
+ "waxing_gibbous": "Lune Gibbeuse Croissante",
139
+ "full_moon": "Pleine Lune",
140
+ "waning_gibbous": "Lune Gibbeuse Décroissante",
141
+ "last_quarter": "Dernier Quartier",
142
+ "waning_crescent": "Dernier Croissant",
143
+ "houses": "Maisons",
144
+ "houses_system_A": "Égales",
145
+ "houses_system_B": "Alcabitius",
146
+ "houses_system_C": "Campanus",
147
+ "houses_system_D": "Égales (MC)",
148
+ "houses_system_F": "Carter poli-equ.",
149
+ "houses_system_H": "Horizon/Azimut",
150
+ "houses_system_I": "Sunshine",
151
+ "houses_system_i": "Sunshine/alt.",
152
+ "houses_system_K": "Koch",
153
+ "houses_system_L": "Pullen SD",
154
+ "houses_system_M": "Morinus",
155
+ "houses_system_N": "Égales/1=Bélier",
156
+ "houses_system_O": "Porphyre",
157
+ "houses_system_P": "Placidus",
158
+ "houses_system_Q": "Pullen SR",
159
+ "houses_system_R": "Regiomontanus",
160
+ "houses_system_S": "Sripati",
161
+ "houses_system_T": "Polich/Page",
162
+ "houses_system_U": "Krusinski-Pisa-Goelzer",
163
+ "houses_system_V": "Égales/Vehlow",
164
+ "houses_system_W": "Égales/Signe entier",
165
+ "houses_system_X": "Système de rotation axiale/Maisons méridiennes",
166
+ "houses_system_Y": "Maisons APC",
167
+ "Natal": "Natal",
168
+ "ExternalNatal": "Natal Externe",
169
+ "Synastry": "Synastrie",
170
+ "Transit": "Transit",
171
+ "Composite": "Composite",
80
172
  "celestial_points": {
81
173
  "Sun": "Soleil",
82
174
  "Moon": "Lune",
@@ -116,7 +208,8 @@
116
208
  "and_word": "e",
117
209
  "transits": "Trânsitos para",
118
210
  "type": "Tipo",
119
- "aspects": "Aspectos do casal",
211
+ "couple_aspects": "Aspectos do casal",
212
+ "transit_aspects": "Aspectos do trânsito",
120
213
  "planets_and_house": "Pontos para",
121
214
  "transit_name": "No momento do trânsito",
122
215
  "lunar_phase": "Fase lunar",
@@ -127,6 +220,51 @@
127
220
  "east_letter": "E",
128
221
  "south_letter": "S",
129
222
  "west_letter": "W",
223
+ "tropical": "Tropical",
224
+ "sidereal": "Sideral",
225
+ "zodiac": "Zodíaco",
226
+ "ayanamsa": "Ayanamsa",
227
+ "apparent_geocentric": "Geocêntrico Aparente",
228
+ "heliocentric": "Heliocêntrico",
229
+ "topocentric": "Topocêntrico",
230
+ "true_geocentric": "Geocêntrico Verdadeiro",
231
+ "new_moon": "Lua Nova",
232
+ "waxing_crescent": "Lua Crescente",
233
+ "first_quarter": "Quarto Crescente",
234
+ "waxing_gibbous": "Lua Gibosa Crescente",
235
+ "full_moon": "Lua Cheia",
236
+ "waning_gibbous": "Lua Gibosa Minguante",
237
+ "last_quarter": "Quarto Minguante",
238
+ "waning_crescent": "Lua Minguante",
239
+ "houses": "Casas",
240
+ "houses_system_A": "Igual",
241
+ "houses_system_B": "Alcabítio",
242
+ "houses_system_C": "Campanus",
243
+ "houses_system_D": "Igual (MC)",
244
+ "houses_system_F": "Carter poli-equ.",
245
+ "houses_system_H": "Horizonte/Azimute",
246
+ "houses_system_I": "Sunshine",
247
+ "houses_system_i": "Sunshine/alt.",
248
+ "houses_system_K": "Koch",
249
+ "houses_system_L": "Pullen SD",
250
+ "houses_system_M": "Morinus",
251
+ "houses_system_N": "Igual/1=Áries",
252
+ "houses_system_O": "Porfírio",
253
+ "houses_system_P": "Placidus",
254
+ "houses_system_Q": "Pullen SR",
255
+ "houses_system_R": "Regiomontanus",
256
+ "houses_system_S": "Sripati",
257
+ "houses_system_T": "Polich/Page",
258
+ "houses_system_U": "Krusinski-Pisa-Goelzer",
259
+ "houses_system_V": "Igual/Vehlow",
260
+ "houses_system_W": "Igual/Signo inteiro",
261
+ "houses_system_X": "Sistema de rotação axial/Casas meridianas",
262
+ "houses_system_Y": "Casas APC",
263
+ "Natal": "Natal",
264
+ "ExternalNatal": "Natal Externo",
265
+ "Synastry": "Sinastria",
266
+ "Transit": "Trânsito",
267
+ "Composite": "Composto",
130
268
  "celestial_points": {
131
269
  "Sun": "Sol",
132
270
  "Moon": "Lua",
@@ -166,7 +304,8 @@
166
304
  "and_word": "e",
167
305
  "transits": "Transiti per",
168
306
  "type": "Tipo",
169
- "aspects": "Aspetti di coppia",
307
+ "couple_aspects": "Aspetti di coppia",
308
+ "transit_aspects": "Aspetti di transito",
170
309
  "planets_and_house": "Punti per",
171
310
  "transit_name": "Al momento del transito",
172
311
  "lunar_phase": "Fase lunare",
@@ -177,6 +316,51 @@
177
316
  "east_letter": "E",
178
317
  "south_letter": "S",
179
318
  "west_letter": "W",
319
+ "tropical": "Tropicale",
320
+ "sidereal": "Siderale",
321
+ "zodiac": "Zodiaco",
322
+ "ayanamsa": "Ayanamsa",
323
+ "apparent_geocentric": "Geocentrico Apparente",
324
+ "heliocentric": "Eliocentrico",
325
+ "topocentric": "Topocentrico",
326
+ "true_geocentric": "Geocentrico Vero",
327
+ "new_moon": "Luna Nuova",
328
+ "waxing_crescent": "Luna Crescente",
329
+ "first_quarter": "Primo Quarto",
330
+ "waxing_gibbous": "Gibbosa Crescente",
331
+ "full_moon": "Luna Piena",
332
+ "waning_gibbous": "Gibbosa Calante",
333
+ "last_quarter": "Ultimo Quarto",
334
+ "waning_crescent": "Luna Calante",
335
+ "houses": "Domificazione",
336
+ "houses_system_A": "Uguale",
337
+ "houses_system_B": "Alcabizio",
338
+ "houses_system_C": "Campano",
339
+ "houses_system_D": "Uguale (MC)",
340
+ "houses_system_F": "Carter poli-equ.",
341
+ "houses_system_H": "Orizzonte/Azimut",
342
+ "houses_system_I": "Sunshine",
343
+ "houses_system_i": "Sunshine/alt.",
344
+ "houses_system_K": "Koch",
345
+ "houses_system_L": "Pullen SD",
346
+ "houses_system_M": "Morinus",
347
+ "houses_system_N": "Uguale/1=Ariete",
348
+ "houses_system_O": "Porfirio",
349
+ "houses_system_P": "Placido",
350
+ "houses_system_Q": "Pullen SR",
351
+ "houses_system_R": "Regiomontano",
352
+ "houses_system_S": "Sripati",
353
+ "houses_system_T": "Polich/Page",
354
+ "houses_system_U": "Krusinski-Pisa-Goelzer",
355
+ "houses_system_V": "Uguale/Vehlow",
356
+ "houses_system_W": "Uguale/Segno intero",
357
+ "houses_system_X": "Sistema di rotazione assiale/Case meridiane",
358
+ "houses_system_Y": "Case APC",
359
+ "Natal": "Natale",
360
+ "ExternalNatal": "Natale Esterno",
361
+ "Synastry": "Sinastria",
362
+ "Transit": "Transito",
363
+ "Composite": "Composito",
180
364
  "celestial_points": {
181
365
  "Sun": "Sole",
182
366
  "Moon": "Luna",
@@ -216,7 +400,8 @@
216
400
  "and_word": "與",
217
401
  "transits": "流年合盤",
218
402
  "type": "盤型",
219
- "aspects": "相位",
403
+ "couple_aspects": "相位",
404
+ "transit_aspects": "流年相位",
220
405
  "planets_and_house": "行星 與 宫位",
221
406
  "transit_name": "流年名稱",
222
407
  "lunar_phase": "月相",
@@ -227,6 +412,51 @@
227
412
  "east_letter": "東",
228
413
  "south_letter": "南",
229
414
  "west_letter": "西",
415
+ "tropical": "熱帶",
416
+ "sidereal": "恆星",
417
+ "zodiac": "黃道",
418
+ "ayanamsa": "阿揚那姆沙",
419
+ "apparent_geocentric": "視地心",
420
+ "heliocentric": "日心",
421
+ "topocentric": "站心",
422
+ "true_geocentric": "真地心",
423
+ "new_moon": "新月",
424
+ "waxing_crescent": "娥眉月",
425
+ "first_quarter": "上弦月",
426
+ "waxing_gibbous": "盈凸月",
427
+ "full_moon": "滿月",
428
+ "waning_gibbous": "虧凸月",
429
+ "last_quarter": "下弦月",
430
+ "waning_crescent": "殘月",
431
+ "houses": "宮位系統",
432
+ "houses_system_A": "等宮",
433
+ "houses_system_B": "阿卡比提烏斯",
434
+ "houses_system_C": "坎帕努斯",
435
+ "houses_system_D": "等宮 (MC)",
436
+ "houses_system_F": "卡特極-等",
437
+ "houses_system_H": "地平/方位",
438
+ "houses_system_I": "日照",
439
+ "houses_system_i": "日照/高度",
440
+ "houses_system_K": "科赫",
441
+ "houses_system_L": "普倫 SD",
442
+ "houses_system_M": "莫里努斯",
443
+ "houses_system_N": "等宮/1=白羊",
444
+ "houses_system_O": "波菲里",
445
+ "houses_system_P": "普拉西達斯",
446
+ "houses_system_Q": "普倫 SR",
447
+ "houses_system_R": "雷焦蒙塔努斯",
448
+ "houses_system_S": "斯里帕蒂",
449
+ "houses_system_T": "波利奇/佩奇",
450
+ "houses_system_U": "克魯辛斯基-比薩-戈爾澤",
451
+ "houses_system_V": "等宮/韋洛",
452
+ "houses_system_W": "等宮/整體星座",
453
+ "houses_system_X": "軸向旋轉系統/子午線宮",
454
+ "houses_system_Y": "APC宮位",
455
+ "Natal": "本命盤",
456
+ "ExternalNatal": "外部本命盤",
457
+ "Synastry": "合盤",
458
+ "Transit": "運行",
459
+ "Composite": "合成盤",
230
460
  "celestial_points": {
231
461
  "Sun": "太陽",
232
462
  "Moon": "月亮",
@@ -266,7 +496,8 @@
266
496
  "and_word": "y",
267
497
  "transits": "Tránsitos para",
268
498
  "type": "Tipo",
269
- "aspects": "Aspectos de la pareja",
499
+ "couple_aspects": "Aspectos de la pareja",
500
+ "transit_aspects": "Aspectos de tránsito",
270
501
  "planets_and_house": "Puntos para",
271
502
  "transit_name": "En el momento del tránsito",
272
503
  "lunar_phase": "Fase lunar",
@@ -277,6 +508,51 @@
277
508
  "east_letter": "E",
278
509
  "south_letter": "S",
279
510
  "west_letter": "W",
511
+ "tropical": "Tropical",
512
+ "sidereal": "Sideral",
513
+ "zodiac": "Zodiaco",
514
+ "ayanamsa": "Ayanamsa",
515
+ "apparent_geocentric": "Geocéntrico Aparente",
516
+ "heliocentric": "Heliocéntrico",
517
+ "topocentric": "Topocéntrico",
518
+ "true_geocentric": "Geocéntrico Verdadero",
519
+ "new_moon": "Luna Nueva",
520
+ "waxing_crescent": "Luna Creciente",
521
+ "first_quarter": "Cuarto Creciente",
522
+ "waxing_gibbous": "Luna Gibosa Creciente",
523
+ "full_moon": "Luna Llena",
524
+ "waning_gibbous": "Luna Gibosa Menguante",
525
+ "last_quarter": "Cuarto Menguante",
526
+ "waning_crescent": "Luna Menguante",
527
+ "houses": "Casas",
528
+ "houses_system_A": "Iguales",
529
+ "houses_system_B": "Alcabicio",
530
+ "houses_system_C": "Campanus",
531
+ "houses_system_D": "Iguales (MC)",
532
+ "houses_system_F": "Carter poli-equ.",
533
+ "houses_system_H": "Horizonte/Azimut",
534
+ "houses_system_I": "Sunshine",
535
+ "houses_system_i": "Sunshine/alt.",
536
+ "houses_system_K": "Koch",
537
+ "houses_system_L": "Pullen SD",
538
+ "houses_system_M": "Morinus",
539
+ "houses_system_N": "Iguales/1=Aries",
540
+ "houses_system_O": "Porfirio",
541
+ "houses_system_P": "Placidus",
542
+ "houses_system_Q": "Pullen SR",
543
+ "houses_system_R": "Regiomontanus",
544
+ "houses_system_S": "Sripati",
545
+ "houses_system_T": "Polich/Page",
546
+ "houses_system_U": "Krusinski-Pisa-Goelzer",
547
+ "houses_system_V": "Iguales/Vehlow",
548
+ "houses_system_W": "Iguales/Signo completo",
549
+ "houses_system_X": "Sistema de rotación axial/Casas meridianas",
550
+ "houses_system_Y": "Casas APC",
551
+ "Natal": "Natal",
552
+ "ExternalNatal": "Natal Externo",
553
+ "Synastry": "Sinastría",
554
+ "Transit": "Tránsito",
555
+ "Composite": "Compuesto",
280
556
  "celestial_points": {
281
557
  "Sun": "Sol",
282
558
  "Moon": "Luna",
@@ -316,7 +592,8 @@
316
592
  "and_word": "и",
317
593
  "transits": "Транзиты для",
318
594
  "type": "Тип",
319
- "aspects": "Аспекты пары",
595
+ "couple_aspects": "Аспекты пары",
596
+ "transit_aspects": "Транзитные аспекты",
320
597
  "planets_and_house": "Пункты для",
321
598
  "transit_name": "В момент транзита",
322
599
  "lunar_phase": "Лунная фаза",
@@ -327,6 +604,51 @@
327
604
  "east_letter": "В",
328
605
  "south_letter": "Ю",
329
606
  "west_letter": "З",
607
+ "tropical": "Тропический",
608
+ "sidereal": "Сидереальный",
609
+ "zodiac": "Зодиак",
610
+ "ayanamsa": "Аянамса",
611
+ "apparent_geocentric": "Видимый Геоцентрический",
612
+ "heliocentric": "Гелиоцентрический",
613
+ "topocentric": "Топоцентрический",
614
+ "true_geocentric": "Истинный Геоцентрический",
615
+ "new_moon": "Новолуние",
616
+ "waxing_crescent": "Растущий Серп",
617
+ "first_quarter": "Первая Четверть",
618
+ "waxing_gibbous": "Растущая Луна",
619
+ "full_moon": "Полнолуние",
620
+ "waning_gibbous": "Убывающая Луна",
621
+ "last_quarter": "Последняя Четверть",
622
+ "waning_crescent": "Убывающий Серп",
623
+ "houses": "Дома",
624
+ "houses_system_A": "Равные",
625
+ "houses_system_B": "Алькабитиус",
626
+ "houses_system_C": "Кампанус",
627
+ "houses_system_D": "Равные (MC)",
628
+ "houses_system_F": "Картер поли-экв.",
629
+ "houses_system_H": "Горизонт/Азимут",
630
+ "houses_system_I": "Саншайн",
631
+ "houses_system_i": "Саншайн/альт.",
632
+ "houses_system_K": "Кох",
633
+ "houses_system_L": "Пуллен SD",
634
+ "houses_system_M": "Моринус",
635
+ "houses_system_N": "Равные/1=Овен",
636
+ "houses_system_O": "Порфирий",
637
+ "houses_system_P": "Плацидус",
638
+ "houses_system_Q": "Пуллен SR",
639
+ "houses_system_R": "Региомонтанус",
640
+ "houses_system_S": "Шрипати",
641
+ "houses_system_T": "Полич/Пейдж",
642
+ "houses_system_U": "Крусински-Пиза-Гольцер",
643
+ "houses_system_V": "Равные/Велоу",
644
+ "houses_system_W": "Равные/Целый знак",
645
+ "houses_system_X": "Осевая система вращения/Меридианные дома",
646
+ "houses_system_Y": "Дома APC",
647
+ "Natal": "Натальная",
648
+ "ExternalNatal": "Внешняя Натальная",
649
+ "Synastry": "Синастрия",
650
+ "Transit": "Транзит",
651
+ "Composite": "Композит",
330
652
  "celestial_points": {
331
653
  "Sun": "Солнце",
332
654
  "Moon": "Луна",
@@ -366,7 +688,8 @@
366
688
  "and_word": "ve",
367
689
  "transits": "Geçişler için",
368
690
  "type": "Tür",
369
- "aspects": "Çiftin Açılar",
691
+ "couple_aspects": "Çiftin Açılar",
692
+ "transit_aspects": "Geçiş Açıları",
370
693
  "planets_and_house": "Puanlar için",
371
694
  "transit_name": "Geçiş anında",
372
695
  "lunar_phase": "Ay Aşaması",
@@ -377,6 +700,51 @@
377
700
  "east_letter": "D",
378
701
  "south_letter": "G",
379
702
  "west_letter": "B",
703
+ "tropical": "Tropikal",
704
+ "sidereal": "Sidereal",
705
+ "zodiac": "Burçlar",
706
+ "ayanamsa": "Ayanamsa",
707
+ "apparent_geocentric": "Görünen Jeosentrik",
708
+ "heliocentric": "Helyosentrik",
709
+ "topocentric": "Toposentrik",
710
+ "true_geocentric": "Gerçek Jeosentrik",
711
+ "new_moon": "Yeni Ay",
712
+ "waxing_crescent": "Hilal",
713
+ "first_quarter": "İlk Dördün",
714
+ "waxing_gibbous": "Şişkin Ay",
715
+ "full_moon": "Dolunay",
716
+ "waning_gibbous": "Küçülen Şişkin Ay",
717
+ "last_quarter": "Son Dördün",
718
+ "waning_crescent": "Küçülen Hilal",
719
+ "houses": "Evler",
720
+ "houses_system_A": "Eşit",
721
+ "houses_system_B": "Alkabisyus",
722
+ "houses_system_C": "Kampanus",
723
+ "houses_system_D": "Eşit (MC)",
724
+ "houses_system_F": "Carter poli-equ.",
725
+ "houses_system_H": "Ufuk/Azimut",
726
+ "houses_system_I": "Sunshine",
727
+ "houses_system_i": "Sunshine/alt.",
728
+ "houses_system_K": "Koch",
729
+ "houses_system_L": "Pullen SD",
730
+ "houses_system_M": "Morinus",
731
+ "houses_system_N": "Eşit/1=Koç",
732
+ "houses_system_O": "Porfiryus",
733
+ "houses_system_P": "Placidus",
734
+ "houses_system_Q": "Pullen SR",
735
+ "houses_system_R": "Regiomontanus",
736
+ "houses_system_S": "Sripati",
737
+ "houses_system_T": "Polich/Page",
738
+ "houses_system_U": "Krusinski-Pisa-Goelzer",
739
+ "houses_system_V": "Eşit/Vehlow",
740
+ "houses_system_W": "Eşit/Tam burç",
741
+ "houses_system_X": "Eksenel dönüş sistemi/Meridyen evleri",
742
+ "houses_system_Y": "APC evleri",
743
+ "Natal": "Doğum",
744
+ "ExternalNatal": "Harici Doğum",
745
+ "Synastry": "Sinastri",
746
+ "Transit": "Geçiş",
747
+ "Composite": "Kompozit",
380
748
  "celestial_points": {
381
749
  "Sun": "Güneş",
382
750
  "Moon": "Ay",
@@ -416,7 +784,8 @@
416
784
  "and_word": "und",
417
785
  "transits": "Transite für",
418
786
  "type": "Typ",
419
- "aspects": "Aspekte des Paares",
787
+ "couple_aspects": "Aspekte des Paares",
788
+ "transit_aspects": "Transitaspekte",
420
789
  "planets_and_house": "Punkte für",
421
790
  "transit_name": "Zum Zeitpunkt des Transits",
422
791
  "lunar_phase": "Mondphase",
@@ -427,6 +796,51 @@
427
796
  "east_letter": "E",
428
797
  "south_letter": "S",
429
798
  "west_letter": "W",
799
+ "tropical": "Tropisch",
800
+ "sidereal": "Siderisch",
801
+ "zodiac": "Tierkreis",
802
+ "ayanamsa": "Ayanamsa",
803
+ "apparent_geocentric": "Scheinbar Geozentrisch",
804
+ "heliocentric": "Heliozentrisch",
805
+ "topocentric": "Topozentrisch",
806
+ "true_geocentric": "Wahrhaft Geozentrisch",
807
+ "new_moon": "Neumond",
808
+ "waxing_crescent": "Zunehmende Sichel",
809
+ "first_quarter": "Erstes Viertel",
810
+ "waxing_gibbous": "Zunehmender Mond",
811
+ "full_moon": "Vollmond",
812
+ "waning_gibbous": "Abnehmender Mond",
813
+ "last_quarter": "Letztes Viertel",
814
+ "waning_crescent": "Abnehmende Sichel",
815
+ "houses": "Häuser",
816
+ "houses_system_A": "Gleich",
817
+ "houses_system_B": "Alcabitius",
818
+ "houses_system_C": "Campanus",
819
+ "houses_system_D": "Gleich (MC)",
820
+ "houses_system_F": "Carter poli-äqu.",
821
+ "houses_system_H": "Horizont/Azimut",
822
+ "houses_system_I": "Sunshine",
823
+ "houses_system_i": "Sunshine/alt.",
824
+ "houses_system_K": "Koch",
825
+ "houses_system_L": "Pullen SD",
826
+ "houses_system_M": "Morinus",
827
+ "houses_system_N": "Gleich/1=Widder",
828
+ "houses_system_O": "Porphyrius",
829
+ "houses_system_P": "Placidus",
830
+ "houses_system_Q": "Pullen SR",
831
+ "houses_system_R": "Regiomontanus",
832
+ "houses_system_S": "Sripati",
833
+ "houses_system_T": "Polich/Page",
834
+ "houses_system_U": "Krusinski-Pisa-Goelzer",
835
+ "houses_system_V": "Gleich/Vehlow",
836
+ "houses_system_W": "Gleich/Ganzes Zeichen",
837
+ "houses_system_X": "Axiales Rotationssystem/Meridianhäuser",
838
+ "houses_system_Y": "APC Häuser",
839
+ "Natal": "Radix",
840
+ "ExternalNatal": "Externes Radix",
841
+ "Synastry": "Synastrie",
842
+ "Transit": "Transit",
843
+ "Composite": "Composit",
430
844
  "celestial_points": {
431
845
  "Sun": "Sonne",
432
846
  "Moon": "Mond",
@@ -466,7 +880,8 @@
466
880
  "and_word": "और",
467
881
  "transits": "गोचर के लिए",
468
882
  "type": "प्रकार",
469
- "aspects": "जोड़ी के पहलू",
883
+ "couple_aspects": "जोड़ी के पहलू",
884
+ "transit_aspects": "गोचर के पहलू",
470
885
  "planets_and_house": "अंक के लिए",
471
886
  "transit_name": "गोचर के समय",
472
887
  "lunar_phase": "चंद्र चरण",
@@ -477,6 +892,51 @@
477
892
  "east_letter": "पू",
478
893
  "south_letter": "द",
479
894
  "west_letter": "प",
895
+ "tropical": "ट्रॉपिकल",
896
+ "sidereal": "साइडीरियल",
897
+ "zodiac": "राशि",
898
+ "ayanamsa": "अयनांश",
899
+ "apparent_geocentric": "आभासी भूकेंद्रीय",
900
+ "heliocentric": "सूर्यकेंद्रीय",
901
+ "topocentric": "स्थानकेंद्रीय",
902
+ "true_geocentric": "वास्तविक भूकेंद्रीय",
903
+ "new_moon": "अमावस्या",
904
+ "waxing_crescent": "शुक्ल पक्ष प्रथमा",
905
+ "first_quarter": "शुक्ल पक्ष सप्तमी",
906
+ "waxing_gibbous": "शुक्ल पक्ष त्रयोदशी",
907
+ "full_moon": "पूर्णिमा",
908
+ "waning_gibbous": "कृष्ण पक्ष त्रयोदशी",
909
+ "last_quarter": "कृष्ण पक्ष सप्तमी",
910
+ "waning_crescent": "कृष्ण पक्ष प्रथमा",
911
+ "houses": "भावों",
912
+ "houses_system_A": "समान",
913
+ "houses_system_B": "अल्काबितियस",
914
+ "houses_system_C": "कैम्पानस",
915
+ "houses_system_D": "समान (MC)",
916
+ "houses_system_F": "कार्टर बहु-सम",
917
+ "houses_system_H": "क्षितिज/अज़ीमुथ",
918
+ "houses_system_I": "सनशाइन",
919
+ "houses_system_i": "सनशाइन/वैकल्पिक",
920
+ "houses_system_K": "कोच",
921
+ "houses_system_L": "पुल्लेन SD",
922
+ "houses_system_M": "मोरिनस",
923
+ "houses_system_N": "समान/1=मेष",
924
+ "houses_system_O": "पोरफिरी",
925
+ "houses_system_P": "प्लासिडस",
926
+ "houses_system_Q": "पुल्लेन SR",
927
+ "houses_system_R": "रेजियोमोंटेनस",
928
+ "houses_system_S": "श्रीपति",
929
+ "houses_system_T": "पोलिच/पेज",
930
+ "houses_system_U": "क्रुसिंस्की-पिसा-गोल्ज़र",
931
+ "houses_system_V": "समान/वेहलो",
932
+ "houses_system_W": "समान/पूर्ण राशि",
933
+ "houses_system_X": "धुरी घूर्णन प्रणाली/मेरिडियन भाव",
934
+ "houses_system_Y": "APC भाव",
935
+ "Natal": "जन्म",
936
+ "ExternalNatal": "बाहरी जन्म",
937
+ "Synastry": "सिनेस्ट्री",
938
+ "Transit": "गोचर",
939
+ "Composite": "संयुक्त",
480
940
  "celestial_points": {
481
941
  "Sun": "सूर्य",
482
942
  "Moon": "चंद्रमा",
@@ -494,10 +954,10 @@
494
954
  "Imum_Coeli": "आईसी",
495
955
  "True_Node": "उत्तर नोड (T)",
496
956
  "Mean_Node": "उत्तर नोड (M)",
497
- "Chiron": "किरोन",
498
- "Mean_Lilith": "लिलिथ",
499
957
  "True_South_Node": "दक्षिण नोड (T)",
500
- "Mean_South_Node": "दक्षिण नोड (M)"
958
+ "Mean_South_Node": "दक्षिण नोड (M)",
959
+ "Chiron": "किरोन",
960
+ "Mean_Lilith": "लिलिथ"
501
961
  }
502
962
  }
503
963
  },
@@ -575,7 +1035,9 @@
575
1035
  "name": "Sun",
576
1036
  "color": "var(--kerykeion-chart-color-sun)",
577
1037
  "element_points": 40,
578
- "related_zodiac_signs": ["4"],
1038
+ "related_zodiac_signs": [
1039
+ "4"
1040
+ ],
579
1041
  "label": "Sun"
580
1042
  },
581
1043
  {
@@ -583,7 +1045,9 @@
583
1045
  "name": "Moon",
584
1046
  "color": "var(--kerykeion-chart-color-moon)",
585
1047
  "element_points": 40,
586
- "related_zodiac_signs": ["3"],
1048
+ "related_zodiac_signs": [
1049
+ "3"
1050
+ ],
587
1051
  "label": "Moon"
588
1052
  },
589
1053
  {
@@ -591,7 +1055,10 @@
591
1055
  "name": "Mercury",
592
1056
  "color": "var(--kerykeion-chart-color-mercury)",
593
1057
  "element_points": 15,
594
- "related_zodiac_signs": ["2", "5"],
1058
+ "related_zodiac_signs": [
1059
+ "2",
1060
+ "5"
1061
+ ],
595
1062
  "label": "Mercury"
596
1063
  },
597
1064
  {
@@ -599,7 +1066,10 @@
599
1066
  "name": "Venus",
600
1067
  "color": "var(--kerykeion-chart-color-venus)",
601
1068
  "element_points": 15,
602
- "related_zodiac_signs": ["1", "6"],
1069
+ "related_zodiac_signs": [
1070
+ "1",
1071
+ "6"
1072
+ ],
603
1073
  "label": "Venus"
604
1074
  },
605
1075
  {
@@ -607,7 +1077,9 @@
607
1077
  "name": "Mars",
608
1078
  "color": "var(--kerykeion-chart-color-mars)",
609
1079
  "element_points": 15,
610
- "related_zodiac_signs": ["0"],
1080
+ "related_zodiac_signs": [
1081
+ "0"
1082
+ ],
611
1083
  "label": "Mars"
612
1084
  },
613
1085
  {
@@ -615,7 +1087,9 @@
615
1087
  "name": "Jupiter",
616
1088
  "color": "var(--kerykeion-chart-color-jupiter)",
617
1089
  "element_points": 10,
618
- "related_zodiac_signs": ["8"],
1090
+ "related_zodiac_signs": [
1091
+ "8"
1092
+ ],
619
1093
  "label": "Jupiter"
620
1094
  },
621
1095
  {
@@ -623,7 +1097,9 @@
623
1097
  "name": "Saturn",
624
1098
  "color": "var(--kerykeion-chart-color-saturn)",
625
1099
  "element_points": 10,
626
- "related_zodiac_signs": ["9"],
1100
+ "related_zodiac_signs": [
1101
+ "9"
1102
+ ],
627
1103
  "label": "Saturn"
628
1104
  },
629
1105
  {
@@ -631,7 +1107,9 @@
631
1107
  "name": "Uranus",
632
1108
  "color": "var(--kerykeion-chart-color-uranus)",
633
1109
  "element_points": 10,
634
- "related_zodiac_signs": ["10"],
1110
+ "related_zodiac_signs": [
1111
+ "10"
1112
+ ],
635
1113
  "label": "Uranus"
636
1114
  },
637
1115
  {
@@ -639,7 +1117,9 @@
639
1117
  "name": "Neptune",
640
1118
  "color": "var(--kerykeion-chart-color-neptune)",
641
1119
  "element_points": 10,
642
- "related_zodiac_signs": ["11"],
1120
+ "related_zodiac_signs": [
1121
+ "11"
1122
+ ],
643
1123
  "label": "Neptune"
644
1124
  },
645
1125
  {
@@ -647,7 +1127,9 @@
647
1127
  "name": "Pluto",
648
1128
  "color": "var(--kerykeion-chart-color-pluto)",
649
1129
  "element_points": 10,
650
- "related_zodiac_signs": ["7"],
1130
+ "related_zodiac_signs": [
1131
+ "7"
1132
+ ],
651
1133
  "label": "Pluto"
652
1134
  },
653
1135
  {
@@ -731,7 +1213,6 @@
731
1213
  "label": "True_South_Node"
732
1214
  }
733
1215
  ],
734
-
735
1216
  "chart_colors": {
736
1217
  "paper_0": "var(--kerykeion-chart-color-paper-0)",
737
1218
  "paper_1": "var(--kerykeion-chart-color-paper-1)",
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kerykeion
3
- Version: 4.25.0
3
+ Version: 4.25.2
4
4
  Summary: A python library for astrology.
5
5
  Home-page: https://www.kerykeion.net/
6
6
  License: AGPL-3.0
@@ -39,24 +39,15 @@ Description-Content-Type: text/markdown
39
39
 
40
40
  <h1 align=center>Kerykeion</h1>
41
41
  <div align="center">
42
- <a href="#">
43
42
  <img src="https://img.shields.io/github/contributors/g-battaglia/kerykeion?color=blue&logo=github" alt="contributors">
44
- </a>
45
- <a href="#">
46
43
  <img src="https://img.shields.io/github/stars/g-battaglia/kerykeion.svg?logo=github" alt="stars">
47
- </a>
48
- <a href="#">
49
44
  <img src="https://img.shields.io/github/forks/g-battaglia/kerykeion.svg?logo=github" alt="forks">
50
- </a>
51
- <a href="https://pypi.org/project/kerykeion" target="_blank">
45
+ <img src="https://static.pepy.tech/badge/kerykeion" alt="PyPI Downloads">
52
46
  <img src="https://visitor-badge.laobi.icu/badge?page_id=g-battaglia.kerykeion" alt="visitors"/>
53
- </a>
54
- <a href="https://pypi.org/project/kerykeion" target="_blank">
55
47
  <img src="https://img.shields.io/pypi/v/kerykeion?label=pypi%20package" alt="Package version">
56
- </a>
57
- <a href="https://pypi.org/project/kerykeion" target="_blank">
58
48
  <img src="https://img.shields.io/pypi/pyversions/kerykeion.svg" alt="Supported Python versions">
59
- </a>
49
+ <img src="https://img.shields.io/github/license/g-battaglia/kerykeion" alt="License">
50
+
60
51
  </div>
61
52
 
62
53
  &nbsp;
@@ -71,7 +62,7 @@ The core goal of this project is to provide a simple and easy approach to astrol
71
62
 
72
63
  Here's an example of a birthchart:
73
64
 
74
- ![Kanye Birth Chart](https://www.kerykeion.net/docs/assets/img/examples/birth-chart.svg)
65
+ ![John Lenon Chart](https://raw.githubusercontent.com/g-battaglia/kerykeion/refs/heads/master/tests/charts/svg/John%20Lennon%20-%20Dark%20Theme%20-%20Natal%20Chart.svg)
75
66
 
76
67
  ## Web API
77
68
 
@@ -174,6 +165,38 @@ synastry_chart.makeSVG()
174
165
 
175
166
  ![John Lennon and Paul McCartney Synastry](https://www.kerykeion.net/docs/assets/img/examples/synastry-chart.svg)
176
167
 
168
+
169
+ ### Transit Chart
170
+
171
+ ```python
172
+ from kerykeion import AstrologicalSubject
173
+
174
+ transit = AstrologicalSubject("Transit", 2025, 6, 8, 8, 45, "Atlanta", "US")
175
+ subject = AstrologicalSubject("John Lennon", 1940, 10, 9, 18, 30, "Liverpool", "GB")
176
+
177
+ transit_chart = KerykeionChartSVG(subject, "Transit", transit)
178
+ transit_chart.makeSVG()
179
+ ```
180
+
181
+ ![John Lennon Transit Chart](https://raw.githubusercontent.com/g-battaglia/kerykeion/refs/heads/master/tests/charts/svg/John%20Lennon%20-%20Transit%20Chart.svg)
182
+
183
+ ### Composite Chart
184
+
185
+ ```python
186
+ from kerykeion import CompositeChart, AstrologicalSubject, KerykeionChartSVG
187
+
188
+ angelina = AstrologicalSubject("Angelina Jolie", 1975, 6, 4, 9, 9, "Los Angeles", "US", lng=-118.15, lat=34.03, tz_str="America/Los_Angeles")
189
+ brad = AstrologicalSubject("Brad Pitt", 1963, 12, 18, 6, 31, "Shawnee", "US", lng=-96.56, lat=35.20, tz_str="America/Chicago")
190
+
191
+ composite_subject_factory = CompositeSubjectFactory(angelina, brad)
192
+ composite_subject_model = composite_subject_factory.get_midpoint_composite_subject_model()
193
+
194
+ composite_chart = KerykeionChartSVG(composite_subject_model, "Composite")
195
+ composite_chart.makeSVG()
196
+ ```
197
+
198
+ ![Angelina Jolie and Brad Pitt Composite Chart](https://raw.githubusercontent.com/g-battaglia/kerykeion/refs/heads/master/tests/charts/svg/Angelina%20Jolie%20and%20Brad%20Pitt%20Composite%20Chart%20-%20Composite%20Chart.svg)
199
+
177
200
  ### Change the output directory
178
201
 
179
202
  By default the output directory is the home directory, you can change it by passing the new_output_directory parameter to the KerykeionChartSVG class:
@@ -8,7 +8,7 @@ kerykeion/astrological_subject.py,sha256=643axkLtIVPkOOTHhB4InHYn3XVEOBZdXLS9B-N
8
8
  kerykeion/charts/__init__.py,sha256=i9NMZ7LdkllPlqQSi1or9gTobHbROGDKmJhBDO4R0mA,128
9
9
  kerykeion/charts/charts_utils.py,sha256=TGmya60LMswUvQMi6irJWaboK6QRWCZ52wv5FMgaUT8,40424
10
10
  kerykeion/charts/draw_planets.py,sha256=Uty3zpWYMQZvvK7ZHhlmynCHeL8DIN3qL2ifnBXVciM,17393
11
- kerykeion/charts/kerykeion_chart_svg.py,sha256=KdUA4aQgVXQ91gNaNHr2K8EX-0lpMxO0GnN9C_X6u8Y,50660
11
+ kerykeion/charts/kerykeion_chart_svg.py,sha256=-mtL2rfGTeT17L5nZQ9bq5T5VYUZx2TpYRisEU3Bx_s,51891
12
12
  kerykeion/charts/templates/aspect_grid_only.xml,sha256=ZiBVeToVmCA8QxYlB_cfnsAO1NNeQAnJ_6rIYkr4F58,70091
13
13
  kerykeion/charts/templates/chart.xml,sha256=2p2LNNib9MfZiq521tFoEUwOBEN6KlbKOY4ZINdf7Dc,74985
14
14
  kerykeion/charts/templates/wheel_only.xml,sha256=E0JCxcnjTjxuaomw7PQEc_3xRVErj1y2hIOGTrShuhc,71304
@@ -25,20 +25,20 @@ kerykeion/kr_types/chart_types.py,sha256=EFXTddX1wwTzbLSDKw_ipg4tbOihTKPEnn2T9oo
25
25
  kerykeion/kr_types/kerykeion_exception.py,sha256=kE1y0K0rmuz32b4K_ZppSsZ59I2Get0ZkvOkTE5HejI,314
26
26
  kerykeion/kr_types/kr_literals.py,sha256=b1JEgByA8-PWtkM8TdkNb2aePr8dUApI-OH3ciulJF8,4327
27
27
  kerykeion/kr_types/kr_models.py,sha256=N7VhwxcMkXMjn5UNArleuxZ684woJzBjvvNC1CF7ttg,6824
28
- kerykeion/kr_types/settings_models.py,sha256=zCA7xsmRBb2nH6YMf4q33DC3lG4-3eGrX_jovRoABnI,12565
28
+ kerykeion/kr_types/settings_models.py,sha256=vo_feYdV_DFMw2aDQahe2q8W_OzsmzP0R91wxUxEZzg,11000
29
29
  kerykeion/relationship_score/__init__.py,sha256=cLaEBQXQBfyRkv0OaS3ceLROzvWcvKXWiRq0PS6LDjY,114
30
30
  kerykeion/relationship_score/relationship_score.py,sha256=lJkSbHw9nOUaPMrPxqcGhnVQIwAgI52K8BQzXXswb6A,6504
31
- kerykeion/relationship_score/relationship_score_factory.py,sha256=NbQZ7jh2-7CGk83NWA8lfkJszT1uZAQQH9KtaUhdAo8,10962
31
+ kerykeion/relationship_score/relationship_score_factory.py,sha256=wVdVomy_WlIvIvidnsf5a7jEZA8HJV8m8E3E_gia2yY,8651
32
32
  kerykeion/report.py,sha256=snqnrJzb89q2ixL74qS9ksvzNSh_WXtZ_haBOIvHYeY,2814
33
33
  kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
34
34
  kerykeion/settings/config_constants.py,sha256=OUi28L2l8s09Df3GHiQUiBZuTjOdfL4A5zSRNqBRHc8,1255
35
35
  kerykeion/settings/kerykeion_settings.py,sha256=7GCGUzcctEg5uyWlzRk2YIotJSkCZDOVAo_CXwgMeK4,2934
36
- kerykeion/settings/kr.config.json,sha256=NJKaKkLXnNfyJXrBgwLbvOwQigDum5ls8qSqGDmhjmA,23022
36
+ kerykeion/settings/kr.config.json,sha256=4ZB7fkM0xiiXDLtxPRVDIVm0lUMYahWQmCVugFe274I,42628
37
37
  kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
38
38
  kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
39
39
  kerykeion/utilities.py,sha256=6TQpxENYDMacH4CsRJGJ4rmoV2Pn7pmQc8MTOUR2CSg,13824
40
- kerykeion-4.25.0.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
41
- kerykeion-4.25.0.dist-info/METADATA,sha256=ma3O2egm-y2IuJMo70HaVtWQp_asnqw23w4VRs5aOr8,17722
42
- kerykeion-4.25.0.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
43
- kerykeion-4.25.0.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
44
- kerykeion-4.25.0.dist-info/RECORD,,
40
+ kerykeion-4.25.2.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
41
+ kerykeion-4.25.2.dist-info/METADATA,sha256=kg421Cy5jKNUXJd-320vZec1TTN67iMaYiqHf5mLNvo,19036
42
+ kerykeion-4.25.2.dist-info/WHEEL,sha256=Nq82e9rUAnEjt98J6MlVmMCZb-t9cYE2Ir1kpBmnWfs,88
43
+ kerykeion-4.25.2.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
44
+ kerykeion-4.25.2.dist-info/RECORD,,