kerykeion 5.0.0a5__py3-none-any.whl → 5.0.0a7__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of kerykeion might be problematic. Click here for more details.
- kerykeion/astrological_subject_factory.py +237 -228
- kerykeion/charts/draw_planets_v2.py +13 -3
- kerykeion/charts/draw_planets_v3.py +679 -0
- kerykeion/charts/kerykeion_chart_svg.py +65 -22
- kerykeion/kr_types/kr_models.py +5 -5
- {kerykeion-5.0.0a5.dist-info → kerykeion-5.0.0a7.dist-info}/METADATA +1 -1
- {kerykeion-5.0.0a5.dist-info → kerykeion-5.0.0a7.dist-info}/RECORD +10 -9
- {kerykeion-5.0.0a5.dist-info → kerykeion-5.0.0a7.dist-info}/LICENSE +0 -0
- {kerykeion-5.0.0a5.dist-info → kerykeion-5.0.0a7.dist-info}/WHEEL +0 -0
- {kerykeion-5.0.0a5.dist-info → kerykeion-5.0.0a7.dist-info}/entry_points.txt +0 -0
|
@@ -823,12 +823,22 @@ class KerykeionChartSVG:
|
|
|
823
823
|
|
|
824
824
|
template_dict["bottom_left_0"] = zodiac_info
|
|
825
825
|
template_dict["bottom_left_1"] = f"{self.language_settings.get('domification', 'Domification')}: {self.language_settings.get('houses_system_' + self.first_obj.houses_system_identifier, self.first_obj.houses_system_name)}"
|
|
826
|
-
|
|
827
|
-
|
|
826
|
+
|
|
827
|
+
# Lunar phase information (optional)
|
|
828
|
+
if self.first_obj.lunar_phase is not None:
|
|
829
|
+
template_dict["bottom_left_2"] = f'{self.language_settings.get("lunation_day", "Lunation Day")}: {self.first_obj.lunar_phase.get("moon_phase", "")}'
|
|
830
|
+
template_dict["bottom_left_3"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}: {self.language_settings.get(self.first_obj.lunar_phase.moon_phase_name.lower().replace(" ", "_"), self.first_obj.lunar_phase.moon_phase_name)}'
|
|
831
|
+
else:
|
|
832
|
+
template_dict["bottom_left_2"] = ""
|
|
833
|
+
template_dict["bottom_left_3"] = ""
|
|
834
|
+
|
|
828
835
|
template_dict["bottom_left_4"] = f'{self.language_settings.get("perspective_type", "Perspective")}: {self.language_settings.get(self.first_obj.perspective_type.lower().replace(" ", "_"), self.first_obj.perspective_type)}'
|
|
829
836
|
|
|
830
837
|
# Moon phase section calculations
|
|
831
|
-
|
|
838
|
+
if self.first_obj.lunar_phase is not None:
|
|
839
|
+
template_dict["makeLunarPhase"] = makeLunarPhase(self.first_obj.lunar_phase["degrees_between_s_m"], self.geolat)
|
|
840
|
+
else:
|
|
841
|
+
template_dict["makeLunarPhase"] = ""
|
|
832
842
|
|
|
833
843
|
# Houses and planet drawing
|
|
834
844
|
template_dict["makeMainHousesGrid"] = draw_main_house_grid(
|
|
@@ -964,7 +974,10 @@ class KerykeionChartSVG:
|
|
|
964
974
|
template_dict["bottom_left_4"] = ""
|
|
965
975
|
|
|
966
976
|
# Moon phase section calculations
|
|
967
|
-
|
|
977
|
+
if self.first_obj.lunar_phase is not None:
|
|
978
|
+
template_dict["makeLunarPhase"] = makeLunarPhase(self.first_obj.lunar_phase["degrees_between_s_m"], self.geolat)
|
|
979
|
+
else:
|
|
980
|
+
template_dict["makeLunarPhase"] = ""
|
|
968
981
|
|
|
969
982
|
# Houses and planet drawing
|
|
970
983
|
template_dict["makeMainHousesGrid"] = draw_main_house_grid(
|
|
@@ -1101,12 +1114,22 @@ class KerykeionChartSVG:
|
|
|
1101
1114
|
|
|
1102
1115
|
template_dict["bottom_left_0"] = zodiac_info
|
|
1103
1116
|
template_dict["bottom_left_1"] = f"{self.language_settings.get('domification', 'Domification')}: {self.language_settings.get('houses_system_' + self.first_obj.houses_system_identifier, self.first_obj.houses_system_name)}"
|
|
1104
|
-
|
|
1105
|
-
|
|
1117
|
+
|
|
1118
|
+
# Lunar phase information from second object (Transit) (optional)
|
|
1119
|
+
if self.second_obj is not None and hasattr(self.second_obj, 'lunar_phase') and self.second_obj.lunar_phase is not None:
|
|
1120
|
+
template_dict["bottom_left_2"] = f'{self.language_settings.get("lunation_day", "Lunation Day")}: {self.second_obj.lunar_phase.get("moon_phase", "")}' # type: ignore
|
|
1121
|
+
template_dict["bottom_left_3"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}: {self.language_settings.get(self.second_obj.lunar_phase.moon_phase_name.lower().replace(" ", "_"), self.second_obj.lunar_phase.moon_phase_name)}'
|
|
1122
|
+
else:
|
|
1123
|
+
template_dict["bottom_left_2"] = ""
|
|
1124
|
+
template_dict["bottom_left_3"] = ""
|
|
1125
|
+
|
|
1106
1126
|
template_dict["bottom_left_4"] = f'{self.language_settings.get("perspective_type", "Perspective")}: {self.language_settings.get(self.second_obj.perspective_type.lower().replace(" ", "_"), self.second_obj.perspective_type)}' # type: ignore
|
|
1107
1127
|
|
|
1108
|
-
# Moon phase section calculations
|
|
1109
|
-
|
|
1128
|
+
# Moon phase section calculations - use first_obj for visualization
|
|
1129
|
+
if self.first_obj.lunar_phase is not None:
|
|
1130
|
+
template_dict["makeLunarPhase"] = makeLunarPhase(self.first_obj.lunar_phase["degrees_between_s_m"], self.geolat)
|
|
1131
|
+
else:
|
|
1132
|
+
template_dict["makeLunarPhase"] = ""
|
|
1110
1133
|
|
|
1111
1134
|
# Houses and planet drawing
|
|
1112
1135
|
template_dict["makeMainHousesGrid"] = draw_main_house_grid(
|
|
@@ -1379,7 +1402,7 @@ class KerykeionChartSVG:
|
|
|
1379
1402
|
template_dict["makeAspects"] = self._draw_all_transit_aspects_lines(self.main_radius, self.main_radius - 160)
|
|
1380
1403
|
|
|
1381
1404
|
# Chart title
|
|
1382
|
-
if self.second_obj.return_type == "Solar":
|
|
1405
|
+
if self.second_obj is not None and hasattr(self.second_obj, 'return_type') and self.second_obj.return_type == "Solar":
|
|
1383
1406
|
template_dict["stringTitle"] = f"{self.first_obj.name} - {self.language_settings.get('solar_return', 'Solar Return')}"
|
|
1384
1407
|
else:
|
|
1385
1408
|
template_dict["stringTitle"] = f"{self.first_obj.name} - {self.language_settings.get('lunar_return', 'Lunar Return')}"
|
|
@@ -1394,7 +1417,7 @@ class KerykeionChartSVG:
|
|
|
1394
1417
|
return_latitude_string = convert_latitude_coordinate_to_string(self.second_obj.lat, self.language_settings["north"], self.language_settings["south"]) # type: ignore
|
|
1395
1418
|
return_longitude_string = convert_longitude_coordinate_to_string(self.second_obj.lng, self.language_settings["east"], self.language_settings["west"]) # type: ignore
|
|
1396
1419
|
|
|
1397
|
-
if self.second_obj.return_type == "Solar":
|
|
1420
|
+
if self.second_obj is not None and hasattr(self.second_obj, 'return_type') and self.second_obj.return_type == "Solar":
|
|
1398
1421
|
template_dict["top_left_0"] = f"{self.language_settings.get('solar_return', 'Solar Return')}:"
|
|
1399
1422
|
else:
|
|
1400
1423
|
template_dict["top_left_0"] = f"{self.language_settings.get('lunar_return', 'Lunar Return')}:"
|
|
@@ -1414,12 +1437,22 @@ class KerykeionChartSVG:
|
|
|
1414
1437
|
|
|
1415
1438
|
template_dict["bottom_left_0"] = zodiac_info
|
|
1416
1439
|
template_dict["bottom_left_1"] = f"{self.language_settings.get('domification', 'Domification')}: {self.language_settings.get('houses_system_' + self.first_obj.houses_system_identifier, self.first_obj.houses_system_name)}"
|
|
1417
|
-
|
|
1418
|
-
|
|
1440
|
+
|
|
1441
|
+
# Lunar phase information (optional)
|
|
1442
|
+
if self.first_obj.lunar_phase is not None:
|
|
1443
|
+
template_dict["bottom_left_2"] = f'{self.language_settings.get("lunation_day", "Lunation Day")}: {self.first_obj.lunar_phase.get("moon_phase", "")}'
|
|
1444
|
+
template_dict["bottom_left_3"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}: {self.language_settings.get(self.first_obj.lunar_phase.moon_phase_name.lower().replace(" ", "_"), self.first_obj.lunar_phase.moon_phase_name)}'
|
|
1445
|
+
else:
|
|
1446
|
+
template_dict["bottom_left_2"] = ""
|
|
1447
|
+
template_dict["bottom_left_3"] = ""
|
|
1448
|
+
|
|
1419
1449
|
template_dict["bottom_left_4"] = f'{self.language_settings.get("perspective_type", "Perspective")}: {self.language_settings.get(self.first_obj.perspective_type.lower().replace(" ", "_"), self.first_obj.perspective_type)}'
|
|
1420
1450
|
|
|
1421
1451
|
# Moon phase section calculations
|
|
1422
|
-
|
|
1452
|
+
if self.first_obj.lunar_phase is not None:
|
|
1453
|
+
template_dict["makeLunarPhase"] = makeLunarPhase(self.first_obj.lunar_phase["degrees_between_s_m"], self.geolat)
|
|
1454
|
+
else:
|
|
1455
|
+
template_dict["makeLunarPhase"] = ""
|
|
1423
1456
|
|
|
1424
1457
|
# Houses and planet drawing
|
|
1425
1458
|
template_dict["makeMainHousesGrid"] = draw_main_house_grid(
|
|
@@ -1461,7 +1494,7 @@ class KerykeionChartSVG:
|
|
|
1461
1494
|
)
|
|
1462
1495
|
|
|
1463
1496
|
# Planet grid
|
|
1464
|
-
if self.second_obj.return_type == "Solar":
|
|
1497
|
+
if self.second_obj is not None and hasattr(self.second_obj, 'return_type') and self.second_obj.return_type == "Solar":
|
|
1465
1498
|
first_return_grid_title = f"{self.first_obj.name} ({self.language_settings.get('inner_wheel', 'Inner Wheel')})"
|
|
1466
1499
|
second_return_grid_title = f"{self.language_settings.get('solar_return', 'Solar Return')} ({self.language_settings.get('outer_wheel', 'Outer Wheel')})"
|
|
1467
1500
|
else:
|
|
@@ -1481,7 +1514,7 @@ class KerykeionChartSVG:
|
|
|
1481
1514
|
second_subject_available_kerykeion_celestial_points=self.t_available_kerykeion_celestial_points,
|
|
1482
1515
|
chart_type=self.chart_type,
|
|
1483
1516
|
text_color=self.chart_colors_settings["paper_0"],
|
|
1484
|
-
celestial_point_language=self.language_settings["celestial_points"]
|
|
1517
|
+
celestial_point_language=self.language_settings["celestial_points"],
|
|
1485
1518
|
)
|
|
1486
1519
|
|
|
1487
1520
|
house_comparison_factory = HouseComparisonFactory(
|
|
@@ -1557,7 +1590,7 @@ class KerykeionChartSVG:
|
|
|
1557
1590
|
template_dict["top_left_3"] = f"{self.language_settings['latitude']}: {latitude_string}"
|
|
1558
1591
|
template_dict["top_left_4"] = f"{self.language_settings['longitude']}: {longitude_string}"
|
|
1559
1592
|
|
|
1560
|
-
if self.first_obj.return_type == "Solar":
|
|
1593
|
+
if hasattr(self.first_obj, 'return_type') and self.first_obj.return_type == "Solar":
|
|
1561
1594
|
template_dict["top_left_5"] = f"{self.language_settings['type']}: {self.language_settings.get('solar_return', 'Solar Return')}"
|
|
1562
1595
|
else:
|
|
1563
1596
|
template_dict["top_left_5"] = f"{self.language_settings['type']}: {self.language_settings.get('lunar_return', 'Lunar Return')}"
|
|
@@ -1572,12 +1605,22 @@ class KerykeionChartSVG:
|
|
|
1572
1605
|
|
|
1573
1606
|
template_dict["bottom_left_0"] = zodiac_info
|
|
1574
1607
|
template_dict["bottom_left_1"] = f"{self.language_settings.get('houses_system_' + self.first_obj.houses_system_identifier, self.first_obj.houses_system_name)} {self.language_settings.get('houses', 'Houses')}"
|
|
1575
|
-
|
|
1576
|
-
|
|
1608
|
+
|
|
1609
|
+
# Lunar phase information (optional)
|
|
1610
|
+
if self.first_obj.lunar_phase is not None:
|
|
1611
|
+
template_dict["bottom_left_2"] = f'{self.language_settings.get("lunation_day", "Lunation Day")}: {self.first_obj.lunar_phase.get("moon_phase", "")}'
|
|
1612
|
+
template_dict["bottom_left_3"] = f'{self.language_settings.get("lunar_phase", "Lunar Phase")}: {self.language_settings.get(self.first_obj.lunar_phase.moon_phase_name.lower().replace(" ", "_"), self.first_obj.lunar_phase.moon_phase_name)}'
|
|
1613
|
+
else:
|
|
1614
|
+
template_dict["bottom_left_2"] = ""
|
|
1615
|
+
template_dict["bottom_left_3"] = ""
|
|
1616
|
+
|
|
1577
1617
|
template_dict["bottom_left_4"] = f'{self.language_settings.get("perspective_type", "Perspective")}: {self.language_settings.get(self.first_obj.perspective_type.lower().replace(" ", "_"), self.first_obj.perspective_type)}'
|
|
1578
1618
|
|
|
1579
1619
|
# Moon phase section calculations
|
|
1580
|
-
|
|
1620
|
+
if self.first_obj.lunar_phase is not None:
|
|
1621
|
+
template_dict["makeLunarPhase"] = makeLunarPhase(self.first_obj.lunar_phase["degrees_between_s_m"], self.geolat)
|
|
1622
|
+
else:
|
|
1623
|
+
template_dict["makeLunarPhase"] = ""
|
|
1581
1624
|
|
|
1582
1625
|
# Houses and planet drawing
|
|
1583
1626
|
template_dict["makeMainHousesGrid"] = draw_main_house_grid(
|
|
@@ -1680,9 +1723,9 @@ class KerykeionChartSVG:
|
|
|
1680
1723
|
|
|
1681
1724
|
self.template = self.makeTemplate(minify, remove_css_variables)
|
|
1682
1725
|
|
|
1683
|
-
if self.chart_type == "Return" and self.second_obj.return_type == "Lunar":
|
|
1726
|
+
if self.chart_type == "Return" and self.second_obj is not None and hasattr(self.second_obj, 'return_type') and self.second_obj.return_type == "Lunar":
|
|
1684
1727
|
chartname = self.output_directory / f"{self.first_obj.name} - {self.chart_type} Chart - Lunar Return.svg"
|
|
1685
|
-
elif self.chart_type == "Return" and self.second_obj.return_type == "Solar":
|
|
1728
|
+
elif self.chart_type == "Return" and self.second_obj is not None and hasattr(self.second_obj, 'return_type') and self.second_obj.return_type == "Solar":
|
|
1686
1729
|
chartname = self.output_directory / f"{self.first_obj.name} - {self.chart_type} Chart - Solar Return.svg"
|
|
1687
1730
|
else:
|
|
1688
1731
|
chartname = self.output_directory / f"{self.first_obj.name} - {self.chart_type} Chart.svg"
|
|
@@ -1835,7 +1878,7 @@ if __name__ == "__main__":
|
|
|
1835
1878
|
from kerykeion.astrological_subject_factory import AstrologicalSubjectFactory
|
|
1836
1879
|
|
|
1837
1880
|
ACTIVE_PLANETS: list[AstrologicalPoint] = [
|
|
1838
|
-
"Sun", "Moon", "Pars_Fortunae"
|
|
1881
|
+
"Sun", "Moon", "Pars_Fortunae", "Mercury", "Mars", "Jupiter", "Saturn", "Uranus", "Neptune", "Pluto", "Chiron", "True_Node"
|
|
1839
1882
|
]
|
|
1840
1883
|
|
|
1841
1884
|
setup_logging(level="info")
|
kerykeion/kr_types/kr_models.py
CHANGED
|
@@ -100,9 +100,9 @@ class AstrologicalBaseModel(SubscriptableBaseModel):
|
|
|
100
100
|
perspective_type: PerspectiveType
|
|
101
101
|
|
|
102
102
|
# Common celestial points
|
|
103
|
-
# Main planets
|
|
104
|
-
sun: KerykeionPointModel
|
|
105
|
-
moon: KerykeionPointModel
|
|
103
|
+
# Main planets (all optional to support selective calculations)
|
|
104
|
+
sun: Optional[KerykeionPointModel] = None
|
|
105
|
+
moon: Optional[KerykeionPointModel] = None
|
|
106
106
|
mercury: Optional[KerykeionPointModel] = None
|
|
107
107
|
venus: Optional[KerykeionPointModel] = None
|
|
108
108
|
mars: Optional[KerykeionPointModel] = None
|
|
@@ -180,8 +180,8 @@ class AstrologicalBaseModel(SubscriptableBaseModel):
|
|
|
180
180
|
houses_names_list: List[Houses] = Field(description="Ordered list of houses names")
|
|
181
181
|
active_points: List[AstrologicalPoint] = Field(description="List of active points in the chart or aspects calculations.")
|
|
182
182
|
|
|
183
|
-
# Common lunar phase data
|
|
184
|
-
lunar_phase: LunarPhaseModel = Field(description="Lunar phase model")
|
|
183
|
+
# Common lunar phase data (optional)
|
|
184
|
+
lunar_phase: Optional[LunarPhaseModel] = Field(default=None, description="Lunar phase model")
|
|
185
185
|
|
|
186
186
|
|
|
187
187
|
class AstrologicalSubjectModel(AstrologicalBaseModel):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: kerykeion
|
|
3
|
-
Version: 5.0.
|
|
3
|
+
Version: 5.0.0a7
|
|
4
4
|
Summary: A python library for astrology.
|
|
5
5
|
License: AGPL-3.0
|
|
6
6
|
Keywords: astrology,ephemeris,astrology library,birtchart,svg,zodiac,zodiac-sing,astronomical-algorithms,synastry,astrology-calculator
|
|
@@ -4,12 +4,13 @@ kerykeion/aspects/aspects_utils.py,sha256=NgxdeKd9CAPbzFlLe-yr9RFumM0Cc0kfWEONYR
|
|
|
4
4
|
kerykeion/aspects/natal_aspects.py,sha256=SfI3ferjtyV47fBG6q3q1aczc-GFOwN4P7WpyZTgPSA,7269
|
|
5
5
|
kerykeion/aspects/synastry_aspects.py,sha256=4ZBiFrbyyXxclnyaEIBeLJQO3uQVnpsqvI5Kj3-ijuI,5979
|
|
6
6
|
kerykeion/aspects/transits_time_range.py,sha256=E03BJYcNK3kO30EC96Ys2EaH-EDyZF2nj4C7_LcFrOk,1182
|
|
7
|
-
kerykeion/astrological_subject_factory.py,sha256=
|
|
7
|
+
kerykeion/astrological_subject_factory.py,sha256=z8ehPW6_wT6fwayxAmST0oSdLMM1pAmHXuwncSF_A20,52340
|
|
8
8
|
kerykeion/charts/__init__.py,sha256=i9NMZ7LdkllPlqQSi1or9gTobHbROGDKmJhBDO4R0mA,128
|
|
9
9
|
kerykeion/charts/charts_utils.py,sha256=GCC20W4qHQXXKdUMlt72THHJxqp6ytj4X61oLONMSt4,62450
|
|
10
10
|
kerykeion/charts/draw_planets.py,sha256=dbVCA4MFs7ChZKH4w1eErBiF_mluuxAD4fouBrXs-x0,17696
|
|
11
|
-
kerykeion/charts/draw_planets_v2.py,sha256=
|
|
12
|
-
kerykeion/charts/
|
|
11
|
+
kerykeion/charts/draw_planets_v2.py,sha256=ft0KjngCIfYKNGlZ4cv7apX9V6uyHetIVOxbNRzEmWU,28210
|
|
12
|
+
kerykeion/charts/draw_planets_v3.py,sha256=3nrpef56qBsc0hfCOGdfCOr-61C2c5aWcRSiBcQiAuo,25811
|
|
13
|
+
kerykeion/charts/kerykeion_chart_svg.py,sha256=2Xhe2XvZLdoAIRxYh1MYceencbYJKxWXRoZZ30Kgra4,95638
|
|
13
14
|
kerykeion/charts/templates/aspect_grid_only.xml,sha256=ZiBVeToVmCA8QxYlB_cfnsAO1NNeQAnJ_6rIYkr4F58,70091
|
|
14
15
|
kerykeion/charts/templates/chart.xml,sha256=_VCtqsH7E97JUQbvx9i5OktdRLOAhlI2Znr7mEIMK8E,79839
|
|
15
16
|
kerykeion/charts/templates/wheel_only.xml,sha256=hSV4FYD7qLKd93jq82B9mnGoH0PKyMRaqp3jL16T9YI,71287
|
|
@@ -30,7 +31,7 @@ kerykeion/kr_types/__init__.py,sha256=jshJOccCQcYZuoOvrILRZH6imy4RBvKpFPujlNLFyG
|
|
|
30
31
|
kerykeion/kr_types/chart_types.py,sha256=ou9mIMNrQ7vlgWW4e209z_wMa2XZa4OGvHBr-CGk_rs,2309
|
|
31
32
|
kerykeion/kr_types/kerykeion_exception.py,sha256=kE1y0K0rmuz32b4K_ZppSsZ59I2Get0ZkvOkTE5HejI,314
|
|
32
33
|
kerykeion/kr_types/kr_literals.py,sha256=4kJhzm_0LERiJEJks0KgDyThueMZj_F1OK2Far5SMZc,4870
|
|
33
|
-
kerykeion/kr_types/kr_models.py,sha256=
|
|
34
|
+
kerykeion/kr_types/kr_models.py,sha256=ncMzW63eTkDNMSX7JaxXpCQyA1k0yEeaNeLhAHc0y_w,8345
|
|
34
35
|
kerykeion/kr_types/settings_models.py,sha256=qKlcn-Go1dAhC7oMFY_saogNcRa4WvKSewyvsKZt2S0,16604
|
|
35
36
|
kerykeion/planetary_return_factory.py,sha256=Y3jMHsI1epuBC4N3Mto0mubVE8BIT89dBh15eOATg2Y,11449
|
|
36
37
|
kerykeion/relationship_score_factory.py,sha256=g0RL1sx_LsMlfX1XVDf-z2LrlZ_SAL_1C0kuOGhKhsA,8495
|
|
@@ -47,8 +48,8 @@ kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
|
|
|
47
48
|
kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
|
|
48
49
|
kerykeion/transits_time_range.py,sha256=iJSkXcNKJBcfrN8gN9P0xGKLsRBwJs-mMuAtPsvUqNE,5505
|
|
49
50
|
kerykeion/utilities.py,sha256=mD-oPKlbpwyXv5CXOS4aS6e6u0fFYl2lf9ptUr06jxs,22217
|
|
50
|
-
kerykeion-5.0.
|
|
51
|
-
kerykeion-5.0.
|
|
52
|
-
kerykeion-5.0.
|
|
53
|
-
kerykeion-5.0.
|
|
54
|
-
kerykeion-5.0.
|
|
51
|
+
kerykeion-5.0.0a7.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
|
|
52
|
+
kerykeion-5.0.0a7.dist-info/METADATA,sha256=-jFq3RQ4c6jpsieT3pOR7J6i1I3ICpma5I5aBh8M5VU,25398
|
|
53
|
+
kerykeion-5.0.0a7.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
54
|
+
kerykeion-5.0.0a7.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
|
|
55
|
+
kerykeion-5.0.0a7.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|