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

@@ -1,7 +1,5 @@
1
1
  <?xml version='1.0' encoding='UTF-8'?>
2
- <!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'>
3
- <!---
4
- This file is part of Kerykeion and is based on OpenAstro.org -->
2
+ <!--- This file is part of Kerykeion and is based on OpenAstro.org -->
5
3
  <svg
6
4
  xmlns="http://www.w3.org/2000/svg"
7
5
  xmlns:xlink="http://www.w3.org/1999/xlink"
@@ -10,7 +8,7 @@ This file is part of Kerykeion and is based on OpenAstro.org -->
10
8
  viewBox="$viewbox"
11
9
  preserveAspectRatio="xMidYMid"
12
10
  >
13
- <title>Kerykeion</title>
11
+ <title>$stringTitle | Kerykeion</title>
14
12
  <g transform="translate($cfgTranslate)">
15
13
  <g transform="rotate($cfgRotate)">
16
14
  <g transform="scale($cfgZoom)">
@@ -469,20 +467,49 @@ This file is part of Kerykeion and is based on OpenAstro.org -->
469
467
  </symbol>
470
468
  <g transform="translate(50,50)">
471
469
  <g transform="translate($circleX,$circleY)">
472
- <!-- Zodiac -->$makeZodiac <!-- First Circle -->
470
+ <!-- Zodiac -->
471
+ $makeZodiac
472
+
473
+ <!-- First Circle -->
473
474
  <circle $c1 style="$c1style" />
475
+
474
476
  <!-- Second Circle -->
475
- <circle
476
- $c2 style="$c2style" />
477
+ <circle $c2 style="$c2style" />
478
+
477
479
  <!-- Third Circle -->
478
480
  <circle $c3 style="$c3style" />
479
- <!-- TransitRing -->$transitRing <!-- Degree Ring -->$degreeRing <!-- Houses -->
480
- $makeHouses
481
- <!-- Planets -->$makePlanets <!-- Aspects -->$makeAspects </g>
482
- <!-- makePatterns -->$makePatterns <!-- AspectGrid -->
481
+
482
+ <!-- TransitRing -->
483
+ $transitRing
484
+
485
+ <!-- Degree Ring -->
486
+ $degreeRing
487
+
488
+ <!-- Houses -->
489
+ $makeHouses
490
+
491
+ <!-- Planets -->
492
+ $makePlanets
493
+
494
+ <!-- Aspects -->
495
+ $makeAspects
496
+ </g>
497
+
498
+ <!-- makePatterns -->
499
+ $makePatterns
500
+
501
+ <!-- AspectGrid -->
483
502
  $makeAspectGrid
484
- <!-- Elements -->$makeElements <!-- Planet Grid -->$makePlanetGrid <!-- Houses Grid -->
503
+
504
+ <!-- Elements -->
505
+ $elements_percentages
506
+
507
+ <!-- Planet Grid -->
508
+ $makePlanetGrid
509
+
510
+ <!-- Houses Grid -->
485
511
  $makeHousesGrid
512
+
486
513
  </g>
487
514
  </g>
488
515
  </g>
@@ -36,8 +36,13 @@ class ChartTemplateDictionary(TypedDict):
36
36
  stringLat: str
37
37
  stringLon: str
38
38
  stringPosition: str
39
+
40
+ # Font color
39
41
  paper_color_0: str
42
+ # Background color of the chart
40
43
  paper_color_1: str
44
+
45
+ # Planets colors, from 1 to 15 (0 is the Sun)
41
46
  planets_color_0: str
42
47
  planets_color_1: str
43
48
  planets_color_2: str
@@ -54,6 +59,8 @@ class ChartTemplateDictionary(TypedDict):
54
59
  planets_color_13: str
55
60
  planets_color_14: str
56
61
  planets_color_15: str
62
+
63
+ # Zodiac colors, from 0 to 11 (0 is Aries)
57
64
  zodiac_color_0: str
58
65
  zodiac_color_1: str
59
66
  zodiac_color_2: str
@@ -66,6 +73,8 @@ class ChartTemplateDictionary(TypedDict):
66
73
  zodiac_color_9: str
67
74
  zodiac_color_10: str
68
75
  zodiac_color_11: str
