divineapi 1.0.4__tar.gz → 1.0.6__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.4 → divineapi-1.0.6}/PKG-INFO +7 -1
  2. {divineapi-1.0.4 → divineapi-1.0.6}/README.md +6 -0
  3. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/__init__.py +1 -1
  4. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/festival.py +16 -0
  5. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/PKG-INFO +7 -1
  6. {divineapi-1.0.4 → divineapi-1.0.6}/pyproject.toml +1 -1
  7. {divineapi-1.0.4 → divineapi-1.0.6}/LICENSE +0 -0
  8. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/calculators.py +0 -0
  9. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/client.py +0 -0
  10. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/exceptions.py +0 -0
  11. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/horoscope.py +0 -0
  12. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/__init__.py +0 -0
  13. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/kundli.py +0 -0
  14. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/match_making.py +0 -0
  15. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/panchang.py +0 -0
  16. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/lifestyle.py +0 -0
  17. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/numerology.py +0 -0
  18. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/pdf.py +0 -0
  19. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/py.typed +0 -0
  20. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/__init__.py +0 -0
  21. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/composite.py +0 -0
  22. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/natal.py +0 -0
  23. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/planet_returns.py +0 -0
  24. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/prenatal.py +0 -0
  25. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/progressions.py +0 -0
  26. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/synastry.py +0 -0
  27. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/transit.py +0 -0
  28. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/SOURCES.txt +0 -0
  29. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/dependency_links.txt +0 -0
  30. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/requires.txt +0 -0
  31. {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/top_level.txt +0 -0
  32. {divineapi-1.0.4 → divineapi-1.0.6}/setup.cfg +0 -0
  33. {divineapi-1.0.4 → divineapi-1.0.6}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: divineapi
3
- Version: 1.0.4
3
+ Version: 1.0.6
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
@@ -156,6 +156,12 @@ client.indian.festival.find_festival(
156
156
  festival="diwali", year=2024,
157
157
  place="Delhi", lat=28.6, lon=77.2, tzone=5.5
158
158
  )
159
+ client.indian.festival.malayalam_festivals(
160
+ year=2027, place="Kochi", lat=9.9312, lon=76.2673, tzone=5.5
161
+ )
162
+ client.indian.festival.tamil_festivals(
163
+ year=2027, place="Chennai", lat=13.0827, lon=80.2707, tzone=5.5
164
+ )
159
165
  ```
160
166
 
161
167
  ### Western Astrology - Natal
@@ -128,6 +128,12 @@ client.indian.festival.find_festival(
128
128
  festival="diwali", year=2024,
129
129
  place="Delhi", lat=28.6, lon=77.2, tzone=5.5
130
130
  )
131
+ client.indian.festival.malayalam_festivals(
132
+ year=2027, place="Kochi", lat=9.9312, lon=76.2673, tzone=5.5
133
+ )
134
+ client.indian.festival.tamil_festivals(
135
+ year=2027, place="Chennai", lat=13.0827, lon=80.2707, tzone=5.5
136
+ )
131
137
  ```
132
138
 
133
139
  ### Western Astrology - Natal
@@ -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.4"
32
+ __version__ = "1.0.6"
33
33
 
34
34
  __all__ = [
35
35
  "DivineApi",
@@ -113,3 +113,19 @@ class FestivalApi:
113
113
  data = self._festival_loc(year, place, lat, lon, tzone)
114
114
  data["festival"] = festival
115
115
  return self._c.post(HOST, "/indian-api/v1/find-festival", data)
116
+
117
+ def malayalam_festivals(
118
+ self, year: int,
119
+ place: str, lat: float, lon: float, tzone: float,
120
+ ) -> Dict[str, Any]:
121
+ """Malayalam (Kerala) Festivals for a year."""
122
+ return self._c.post(HOST, "/indian-api/v1/malayalam-festivals",
123
+ self._festival_loc(year, place, lat, lon, tzone))
124
+
125
+ def tamil_festivals(
126
+ self, year: int,
127
+ place: str, lat: float, lon: float, tzone: float,
128
+ ) -> Dict[str, Any]:
129
+ """Tamil Festivals for a year."""
130
+ return self._c.post(HOST, "/indian-api/v1/tamil-festivals",
131
+ self._festival_loc(year, place, lat, lon, tzone))
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: divineapi
3
- Version: 1.0.4
3
+ Version: 1.0.6
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
@@ -156,6 +156,12 @@ client.indian.festival.find_festival(
156
156
  festival="diwali", year=2024,
157
157
  place="Delhi", lat=28.6, lon=77.2, tzone=5.5
158
158
  )
159
+ client.indian.festival.malayalam_festivals(
160
+ year=2027, place="Kochi", lat=9.9312, lon=76.2673, tzone=5.5
161
+ )
162
+ client.indian.festival.tamil_festivals(
163
+ year=2027, place="Chennai", lat=13.0827, lon=80.2707, tzone=5.5
164
+ )
159
165
  ```
160
166
 
161
167
  ### Western Astrology - Natal
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "divineapi"
7
- version = "1.0.4"
7
+ version = "1.0.6"
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