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.
- {divineapi-1.0.4 → divineapi-1.0.6}/PKG-INFO +7 -1
- {divineapi-1.0.4 → divineapi-1.0.6}/README.md +6 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/__init__.py +1 -1
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/festival.py +16 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/PKG-INFO +7 -1
- {divineapi-1.0.4 → divineapi-1.0.6}/pyproject.toml +1 -1
- {divineapi-1.0.4 → divineapi-1.0.6}/LICENSE +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/calculators.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/client.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/exceptions.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/horoscope.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/__init__.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/kundli.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/match_making.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/indian/panchang.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/lifestyle.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/numerology.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/pdf.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/py.typed +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/__init__.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/composite.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/natal.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/planet_returns.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/prenatal.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/progressions.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/synastry.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi/western/transit.py +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/SOURCES.txt +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/dependency_links.txt +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/requires.txt +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/divineapi.egg-info/top_level.txt +0 -0
- {divineapi-1.0.4 → divineapi-1.0.6}/setup.cfg +0 -0
- {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.
|
|
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
|
|
@@ -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.
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|