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

@@ -15,7 +15,7 @@ from kerykeion.kr_types import KerykeionException, ChartType, KerykeionPointMode
15
15
  from kerykeion.kr_types import ChartTemplateDictionary
16
16
  from kerykeion.kr_types.kr_models import AstrologicalSubjectModel
17
17
  from kerykeion.kr_types.settings_models import KerykeionSettingsCelestialPointModel, KerykeionSettingsModel
18
- from kerykeion.kr_types.kr_literals import KerykeionChartTheme
18
+ from kerykeion.kr_types.kr_literals import KerykeionChartTheme, KerykeionChartLanguage
19
19
  from kerykeion.charts.charts_utils import (
20
20
  draw_zodiac_slice,
21
21
  convert_latitude_coordinate_to_string,
@@ -110,7 +110,7 @@ class KerykeionChartSVG:
110
110
  new_settings_file: Union[Path, None, KerykeionSettingsModel, dict] = None,
111
111
  theme: Union[KerykeionChartTheme, None] = "classic",
112
112
  double_chart_aspect_grid_type: Literal["list", "table"] = "list",
113
- chart_language: str = "EN",
113
+ chart_language: KerykeionChartLanguage = "EN",
114
114
  ):
115
115
  # Directories:
116
116
  home_directory = Path.home()
@@ -886,4 +886,9 @@ if __name__ == "__main__":
886
886
  # German Language Chart
887
887
  german_subject = AstrologicalSubject("Albert Einstein", 1879, 3, 14, 11, 30, "Ulm", "DE")
888
888
  german_chart = KerykeionChartSVG(german_subject, chart_language="DE")
889
- german_chart.makeSVG()
889
+ german_chart.makeSVG()
890
+
891
+ # Hindi Language Chart
892
+ hindi_subject = AstrologicalSubject("Amitabh Bachchan", 1942, 10, 11, 4, 0, "Allahabad", "IN")
893
+ hindi_chart = KerykeionChartSVG(hindi_subject, chart_language="HI")
894
+ hindi_chart.makeSVG()
@@ -170,7 +170,7 @@ if "__main__" == __name__:
170
170
  max_days=None,
171
171
  )
172
172
 
173
- ephemeris_data = factory.get_ephemeris_data_as_model()
173
+ ephemeris_data = factory.get_ephemeris_data(as_model=True)
174
174
  print(ephemeris_data[0])
175
175
  print(len(ephemeris_data))
176
176
 
@@ -107,4 +107,6 @@ SignsEmoji = Literal["♈️", "♉️", "♊️", "♋️", "♌️", "♍️",
107
107
  KerykeionChartTheme = Literal["light", "dark", "dark-high-contrast", "classic"]
108
108
 
109
109
 
110
- RelationshipScoreDescription = Literal["Minimal", "Medium", "Important", "Very Important", "Exceptional", "Rare Exceptional"]
110
+ KerykeionChartLanguage = Literal["EN", "FR", "PT", "IT", "CN", "ES", "RU", "TR", "DE", "HI"]
111
+
112
+ RelationshipScoreDescription = Literal["Minimal", "Medium", "Important", "Very Important", "Exceptional", "Rare Exceptional"]
@@ -377,6 +377,48 @@
377
377
  "Chiron": "Chiron",
378
378
  "Mean_Lilith": "Lilith"
379
379
  }
