kerykeion 5.0.0b5__py3-none-any.whl → 5.0.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.
- kerykeion/backword.py +1 -1
- kerykeion/charts/chart_drawer.py +8 -4
- {kerykeion-5.0.0b5.dist-info → kerykeion-5.0.2.dist-info}/METADATA +172 -75
- {kerykeion-5.0.0b5.dist-info → kerykeion-5.0.2.dist-info}/RECORD +6 -6
- {kerykeion-5.0.0b5.dist-info → kerykeion-5.0.2.dist-info}/WHEEL +0 -0
- {kerykeion-5.0.0b5.dist-info → kerykeion-5.0.2.dist-info}/licenses/LICENSE +0 -0
kerykeion/backword.py
CHANGED
|
@@ -621,7 +621,7 @@ class KerykeionChartSVG:
|
|
|
621
621
|
# ---------------------------------------------------------------------------
|
|
622
622
|
class NatalAspects:
|
|
623
623
|
"""Wrapper replicating the master branch NatalAspects interface.
|
|
624
|
-
|
|
624
|
+
|
|
625
625
|
Replacement: AspectsFactory.single_subject_aspects(subject)
|
|
626
626
|
"""
|
|
627
627
|
|
kerykeion/charts/chart_drawer.py
CHANGED
|
@@ -1071,24 +1071,28 @@ class ChartDrawer:
|
|
|
1071
1071
|
return f"{synastry_label}: {name1} {and_word} {name2}"
|
|
1072
1072
|
|
|
1073
1073
|
elif self.chart_type == "DualReturnChart":
|
|
1074
|
-
|
|
1074
|
+
return_datetime = datetime.fromisoformat(self.second_obj.iso_formatted_local_datetime) # type: ignore
|
|
1075
|
+
year = return_datetime.year
|
|
1076
|
+
month_year = return_datetime.strftime("%m/%Y")
|
|
1075
1077
|
truncated_name = self._truncate_name(self.first_obj.name)
|
|
1076
1078
|
if self.second_obj is not None and isinstance(self.second_obj, PlanetReturnModel) and self.second_obj.return_type == "Solar":
|
|
1077
1079
|
solar_label = self._translate("solar_return", "Solar")
|
|
1078
1080
|
return f"{truncated_name} - {solar_label} {year}"
|
|
1079
1081
|
else:
|
|
1080
1082
|
lunar_label = self._translate("lunar_return", "Lunar")
|
|
1081
|
-
return f"{truncated_name} - {lunar_label} {
|
|
1083
|
+
return f"{truncated_name} - {lunar_label} {month_year}"
|
|
1082
1084
|
|
|
1083
1085
|
elif self.chart_type == "SingleReturnChart":
|
|
1084
|
-
|
|
1086
|
+
return_datetime = datetime.fromisoformat(self.first_obj.iso_formatted_local_datetime) # type: ignore
|
|
1087
|
+
year = return_datetime.year
|
|
1088
|
+
month_year = return_datetime.strftime("%m/%Y")
|
|
1085
1089
|
truncated_name = self._truncate_name(self.first_obj.name)
|
|
1086
1090
|
if isinstance(self.first_obj, PlanetReturnModel) and self.first_obj.return_type == "Solar":
|
|
1087
1091
|
solar_label = self._translate("solar_return", "Solar")
|
|
1088
1092
|
return f"{truncated_name} - {solar_label} {year}"
|
|
1089
1093
|
else:
|
|
1090
1094
|
lunar_label = self._translate("lunar_return", "Lunar")
|
|
1091
|
-
return f"{truncated_name} - {lunar_label} {
|
|
1095
|
+
return f"{truncated_name} - {lunar_label} {month_year}"
|
|
1092
1096
|
|
|
1093
1097
|
# Fallback for unknown chart types
|
|
1094
1098
|
return self._truncate_name(self.first_obj.name)
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: kerykeion
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.2
|
|
4
4
|
Summary: A Python library for astrological calculations, including natal charts, houses, planetary aspects, and SVG chart generation.
|
|
5
5
|
Project-URL: Homepage, https://www.kerykeion.net/
|
|
6
6
|
Project-URL: Repository, https://github.com/g-battaglia/kerykeion
|
|
@@ -64,7 +64,7 @@ Kerykeion also integrates seamlessly with LLM and AI applications.
|
|
|
64
64
|
|
|
65
65
|
Here is an example of a birthchart:
|
|
66
66
|
|
|
67
|
-