76
+
77
+ # Aspects colors, from 0 to 9 (0 is conjunction)
69
78
  orb_color_0: str
70
79
  orb_color_30: str
71
80
  orb_color_45: str
@@ -77,12 +86,13 @@ class ChartTemplateDictionary(TypedDict):
77
86
  orb_color_144: str
78
87
  orb_color_150: str
79
88
  orb_color_180: str
89
+
80
90
  cfgZoom: str
81
91
  cfgRotate: str
82
92
  cfgTranslate: str
83
93
  makeZodiac: str
84
94
  makeHouses: str
85
95
  makePlanets: str
86
- makeElements: str
96
+ elements_percentages: str
87
97
  makePlanetGrid: str
88
98
  makeHousesGrid: str
@@ -4,10 +4,8 @@
4
4
  """
5
5
 
6
6
 
7
- from json import load
8
7
  from pydantic import BaseModel, Field
9
- from pathlib import Path
10
- from typing import Dict, List, Union
8
+ from typing import List
11
9
 
12
10
 
13
11
  class CustomBaseModel(BaseModel):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kerykeion
3
- Version: 4.6.2
3
+ Version: 4.8.0
4
4
  Summary: A python library for astrology.
5
5
  Home-page: https://github.com/g-battaglia/kerykeion
6
6
  License: AGPL-3.0
@@ -30,6 +30,7 @@ Requires-Dist: pyswisseph (>=2.10.3.1,<3.0.0.0)
30
30
  Requires-Dist: pytz (>=2022.7,<2023.0)
31
31
  Requires-Dist: requests (>=2.28.1,<3.0.0)
32
32
  Requires-Dist: requests-cache (>=0.9.7,<0.10.0)
33
+ Requires-Dist: scour (>=0.38.2,<0.39.0)
33
34
  Requires-Dist: terminaltables (>=3.1.10,<4.0.0)
34
35
  Project-URL: Repository, https://github.com/g-battaglia/kerykeion
35
36
  Description-Content-Type: text/markdown
@@ -4,19 +4,19 @@ kerykeion/aspects/__init__.py,sha256=9FlDVI1ndCJga0-chNIhcLitjU_x3kbtAFfFqVp2ejc
4
4
  kerykeion/aspects/aspects_utils.py,sha256=Rdo3ITDSU80n6U7aazpzzK4ruv7Iui2PaI3zMGqu1NQ,5832
5
5
  kerykeion/aspects/natal_aspects.py,sha256=m3_v1dM6YXvENZ6iN_EJkikKxySZBeR5QKhGsaChERk,4507
6
6
  kerykeion/aspects/synastry_aspects.py,sha256=uwg7Lc7wKnpxW9ydOdBHqx9cvO_t0ydGfIGluBIDD7c,3993
7
- kerykeion/astrological_subject.py,sha256=9vLsYZYfAfkR5EJO_EkbkhXa4i788Yv1lCESaQrt5kU,22965
7
+ kerykeion/astrological_subject.py,sha256=Z9QUNqX6mrOm4ihxmhH0hiMv6ilp_-0HCQ4u_feE73g,22956
8
8
  kerykeion/charts/__init__.py,sha256=Juxkduy2TaagWblh_7CE8Acrg3dHL27-WEddJhau_eQ,127
9
- kerykeion/charts/charts_utils.py,sha256=jJLgoBcs9e6-ArNFsj_N7Wel0zCzMKEsGrlz_A7MECE,5167
10
- kerykeion/charts/kerykeion_chart_svg.py,sha256=6y0VHsfBEjefSrJErcKB3UH1xFOuWoEps4Y_1-IynVo,64764
11
- kerykeion/charts/templates/chart.xml,sha256=ZrkqJV3Du8vG1w8kVkM1wI-IiZNVDLDuS6dRtPz7wVo,69874
9
+ kerykeion/charts/charts_utils.py,sha256=E5qrvA7uaSxKL0PrcRtWhDP581itIm3kAebsxYVa4hE,13214
10
+ kerykeion/charts/kerykeion_chart_svg.py,sha256=LRbBIi_9LmR5mc_HnpPERkY2Y5Hh_3ESYAKQiPUpJmE,61248
11
+ kerykeion/charts/templates/chart.xml,sha256=7gkzNRQmkOn9hCAOiPbQwd9e8x9shFtF3uEZo5tp8P0,70156
12
12
  kerykeion/enums.py,sha256=Ben9GLYkPucpYY2ZDpURzUbNCc9jzK2MuaffkgiXFdQ,965
13
13
  kerykeion/fetch_geonames.py,sha256=fWuhgP_hZTPzDuodu7hvSznzGCWj3IC3vHAX32zPRw8,4444
14
14
  kerykeion/kr_types/__init__.py,sha256=-qhGQikurdoHnGtuT1bsaEeZ-IwmZtIHMjGOPC9_oqQ,295
15
- kerykeion/kr_types/chart_types.py,sha256=PvdOEqzZZBrJxFKQqAC0KcnfIY4T4I2i6CeLQhvVbe8,1945
15
+ kerykeion/kr_types/chart_types.py,sha256=ZXBfMhidgwSGNEIO6kRELQedc8L7TF4z-pYgW28PA4s,2169
16
16
  kerykeion/kr_types/kerykeion_exception.py,sha256=G-7VFta78qBt10l54JZWvwH-3lUNKmDwuILXaVGVu9A,314
17
17
  kerykeion/kr_types/kr_literals.py,sha256=Kc7LfdeTqHi5uDGoQHWsB81GTBc5E-fGxTJqWKK1FFU,1267
18
18
  kerykeion/kr_types/kr_models.py,sha256=3gyT4z-J9EM6p5175HKJX9q9WVWQTDt5Y_m3m8lZu9s,4260
19
- kerykeion/kr_types/settings_models.py,sha256=fueHaDLW2GPQl4HWImUNsWxeM7xcF0JU-fFc3rQqPgE,12743
19
+ kerykeion/kr_types/settings_models.py,sha256=V4iEj7egXZHrWiV1cGQIezbtVmOKbOB-BRzPwa8WVtc,12683
20
20
  kerykeion/relationship_score.py,sha256=R9JugfK5_gJgr5ND-EghkqpqZcutzzKlJ-2JnYUMVv4,6794
21
21
  kerykeion/report.py,sha256=kS5avIN119pJVapYjZOvabg77nEcA8sSrOuXbRifABk,2565
22
22
  kerykeion/settings/__init__.py,sha256=QQNFCl7sgN27MKaVscqtpPk10HGz4wZS3I_7KEGMaVA,69
@@ -25,8 +25,8 @@ kerykeion/settings/kr.config.json,sha256=1Yhv9RGHom5U9e-JZZRWVfT2Ubllz2WrckdwadD
25
25
  kerykeion/sweph/README.md,sha256=L7FtNAJTWtrZNGKa8MX87SjduFYPYxwWhaI5fmtzNZo,73
26
26
  kerykeion/sweph/seas_18.se1,sha256=X9nCqhZU43wJpq61WAdueVQJt9xL2UjrwPqn1Kdoa1s,223002
27
27
  kerykeion/utilities.py,sha256=ncoXHvzXhNjhdm-uU6hMirVo287laq2GAJElNE6cBZM,10822
28
- kerykeion-4.6.2.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
29
- kerykeion-4.6.2.dist-info/METADATA,sha256=hnPIiPxPtZE9OlhC3Us33D38-4g7-RA71eFeZpEATCU,10311
30
- kerykeion-4.6.2.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
31
- kerykeion-4.6.2.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
32
- kerykeion-4.6.2.dist-info/RECORD,,
28
+ kerykeion-4.8.0.dist-info/LICENSE,sha256=UTLH8EdbAsgQei4PA2PnBCPGLSZkq5J-dhkyJuXgWQU,34273
29
+ kerykeion-4.8.0.dist-info/METADATA,sha256=4cArhIX7dOeWXU9sip94ZTepsR7He665hYd8qA41ixQ,10351
30
+ kerykeion-4.8.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
31
+ kerykeion-4.8.0.dist-info/entry_points.txt,sha256=5SmANYscFDDTdeovHvGQ-cnj0hdFvGoxPaWLCpyDFnQ,49
32
+ kerykeion-4.8.0.dist-info/RECORD,,