380
+ },
381
+ "HI": {
382
+ "info": "जानकारी",
383
+ "cusp": "घर",
384
+ "longitude": "देशांतर",
385
+ "latitude": "अक्षांश",
386
+ "north": "उत्तर",
387
+ "east": "पूर्व",
388
+ "south": "दक्षिण",
389
+ "west": "पश्चिम",
390
+ "fire": "अग्नि",
391
+ "earth": "पृथ्वी",
392
+ "air": "वायु",
393
+ "water": "जल",
394
+ "and_word": "और",
395
+ "transits": "गोचर के लिए",
396
+ "type": "प्रकार",
397
+ "aspects": "जोड़ी के पहलू",
398
+ "planets_and_house": "अंक के लिए",
399
+ "transit_name": "गोचर के समय",
400
+ "lunar_phase": "चंद्र चरण",
401
+ "day": "दिन",
402
+ "celestial_points": {
403
+ "Sun": "सूर्य",
404
+ "Moon": "चंद्रमा",
405
+ "Mercury": "बुध",
406
+ "Venus": "शुक्र",
407
+ "Mars": "मंगल",
408
+ "Jupiter": "गुरु",
409
+ "Saturn": "शनि",
410
+ "Uranus": "यूरेनस",
411
+ "Neptune": "नेपच्यून",
412
+ "Pluto": "प्लूटो",
413
+ "Asc": "आस",
414
+ "Mc": "एमसी",
415
+ "Dsc": "डीएससी",
416
+ "Ic": "आईसी",
417
+ "True_Node": "सत्य चंद्र नोड",
418
+ "Mean_Node": "औसत चंद्र नोड",
419
+ "Chiron": "चिरोन",
420
+ "Mean_Lilith": "लिलिथ"
421
+ }
380
422
  }
381
423
  },
382
424
  "aspects": [
@@ -448,7 +490,7 @@
448
490
  "degree": 144,
449
491
  "name": "biquintile",
450
492
  "is_active": 0,
451
- "is_major" : 0,
493
+ "is_major": 0,
452
494
  "orb": 1,
453
495
  "color": "var(--kerykeion-chart-color-biquintile)"
454
496
  },
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kerykeion
3
- Version: 4.18.0
3
+ Version: 4.18.1
4
4
  Summary: A python library for astrology.
5
5
  Home-page: https://www.kerykeion.net/
6
6
  License: AGPL-3.0
@@ -8,7 +8,7 @@ kerykeion/astrological_subject.py,sha256=YkEHyge_S6FTsAsLNuSMBR-4XdNMFhRo6lHqYdp
8
8
  kerykeion/charts/__init__.py,sha256=Juxkduy2TaagWblh_7CE8Acrg3dHL27-WEddJhau_eQ,127
9
9
  kerykeion/charts/charts_utils.py,sha256=IMvYy6jt6HmZZqpE1FIMhpL3eIqdxq2_aaF1RrpgzpE,42148
10
10
  kerykeion/charts/draw_planets.py,sha256=Uty3zpWYMQZvvK7ZHhlmynCHeL8DIN3qL2ifnBXVciM,17393
11
- kerykeion/charts/kerykeion_chart_svg.py,sha256=1jBMLQ24Mg4EoNZGb7KauH6CpC6830V8lG2tnFZF9MY,42521
11
+ kerykeion/charts/kerykeion_chart_svg.py,sha256=FXCw8E6TSNH_F_6LCwVgUWWOp_rAO445r6BbJg6ii-Q,42789
12
12
  kerykeion/charts/templates/aspect_grid_only.xml,sha256=5CUctWk2wgXV-ev2JHJ5yLlow7gzzFZz1eO744PLu2A,65150
13
13
  kerykeion/charts/templates/chart.xml,sha256=ryQao1xDqlSjNUY0HzZiJjdRK__mQoMFA3WV-W6t5Jo,68383
14
14
  kerykeion/charts/templates/wheel_only.xml,sha256=xyFlULo1rKZDk8kT9pRWgaEoYyNcmwK40PARKqr30FY,66372
@@ -17,12 +17,12 @@ kerykeion/charts/themes/dark-high-contrast.css,sha256=6Hs_LM3m7xvEuRxWwXjLj6DBvf
17
17
  kerykeion/charts/themes/dark.css,sha256=egJbTzqnqMaSk3AQ6KI-PMId-BbT2bqzjpuVds2ffcc,6099
18
18
  kerykeion/charts/themes/light.css,sha256=urUXkEQlJ-IymdDO7Hp8hFwwjqka6GB42LkaiWZtpfs,6092