|
|
68
68
|
|
|
69
69
|
## **Web API**
|
|
70
70
|
|
|
@@ -80,70 +80,69 @@ Maintaining this project requires substantial time and effort. The Astrologer AP
|
|
|
80
80
|
|
|
81
81
|
[](https://ko-fi.com/kerykeion)
|
|
82
82
|
|
|
83
|
-
## ⚠️ Development Branch Notice
|
|
84
|
-
|
|
85
|
-
This branch (`next`) is **not the stable version** of Kerykeion. It is the **development branch for the upcoming V5 release**.
|
|
86
|
-
|
|
87
|
-
If you're looking for the latest stable version, please check out the [`master`](https://github.com/g-battaglia/kerykeion/tree/master) branch instead.
|
|
88
|
-
|
|
89
83
|
## Table of Contents
|
|
90
84
|
|
|
91
|
-
-
|
|
92
|
-
-
|
|
93
|
-
-
|
|
94
|
-
-
|
|
95
|
-
-
|
|
96
|
-
-
|
|
97
|
-
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
-
|
|
116
|
-
-
|
|
117
|
-
-
|
|
118
|
-
-
|
|
119
|
-
-
|
|
120
|
-
-
|
|
121
|
-
-
|
|
122
|
-
-
|
|
123
|
-
-
|
|
124
|
-
-
|
|
125
|
-
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
-
|
|
141
|
-
|
|
142
|
-
-
|
|
143
|
-
-
|
|
144
|
-
-
|
|
145
|
-
-
|
|
146
|
-
-
|
|
85
|
+
- [**Web API**](#web-api)
|
|
86
|
+
- [**Donate**](#donate)
|
|
87
|
+
- [Table of Contents](#table-of-contents)
|
|
88
|
+
- [Installation](#installation)
|
|
89
|
+
- [Basic Usage](#basic-usage)
|
|
90
|
+
- [Generate a SVG Chart](#generate-a-svg-chart)
|
|
91
|
+
- [Birth Chart](#birth-chart)
|
|
92
|
+
- [External Birth Chart](#external-birth-chart)
|
|
93
|
+
- [Synastry Chart](#synastry-chart)
|
|
94
|
+
- [Transit Chart](#transit-chart)
|
|
95
|
+
- [Solar Return Chart (Dual Wheel)](#solar-return-chart-dual-wheel)
|
|
96
|
+
- [Solar Return Chart (Single Wheel)](#solar-return-chart-single-wheel)
|
|
97
|
+
- [Lunar Return Chart](#lunar-return-chart)
|
|
98
|
+
- [Composite Chart](#composite-chart)
|
|
99
|
+
- [Wheel Only Charts](#wheel-only-charts)
|
|
100
|
+
- [Birth Chart](#birth-chart-1)
|
|
101
|
+
- [Wheel Only Birth Chart (External)](#wheel-only-birth-chart-external)
|
|
102
|
+
- [Synastry Chart](#synastry-chart-1)
|
|
103
|
+
- [Change the Output Directory](#change-the-output-directory)
|
|
104
|
+
- [Change Language](#change-language)
|
|
105
|
+
- [Minified SVG](#minified-svg)
|
|
106
|
+
- [SVG without CSS Variables](#svg-without-css-variables)
|
|
107
|
+
- [Grid Only SVG](#grid-only-svg)
|
|
108
|
+
- [Report Generator](#report-generator)
|
|
109
|
+
- [Quick Examples](#quick-examples)
|
|
110
|
+
- [Section Access](#section-access)
|
|
111
|
+
- [Example: Retrieving Aspects](#example-retrieving-aspects)
|
|
112
|
+
- [Element \& Quality Distribution Strategies](#element--quality-distribution-strategies)
|
|
113
|
+
- [Ayanamsa (Sidereal Modes)](#ayanamsa-sidereal-modes)
|
|
114
|
+
- [House Systems](#house-systems)
|
|
115
|
+
- [Perspective Type](#perspective-type)
|
|
116
|
+
- [Themes](#themes)
|
|
117
|
+
- [Alternative Initialization](#alternative-initialization)
|
|
118
|
+
- [Lunar Nodes (Rahu \& Ketu)](#lunar-nodes-rahu--ketu)
|
|
119
|
+
- [JSON Support](#json-support)
|
|
120
|
+
- [Auto Generated Documentation](#auto-generated-documentation)
|
|
121
|
+
- [Development](#development)
|
|
122
|
+
- [Kerykeion v5.0 – What's New](#kerykeion-v50--whats-new)
|
|
123
|
+
- [🎯 Key Highlights](#-key-highlights)
|
|
124
|
+
- [Factory-Centered Architecture](#factory-centered-architecture)
|
|
125
|
+
- [Pydantic 2 Models \& Type Safety](#pydantic-2-models--type-safety)
|
|
126
|
+
- [Enhanced Features](#enhanced-features)
|
|
127
|
+
- [🚨 Breaking Changes](#-breaking-changes)
|
|
128
|
+
- [1. Removed Legacy Classes](#1-removed-legacy-classes)
|
|
129
|
+
- [2. Import Changes](#2-import-changes)
|
|
130
|
+
- [3. Type Aliases Unified](#3-type-aliases-unified)
|
|
131
|
+
- [4. Lunar Nodes Naming](#4-lunar-nodes-naming)
|
|
132
|
+
- [5. Axis Orb Filtering](#5-axis-orb-filtering)
|
|
133
|
+
- [6. Chart Generation Changes](#6-chart-generation-changes)
|
|
134
|
+
- [7. Aspects API Changes](#7-aspects-api-changes)
|
|
135
|
+
- [🔄 Migration Guide](#-migration-guide)
|
|
136
|
+
- [Using the Backward Compatibility Layer](#using-the-backward-compatibility-layer)
|
|
137
|
+
- [Step-by-Step Migration](#step-by-step-migration)
|
|
138
|
+
- [Automated Migration Script](#automated-migration-script)
|
|
139
|
+
- [📦 Other Notable Changes](#-other-notable-changes)
|
|
140
|
+
- [🎨 New Themes](#-new-themes)
|
|
141
|
+
- [📚 Resources](#-resources)
|
|
142
|
+
- [Integrating Kerykeion into Your Project](#integrating-kerykeion-into-your-project)
|
|
143
|
+
- [License](#license)
|
|
144
|
+
- [Contributing](#contributing)
|
|
145
|
+
- [Citations](#citations)
|
|
147
146
|
|
|
148
147
|
## Installation
|
|
149
148
|
|
|
@@ -216,7 +215,7 @@ birth_chart_svg.save_svg()
|
|
|
216
215
|
```
|
|
217
216
|
|
|
218
217
|
The SVG file will be saved in the home directory.
|
|
219
|
-

|
|
220
219
|
|
|
221
220
|
### External Birth Chart
|
|
222
221
|
|
|
@@ -229,14 +228,14 @@ from kerykeion.charts.chart_drawer import ChartDrawer
|
|
|
229
228
|
birth_chart = AstrologicalSubjectFactory.from_birth_data("John Lennon", 1940, 10, 9, 18, 30, "Liverpool", "GB")
|
|
230
229
|
|
|
231
230
|
# Step 2: Pre-compute chart data for external natal chart
|
|
232
|
-
chart_data = ChartDataFactory.
|
|
231
|
+
chart_data = ChartDataFactory.create_natal_chart_data(birth_chart)
|
|
233
232
|
|
|
234
233
|
# Step 3: Create visualization
|
|
235
234
|
birth_chart_svg = ChartDrawer(chart_data=chart_data)
|
|
236
235
|
birth_chart_svg.save_svg()
|
|
237
236
|
```
|
|
238
237
|
|
|
239
|
-

|
|
240
239
|
|
|
241
240
|
### Synastry Chart
|
|
242
241
|
|
|
@@ -278,7 +277,105 @@ transit_chart = ChartDrawer(chart_data=chart_data)
|
|
|
278
277
|
transit_chart.save_svg()
|
|
279
278
|
```
|
|
280
279
|
|
|
281
|
-

|
|
281
|
+
|
|
282
|
+
### Solar Return Chart (Dual Wheel)
|
|
283
|
+
|
|
284
|
+
```python
|
|
285
|
+
from kerykeion import AstrologicalSubjectFactory
|
|
286
|
+
from kerykeion.planetary_return_factory import PlanetaryReturnFactory
|
|
287
|
+
from kerykeion.chart_data_factory import ChartDataFactory
|
|
288
|
+
from kerykeion.charts.chart_drawer import ChartDrawer
|
|
289
|
+
|
|
290
|
+
# Step 1: Create natal subject
|
|
291
|
+
john = AstrologicalSubjectFactory.from_birth_data("John Lennon", 1940, 10, 9, 18, 30, "Liverpool", "GB")
|
|
292
|
+
|
|
293
|
+
# Step 2: Calculate Solar Return subject (offline example with manual coordinates)
|
|
294
|
+
return_factory = PlanetaryReturnFactory(
|
|
295
|
+
john,
|
|
296
|
+
lng=-2.9833,
|
|
297
|
+
lat=53.4000,
|
|
298
|
+
tz_str="Europe/London",
|
|
299
|
+
online=False
|
|
300
|
+
)
|
|
301
|
+
solar_return_subject = return_factory.next_return_from_year(1964, "Solar")
|
|
302
|
+
|
|
303
|
+
# Step 3: Pre-compute return chart data (dual wheel: natal + solar return)
|
|
304
|
+
chart_data = ChartDataFactory.create_return_chart_data(john, solar_return_subject)
|
|
305
|
+
|
|
306
|
+
# Step 4: Create visualization
|
|
307
|
+
solar_return_chart = ChartDrawer(chart_data=chart_data)
|
|
308
|
+
solar_return_chart.save_svg()
|
|
309
|
+
```
|
|
310
|
+
|
|
311
|
+

|
|
312
|
+
|
|
313
|
+
### Solar Return Chart (Single Wheel)
|
|
314
|
+
|
|
315
|
+
```python
|
|
316
|
+
from kerykeion import AstrologicalSubjectFactory
|
|
317
|
+
from kerykeion.planetary_return_factory import PlanetaryReturnFactory
|
|
318
|
+
from kerykeion.chart_data_factory import ChartDataFactory
|
|
319
|
+
from kerykeion.charts.chart_drawer import ChartDrawer
|
|
320
|
+
|
|
321
|
+
# Step 1: Create natal subject
|
|
322
|
+
john = AstrologicalSubjectFactory.from_birth_data("John Lennon", 1940, 10, 9, 18, 30, "Liverpool", "GB")
|
|
323
|
+
|
|
324
|
+
# Step 2: Calculate Solar Return subject (offline example with manual coordinates)
|
|
325
|
+
return_factory = PlanetaryReturnFactory(
|
|
326
|
+
john,
|
|
327
|
+
lng=-2.9833,
|
|
328
|
+
lat=53.4000,
|
|
329
|
+
tz_str="Europe/London",
|
|
330
|
+
online=False
|
|
331
|
+
)
|
|
332
|
+
solar_return_subject = return_factory.next_return_from_year(1964, "Solar")
|
|
333
|
+
|
|
334
|
+
# Step 3: Build a single-wheel return chart
|
|
335
|
+
chart_data = ChartDataFactory.create_single_wheel_return_chart_data(solar_return_subject)
|
|
336
|
+
|
|
337
|
+
# Step 4: Create visualization
|
|
338
|
+
single_wheel_chart = ChartDrawer(chart_data=chart_data)
|
|
339
|
+
single_wheel_chart.save_svg()
|
|
340
|
+
```
|
|
341
|
+
|
|
342
|
+

|
|
343
|
+
|
|
344
|
+
### Lunar Return Chart
|
|
345
|
+
|
|
346
|
+
```python
|
|
347
|
+
from kerykeion import AstrologicalSubjectFactory
|
|
348
|
+
from kerykeion.planetary_return_factory import PlanetaryReturnFactory
|
|
349
|
+
from kerykeion.chart_data_factory import ChartDataFactory
|
|
350
|
+
from kerykeion.charts.chart_drawer import ChartDrawer
|
|
351
|
+
|
|
352
|
+
# Step 1: Create natal subject
|
|
353
|
+
john = AstrologicalSubjectFactory.from_birth_data("John Lennon", 1940, 10, 9, 18, 30, "Liverpool", "GB")
|
|
354
|
+
|
|
355
|
+
# Step 2: Calculate Lunar Return subject
|
|
356
|
+
return_factory = PlanetaryReturnFactory(
|
|
357
|
+
john,
|
|
358
|
+
lng=-2.9833,
|
|
359
|
+
lat=53.4000,
|
|
360
|
+
tz_str="Europe/London",
|
|
361
|
+
online=False
|
|
362
|
+
)
|
|
363
|
+
lunar_return_subject = return_factory.next_return_from_year(1964, "Lunar")
|
|
364
|
+
|
|
365
|
+
# Step 3: Build a dual wheel (natal + lunar return)
|
|
366
|
+
lunar_return_chart_data = ChartDataFactory.create_return_chart_data(john, lunar_return_subject)
|
|
367
|
+
dual_wheel_chart = ChartDrawer(chart_data=lunar_return_chart_data)
|
|
368
|
+
dual_wheel_chart.save_svg()
|
|
369
|
+
|
|
370
|
+
# Optional: create a single-wheel lunar return
|
|
371
|
+
single_wheel_data = ChartDataFactory.create_single_wheel_return_chart_data(lunar_return_subject)
|
|
372
|
+
single_wheel_chart = ChartDrawer(chart_data=single_wheel_data)
|
|
373
|
+
single_wheel_chart.save_svg()
|
|
374
|
+
```
|
|
375
|
+
|
|
376
|
+

|
|
377
|
+
|
|
378
|
+

|
|
282
379
|
|
|
283
380
|
### Composite Chart
|
|
284
381
|
|
|
@@ -304,7 +401,7 @@ composite_chart = ChartDrawer(chart_data=chart_data)
|
|
|
304
401
|
composite_chart.save_svg()
|
|
305
402
|
```
|
|
306
403
|
|
|
307
|
-

|
|
308
405
|
|
|
309
406
|
## Wheel Only Charts
|
|
310
407
|
|
|
@@ -328,7 +425,7 @@ birth_chart_svg = ChartDrawer(chart_data=chart_data)
|
|
|
328
425
|
birth_chart_svg.save_wheel_only_svg_file()
|
|
329
426
|
```
|
|
330
427
|
|
|
331
|
-

|
|
332
429
|
|
|
333
430
|
### Wheel Only Birth Chart (External)
|
|
334
431
|
|
|
@@ -341,7 +438,7 @@ from kerykeion.charts.chart_drawer import ChartDrawer
|
|
|
341
438
|
birth_chart = AstrologicalSubjectFactory.from_birth_data("John Lennon", 1940, 10, 9, 18, 30, "Liverpool", "GB")
|
|
342
439
|
|
|
343
440
|
# Step 2: Pre-compute external natal chart data
|
|
344
|
-
chart_data = ChartDataFactory.
|
|
441
|
+
chart_data = ChartDataFactory.create_natal_chart_data(birth_chart)
|
|
345
442
|
|
|
346
443
|
# Step 3: Create visualization
|
|
347
444
|
birth_chart_svg = ChartDrawer(chart_data=chart_data)
|
|
@@ -351,7 +448,7 @@ birth_chart_svg.save_wheel_only_svg_file(
|
|
|
351
448
|
)
|
|
352
449
|
```
|
|
353
450
|
|
|
354
|
-

|
|
355
452
|
|
|
356
453
|
### Synastry Chart
|
|
357
454
|
|
|
@@ -372,7 +469,7 @@ synastry_chart = ChartDrawer(chart_data=chart_data)
|
|
|
372
469
|
synastry_chart.save_wheel_only_svg_file()
|
|
373
470
|
```
|
|
374
471
|
|
|
375
|
-

|
|
376
473
|
|
|
377
474
|
### Change the Output Directory
|
|
378
475
|
|
|
@@ -416,6 +513,7 @@ birth_chart_svg = ChartDrawer(
|
|
|
416
513
|
chart_language="IT" # Change to Italian
|
|
417
514
|
)
|
|
418
515
|
birth_chart_svg.save_svg()
|
|
516
|
+
```
|
|
419
517
|
|
|
420
518
|
You can also provide custom labels (or introduce a brand-new language) by passing
|
|
421
519
|
a dictionary to `language_pack`. Only the keys you supply are merged on top of the
|
|
@@ -435,7 +533,6 @@ birth_chart_svg = ChartDrawer(
|
|
|
435
533
|
language_pack=custom_labels["PT"],
|
|
436
534
|
)
|
|
437
535
|
```
|
|
438
|
-
```
|
|
439
536
|
|
|
440
537
|
More details [here](https://www.kerykeion.net/docs/chart-language).
|
|
441
538
|
|
|
@@ -518,7 +615,7 @@ aspect_grid_chart = ChartDrawer(chart_data=chart_data, theme="dark")
|
|
|
518
615
|
aspect_grid_chart.save_aspect_grid_only_svg_file()
|
|
519
616
|
```
|
|
520
617
|
|
|
521
|
-

|
|
522
619
|
|
|
523
620
|
## Report Generator
|
|
524
621
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
kerykeion/__init__.py,sha256=7gI_kWXhsmEK4SvNV6CkRmI0yjA3r7EO8UfQc_44UZU,1963
|
|
2
2
|
kerykeion/astrological_subject_factory.py,sha256=KaNuPSgVOgAva9z83fTuCpvIfEm3hsJro-z_mFPU1Q4,94604
|
|
3
|
-
kerykeion/backword.py,sha256=
|
|
3
|
+
kerykeion/backword.py,sha256=B4hBXpQvNcDStcJmJE8jhDnLajstkIUWjfc19J_3T1g,32530
|
|
4
4
|
kerykeion/chart_data_factory.py,sha256=ud0qjGT45NJyJAkd_Xrb3Zq2qU2QVAyU6MvidR0jeqQ,25024
|
|
5
5
|
kerykeion/composite_subject_factory.py,sha256=eUtjThDlYr6SQsEi02_CgO1kEMUMYgQGzR5rX91GEwY,17120
|
|
6
6
|
kerykeion/ephemeris_data_factory.py,sha256=uwEhVqqkB56HbxKueMAvSAbEKkYTJ9GH3mVLDNxIQnc,20358
|
|
@@ -14,7 +14,7 @@ kerykeion/aspects/__init__.py,sha256=csJmxvLdBu-bHuW676f3dpY__Qyc6LwRyrpWVTh3n1A
|
|
|
14
14
|
kerykeion/aspects/aspects_factory.py,sha256=KQkeCBGFDfGH_pv44QlqVZnNb1fDNqpTY6uPQUhYcXM,24403
|
|
15
15
|
kerykeion/aspects/aspects_utils.py,sha256=00-MMLEGChpceab8sHKB1_qg6EG4ycTG2u2vYZcyLmQ,5784
|
|
16
16
|
kerykeion/charts/__init__.py,sha256=i9NMZ7LdkllPlqQSi1or9gTobHbROGDKmJhBDO4R0mA,128
|
|
17
|
-
kerykeion/charts/chart_drawer.py,sha256
|
|
17
|
+
kerykeion/charts/chart_drawer.py,sha256=-lz2sb26WTXzRLDexEgUQuQYUwPDlrlo8E7spmUmgT8,122342
|
|
18
18
|
kerykeion/charts/charts_utils.py,sha256=JzPnbZJnH4lrIENb5saRtbHn_GbyaElXVBwKdyP90Dg,70110
|
|
19
19
|
kerykeion/charts/draw_planets.py,sha256=tIj3FeLLomVSbCaZUxfw_qBEB3pxi4EIEhqaeTgTyTY,29061
|
|
20
20
|
kerykeion/charts/templates/aspect_grid_only.xml,sha256=v3QtNMjk-kBdUTfB0r6thg--Ta_tNFdRQCzdk5PAycY,86429
|
|
@@ -57,7 +57,7 @@ kerykeion/sweph/ast28/se28978s.se1,sha256=nU2Qp-ELc_tzFnRc1QT6uVueWXEipvhYDgfQRX
|
|
|
57
57
|
kerykeion/sweph/ast50/se50000s.se1,sha256=9jTrPlIrZMOBWC9cNgwzcfz0KBHdXFZoY9-NZ_HtECo,15748
|
|
58
58
|
kerykeion/sweph/ast90/se90377s.se1,sha256=bto2x4LtBv8b1ej1XhVFYq-kfHO9cczbKV9U1f9UVu4,10288
|
|
59
59
|
kerykeion/sweph/ast90/se90482s.se1,sha256=uHxz6bP4K8zgtQFrlWFwxrYfmqm5kXxsg6OYhAIUbAA,16173
|
|
60
|
-
kerykeion-5.0.
|
|
61
|
-
kerykeion-5.0.
|
|
62
|
-
kerykeion-5.0.
|
|
63
|
-
kerykeion-5.0.
|
|
60
|
+
kerykeion-5.0.2.dist-info/METADATA,sha256=BUjuiAPCfRJfGJYFEzRIMBgN3lUdWfp1_RgUq07k8PY,48628
|
|
61
|
+
kerykeion-5.0.2.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
|
62
|
+
kerykeion-5.0.2.dist-info/licenses/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
|
|
63
|
+
kerykeion-5.0.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|