kerykeion 4.4.0__tar.gz → 4.4.1__tar.gz

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.

Files changed (29) hide show
  1. {kerykeion-4.4.0 → kerykeion-4.4.1}/PKG-INFO +13 -1
  2. {kerykeion-4.4.0 → kerykeion-4.4.1}/README.md +12 -0
  3. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/charts/kerykeion_chart_svg.py +1 -2
  4. {kerykeion-4.4.0 → kerykeion-4.4.1}/pyproject.toml +1 -1
  5. {kerykeion-4.4.0 → kerykeion-4.4.1}/LICENSE +0 -0
  6. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/__init__.py +0 -0
  7. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/aspects/__init__.py +0 -0
  8. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/aspects/aspects_utils.py +0 -0
  9. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/aspects/natal_aspects.py +0 -0
  10. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/aspects/synastry_aspects.py +0 -0
  11. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/astrological_subject.py +0 -0
  12. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/charts/__init__.py +0 -0
  13. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/charts/charts_utils.py +0 -0
  14. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/charts/templates/chart.xml +0 -0
  15. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/fetch_geonames.py +0 -0
  16. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/kr_types/__init__.py +0 -0
  17. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/kr_types/chart_types.py +0 -0
  18. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/kr_types/kerykeion_exception.py +0 -0
  19. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/kr_types/kr_literals.py +0 -0
  20. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/kr_types/kr_models.py +0 -0
  21. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/kr_types/settings_models.py +0 -0
  22. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/relationship_score.py +0 -0
  23. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/report.py +0 -0
  24. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/settings/__init__.py +0 -0
  25. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/settings/kerykeion_settings.py +0 -0
  26. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/settings/kr.config.json +0 -0
  27. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/sweph/README.md +0 -0
  28. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/sweph/seas_18.se1 +0 -0
  29. {kerykeion-4.4.0 → kerykeion-4.4.1}/kerykeion/utilities.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: kerykeion
3
- Version: 4.4.0
3
+ Version: 4.4.1
4
4
  Summary: A python library for astrology.
5
5
  Home-page: https://github.com/g-battaglia/kerykeion
6
6
  License: AGPL-3.0
@@ -63,7 +63,10 @@ also it can calculate the aspects of a single persone or between two, you can se
63
63
  need in the settings in the utility module.
64
64
  It also can generate an SVG of a birthchart, a synastry chart or a transit chart.
65
65
 
66
+ The core goal of this project is to provide a simple and easy approach to astrology in a data driven way.
67
+
66
68
  Here's an example of a birthchart:
69
+
67
70
  ![Kanye Birth Chart](http://centuryboy.altervista.org/KanyeNatalChart.svg)
68
71
 
69
72
  ## Web API
@@ -254,3 +257,12 @@ You can clone this repository or download a zip file using the right side button
254
257
 
255
258
  Feel free to contribute to the code!
256
259
 
260
+ ## License
261
+
262
+ This project is licensed under the AGPL-3.0 License.
263
+ To understand how this impacts your use of the software, please see the [LICENSE](LICENSE) file for details.
264
+ If you have questions, you can reach out to me at my [email](mailto:battaglia.giacomo@yahoo.it?subject=Kerykeion) address.
265
+ As a rule of thumb, if you are using this library in a project, you should open source the code of the project with a compatible license.
266
+
267
+ You can implement the logic of kerkeion in your project and also keep it closed source by using a third party API, like the [AstrologerAPI](https://rapidapi.com/gbattaglia/api/astrologer/). The AstrologerAPI is AGPL-3.0 compliant. Subscribing to the API is also, currently, the best way to support the project.
268
+
@@ -28,7 +28,10 @@ also it can calculate the aspects of a single persone or between two, you can se
28
28
  need in the settings in the utility module.
29
29
  It also can generate an SVG of a birthchart, a synastry chart or a transit chart.
30
30
 
31
+ The core goal of this project is to provide a simple and easy approach to astrology in a data driven way.
32
+
31
33
  Here's an example of a birthchart:
34
+
32
35
  ![Kanye Birth Chart](http://centuryboy.altervista.org/KanyeNatalChart.svg)
33
36
 
34
37
  ## Web API
@@ -218,3 +221,12 @@ You can clone this repository or download a zip file using the right side button
218
221
  ## Contributing
219
222
 
220
223
  Feel free to contribute to the code!
224
+
225
+ ## License
226
+
227
+ This project is licensed under the AGPL-3.0 License.
228
+ To understand how this impacts your use of the software, please see the [LICENSE](LICENSE) file for details.
229
+ If you have questions, you can reach out to me at my [email](mailto:battaglia.giacomo@yahoo.it?subject=Kerykeion) address.
230
+ As a rule of thumb, if you are using this library in a project, you should open source the code of the project with a compatible license.
231
+
232
+ You can implement the logic of kerkeion in your project and also keep it closed source by using a third party API, like the [AstrologerAPI](https://rapidapi.com/gbattaglia/api/astrologer/). The AstrologerAPI is AGPL-3.0 compliant. Subscribing to the API is also, currently, the best way to support the project.
@@ -1461,8 +1461,7 @@ class KerykeionChartSVG:
1461
1461
  td = self._createTemplateDictionary()
1462
1462
 
1463
1463
  # read template
1464
- with open(self.xml_svg, "r", encoding="utf-8", errors="ignore") as output_file:
1465
- f = open(self.xml_svg)
1464
+ with open(self.xml_svg, "r", encoding="utf-8", errors="ignore") as f:
1466
1465
  template = Template(f.read()).substitute(td)
1467
1466
 
1468
1467
  # return filename
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "kerykeion"
3
- version = "4.4.0"
3
+ version = "4.4.1"
4
4
  authors = ["Giacomo Battaglia <battaglia.giacomo@yahoo.it>"]
5
5
  description = "A python library for astrology."
6
6
  license = "AGPL-3.0"
File without changes
File without changes