19
19
  kerykeion/enums.py,sha256=Xp_0A6jBSW7SZvB5LlKfBObg0xTqB6hTq1IXjz-UWl4,997
20
- kerykeion/ephemeris_data.py,sha256=H_vpSyRv9685qObfgjJgiqHcFaXT48gAYsqihH0Bixw,8068
20
+ kerykeion/ephemeris_data.py,sha256=g52P0jc1Roo8udXW04BOtIBTaOh3Rcp8_ZDw2MJNn_k,8072
21
21
  kerykeion/fetch_geonames.py,sha256=NmyTErvKISjJCAxvRB1H35aVZI8_-_U-Cqb_rmqRseA,4563
22
22
  kerykeion/kr_types/__init__.py,sha256=-qhGQikurdoHnGtuT1bsaEeZ-IwmZtIHMjGOPC9_oqQ,295
23
23
  kerykeion/kr_types/chart_types.py,sha256=OlDvjCra7acaBT--B_gqsqOcAwbuKCXmQQyDTDNfy4o,1983
24
24
  kerykeion/kr_types/kerykeion_exception.py,sha256=G-7VFta78qBt10l54JZWvwH-3lUNKmDwuILXaVGVu9A,314
25
- kerykeion/kr_types/kr_literals.py,sha256=36oJanMtO-1s5Nk4kvlNX3H2eZgoF3ZwTph0lu8wMcE,3505
25
+ kerykeion/kr_types/kr_literals.py,sha256=gCRnSEmogD1MRwJOHmr6hxjIve0UTJDA0wnpA4p9lds,3600
26
26
  kerykeion/kr_types/kr_models.py,sha256=hibUM0HAgL5u2Nx_k6R3wO1VNoKwurzxdj7MJDsrbsg,4235
27
27
  kerykeion/kr_types/settings_models.py,sha256=xAIUdJ0vDfS19FiuQdBlwfo6_vCZOZ97K4_vgOD6has,11600
28
28
  kerykeion/relationship_score/__init__.py,sha256=cLaEBQXQBfyRkv0OaS3ceLROzvWcvKXWiRq0PS6LDjY,114
@@ -31,12 +31,12 @@ kerykeion/relationship_score/relationship_score_factory.py,sha256=DL-a-Sb7JLscZl
31
31
  kerykeion/report.py,sha256=QEZfadIxmqIugoLHMW0KBhOqCwTywGSDDfpX4NJD6qg,2785
32
32
  kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
33
33
  kerykeion/settings/kerykeion_settings.py,sha256=zGLq9vNUQRXs8KY47EyKZ9bHrDl2gNYrvVhwsbh4yas,2578
34
- kerykeion/settings/kr.config.json,sha256=svjWzo-6kG7pWRgwpL0Rz9aueENu-2k7byUeIdEstLk,18796
34
+ kerykeion/settings/kr.config.json,sha256=iH7R9FPt3mS1cgrB7OKrqWSgq8G4hAslYIRv2a2RbXc,20313
35
35
  kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
36
36
  kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
37
37
  kerykeion/utilities.py,sha256=VazaGS8n2p3CD8P2q31A1kSKbmXRNMG8DytLuBwEaU4,9219
38
- kerykeion-4.18.0.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
39
- kerykeion-4.18.0.dist-info/METADATA,sha256=SK_8wXf0v2Zd6p8x8UMQ3zdMat3qXtx4pv43qv0fb2g,15912
40
- kerykeion-4.18.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
41
- kerykeion-4.18.0.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
42
- kerykeion-4.18.0.dist-info/RECORD,,
38
+ kerykeion-4.18.1.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
39
+ kerykeion-4.18.1.dist-info/METADATA,sha256=jPuylgKGHvrRAlp4_ebrMJxvqkjJp27jNV6AOHGD-04,15912
40
+ kerykeion-4.18.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
41
+ kerykeion-4.18.1.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
42
+ kerykeion-4.18.1.dist-info/RECORD,,