divineapi 1.0.3__tar.gz → 1.0.4__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.
Files changed (33) hide show
  1. {divineapi-1.0.3 → divineapi-1.0.4}/PKG-INFO +5 -1
  2. {divineapi-1.0.3 → divineapi-1.0.4}/README.md +4 -0
  3. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/__init__.py +1 -1
  4. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/indian/panchang.py +9 -0
  5. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi.egg-info/PKG-INFO +5 -1
  6. {divineapi-1.0.3 → divineapi-1.0.4}/pyproject.toml +1 -1
  7. {divineapi-1.0.3 → divineapi-1.0.4}/LICENSE +0 -0
  8. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/calculators.py +0 -0
  9. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/client.py +0 -0
  10. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/exceptions.py +0 -0
  11. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/horoscope.py +0 -0
  12. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/indian/__init__.py +0 -0
  13. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/indian/festival.py +0 -0
  14. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/indian/kundli.py +0 -0
  15. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/indian/match_making.py +0 -0
  16. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/lifestyle.py +0 -0
  17. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/numerology.py +0 -0
  18. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/pdf.py +0 -0
  19. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/py.typed +0 -0
  20. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/western/__init__.py +0 -0
  21. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/western/composite.py +0 -0
  22. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/western/natal.py +0 -0
  23. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/western/planet_returns.py +0 -0
  24. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/western/prenatal.py +0 -0
  25. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/western/progressions.py +0 -0
  26. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/western/synastry.py +0 -0
  27. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi/western/transit.py +0 -0
  28. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi.egg-info/SOURCES.txt +0 -0
  29. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi.egg-info/dependency_links.txt +0 -0
  30. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi.egg-info/requires.txt +0 -0
  31. {divineapi-1.0.3 → divineapi-1.0.4}/divineapi.egg-info/top_level.txt +0 -0
  32. {divineapi-1.0.3 → divineapi-1.0.4}/setup.cfg +0 -0
  33. {divineapi-1.0.3 → divineapi-1.0.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: divineapi
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Official Python SDK for the Divine API - Astrology, Numerology, Tarot & more
5
5
  Author-email: Divine API <support@divineapi.com>
6
6
  License: MIT
@@ -97,6 +97,10 @@ client.indian.panchang.auspicious_timings(
97
97
  day=10, month=3, year=2024,
98
98
  place="Delhi", lat=28.6139, lon=77.2090, tzone=5.5
99
99
  )
100
+ client.indian.panchang.find_gowri_panchangam(
101
+ day=10, month=3, year=2024,
102
+ place="Chennai", lat=13.0827, lon=80.2707, tzone=5.5
103
+ )
100
104
 
101
105
  # Planetary transits
102
106
  client.indian.panchang.grah_gochar(
@@ -69,6 +69,10 @@ client.indian.panchang.auspicious_timings(
69
69
  day=10, month=3, year=2024,
70
70
  place="Delhi", lat=28.6139, lon=77.2090, tzone=5.5
71
71
  )
72
+ client.indian.panchang.find_gowri_panchangam(
73
+ day=10, month=3, year=2024,
74
+ place="Chennai", lat=13.0827, lon=80.2707, tzone=5.5
75
+ )
72
76
 
73
77
  # Planetary transits
74
78
  client.indian.panchang.grah_gochar(
@@ -29,7 +29,7 @@ from .numerology import NumerologyApi
29
29
  from .pdf import PdfReportApi
30
30
  from .western import WesternApi
31
31
 
32
- __version__ = "1.0.3"
32
+ __version__ = "1.0.4"
33
33
 
34
34
  __all__ = [
35
35
  "DivineApi",
@@ -152,6 +152,15 @@ class PanchangApi:
152
152
  return self._c.post("astroapi-3", "/indian-api/v1/auspicious-timings",
153
153
  self._loc(day, month, year, place, lat, lon, tzone, lan))
154
154
 
155
+ def find_gowri_panchangam(
156
+ self, day: int, month: int, year: int,
157
+ place: str, lat: float, lon: float, tzone: float,
158
+ lan: str = "en",
159
+ ) -> Dict[str, Any]:
160
+ """Find Gowri Panchangam."""
161
+ return self._c.post("astroapi-3", "/indian-api/v1/find-gowri-panchangam",
162
+ self._loc(day, month, year, place, lat, lon, tzone, lan))
163
+
155
164
  def inauspicious_timings(
156
165
  self, day: int, month: int, year: int,
157
166
  place: str, lat: float, lon: float, tzone: float,
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: divineapi
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Official Python SDK for the Divine API - Astrology, Numerology, Tarot & more
5
5
  Author-email: Divine API <support@divineapi.com>
6
6
  License: MIT
@@ -97,6 +97,10 @@ client.indian.panchang.auspicious_timings(
97
97
  day=10, month=3, year=2024,
98
98
  place="Delhi", lat=28.6139, lon=77.2090, tzone=5.5
99
99
  )
100
+ client.indian.panchang.find_gowri_panchangam(
101
+ day=10, month=3, year=2024,
102
+ place="Chennai", lat=13.0827, lon=80.2707, tzone=5.5
103
+ )
100
104
 
101
105
  # Planetary transits
102
106
  client.indian.panchang.grah_gochar(
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "divineapi"
7
- version = "1.0.3"
7
+ version = "1.0.4"
8
8
  description = "Official Python SDK for the Divine API - Astrology, Numerology, Tarot & more"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes