-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsights.py
More file actions
457 lines (353 loc) · 16.9 KB
/
insights.py
File metadata and controls
457 lines (353 loc) · 16.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
"""Insights category client with nested sub-clients."""
from __future__ import annotations
from astroapi.categories.base import BaseCategoryClient
from astroapi.types.requests import (
BradleyRequest,
BusinessInsightRequest,
BusinessMultipleRequest,
BusinessSingleRequest,
CryptoTimingRequest,
FinancialInsightRequest,
ForexTimingRequest,
GannAnalysisRequest,
MarketTimingRequest,
MultiPetRequest,
PetInsightRequest,
PetPersonalityRequest,
RelationshipInsightRequest,
SingleSubjectRequest,
WellnessInsightRequest,
)
from astroapi.types.responses import InsightResponse
from astroapi.utils.http import HttpHelper
from astroapi.utils.validators import validate_subject
class RelationshipInsightsClient(BaseCategoryClient):
"""Sub-client for relationship insights."""
API_PREFIX = "/api/v3/insights/relationship"
def get_compatibility(self, request: RelationshipInsightRequest) -> InsightResponse:
"""Get relationship compatibility insights.
Args:
request: Relationship insight request parameters
Returns:
Compatibility insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject1)
validate_subject(request.subject2)
url = self._build_url("compatibility")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_dynamics(self, request: RelationshipInsightRequest) -> InsightResponse:
"""Get relationship dynamics insights.
Args:
request: Relationship insight request parameters
Returns:
Relationship dynamics insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject1)
validate_subject(request.subject2)
url = self._build_url("dynamics")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_challenges(self, request: RelationshipInsightRequest) -> InsightResponse:
"""Get relationship challenges insights.
Args:
request: Relationship insight request parameters
Returns:
Relationship challenges insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject1)
validate_subject(request.subject2)
url = self._build_url("challenges")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_compatibility_score(self, request: RelationshipInsightRequest) -> InsightResponse:
"""Get relationship compatibility score."""
validate_subject(request.subject1)
validate_subject(request.subject2)
url = self._build_url("compatibility-score")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_love_languages(self, request: RelationshipInsightRequest) -> InsightResponse:
"""Get love languages analysis."""
validate_subject(request.subject1)
validate_subject(request.subject2)
url = self._build_url("love-languages")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_davison_chart(self, request: RelationshipInsightRequest) -> InsightResponse:
"""Get Davison chart analysis."""
validate_subject(request.subject1)
validate_subject(request.subject2)
url = self._build_url("davison")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_timing(self, request: RelationshipInsightRequest) -> InsightResponse:
"""Get relationship timing insights."""
validate_subject(request.subject1)
validate_subject(request.subject2)
url = self._build_url("timing")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_red_flags(self, request: RelationshipInsightRequest) -> InsightResponse:
"""Get relationship red flags."""
validate_subject(request.subject1)
validate_subject(request.subject2)
url = self._build_url("red-flags")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
class PetInsightsClient(BaseCategoryClient):
"""Sub-client for pet compatibility insights."""
API_PREFIX = "/api/v3/insights/pet"
def get_compatibility(self, request: PetInsightRequest) -> InsightResponse:
"""Get pet-owner compatibility insights.
Args:
request: Pet insight request parameters
Returns:
Pet compatibility insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.owner)
validate_subject(request.pet)
url = self._build_url("compatibility")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_personality(self, request: PetPersonalityRequest) -> InsightResponse:
"""Get pet personality analysis."""
validate_subject(request.subject)
url = self._build_url("personality")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_training_windows(self, request: SingleSubjectRequest) -> InsightResponse:
"""Get pet training windows."""
validate_subject(request.subject)
url = self._build_url("training-windows")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_health_sensitivities(self, request: SingleSubjectRequest) -> InsightResponse:
"""Get pet health sensitivities."""
validate_subject(request.subject)
url = self._build_url("health-sensitivities")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_multi_pet_dynamics(self, request: MultiPetRequest) -> InsightResponse:
"""Get multi-pet dynamics analysis."""
url = self._build_url("multi-pet-dynamics")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
class WellnessInsightsClient(BaseCategoryClient):
"""Sub-client for wellness insights."""
API_PREFIX = "/api/v3/insights/wellness"
def get_health_insights(self, request: WellnessInsightRequest) -> InsightResponse:
"""Get health insights.
Args:
request: Wellness insight request parameters
Returns:
Health insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject)
url = self._build_url("health")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_fitness_insights(self, request: WellnessInsightRequest) -> InsightResponse:
"""Get fitness insights.
Args:
request: Wellness insight request parameters
Returns:
Fitness insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject)
url = self._build_url("fitness")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_mental_wellness_insights(self, request: WellnessInsightRequest) -> InsightResponse:
"""Get mental wellness insights.
Args:
request: Wellness insight request parameters
Returns:
Mental wellness insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject)
url = self._build_url("mental")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_body_mapping(self, request: WellnessInsightRequest) -> InsightResponse:
"""Get body mapping insights."""
validate_subject(request.subject)
url = self._build_url("body-mapping")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_biorhythms(self, request: WellnessInsightRequest) -> InsightResponse:
"""Get biorhythms insights."""
validate_subject(request.subject)
url = self._build_url("biorhythms")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_wellness_timing(self, request: WellnessInsightRequest) -> InsightResponse:
"""Get wellness timing insights."""
validate_subject(request.subject)
url = self._build_url("wellness-timing")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_energy_patterns(self, request: WellnessInsightRequest) -> InsightResponse:
"""Get energy patterns insights."""
validate_subject(request.subject)
url = self._build_url("energy-patterns")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_wellness_score(self, request: WellnessInsightRequest) -> InsightResponse:
"""Get wellness score."""
validate_subject(request.subject)
url = self._build_url("wellness-score")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_moon_wellness(self, request: WellnessInsightRequest) -> InsightResponse:
"""Get moon wellness insights."""
validate_subject(request.subject)
url = self._build_url("moon-wellness")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
class FinancialInsightsClient(BaseCategoryClient):
"""Sub-client for financial insights."""
API_PREFIX = "/api/v3/insights/financial"
def get_investment_insights(self, request: FinancialInsightRequest) -> InsightResponse:
"""Get investment timing insights.
Args:
request: Financial insight request parameters
Returns:
Investment insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject)
url = self._build_url("investment")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_career_insights(self, request: FinancialInsightRequest) -> InsightResponse:
"""Get career and financial insights.
Args:
request: Financial insight request parameters
Returns:
Career insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject)
url = self._build_url("career")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_market_timing(self, request: MarketTimingRequest) -> InsightResponse:
"""Get market timing insights."""
url = self._build_url("market-timing")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_personal_trading(self, request: SingleSubjectRequest) -> InsightResponse:
"""Get personal trading insights."""
validate_subject(request.subject)
url = self._build_url("personal-trading")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_gann_analysis(self, request: GannAnalysisRequest) -> InsightResponse:
"""Get Gann cycles analysis."""
url = self._build_url("gann-analysis")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_bradley_siderograph(self, request: BradleyRequest) -> InsightResponse:
"""Get Bradley siderograph."""
url = self._build_url("bradley-siderograph")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_crypto_timing(self, request: CryptoTimingRequest) -> InsightResponse:
"""Get crypto timing insights."""
url = self._build_url("crypto-timing")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_forex_timing(self, request: ForexTimingRequest) -> InsightResponse:
"""Get forex timing insights."""
url = self._build_url("forex-timing")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
class BusinessInsightsClient(BaseCategoryClient):
"""Sub-client for business timing insights."""
API_PREFIX = "/api/v3/insights/business"
def get_timing_insights(self, request: BusinessInsightRequest) -> InsightResponse:
"""Get business timing insights.
Args:
request: Business insight request parameters
Returns:
Business timing insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject)
url = self._build_url("timing")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_launch_insights(self, request: BusinessInsightRequest) -> InsightResponse:
"""Get business launch timing insights.
Args:
request: Business insight request parameters
Returns:
Launch timing insights response
Raises:
AstrologyError: If validation fails or API request fails
"""
validate_subject(request.subject)
url = self._build_url("launch")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_team_dynamics(self, request: BusinessMultipleRequest) -> InsightResponse:
"""Get team dynamics insights."""
url = self._build_url("team-dynamics")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_hiring_compatibility(self, request: BusinessMultipleRequest) -> InsightResponse:
"""Get hiring compatibility insights."""
url = self._build_url("hiring-compatibility")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_leadership_style(self, request: BusinessSingleRequest) -> InsightResponse:
"""Get leadership style insights."""
validate_subject(request.subject)
url = self._build_url("leadership-style")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_department_compatibility(self, request: BusinessMultipleRequest) -> InsightResponse:
"""Get department compatibility insights."""
url = self._build_url("department-compatibility")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
def get_succession_planning(self, request: BusinessSingleRequest) -> InsightResponse:
"""Get succession planning insights."""
validate_subject(request.subject)
url = self._build_url("succession-planning")
data = self._http.post(url, json=request.model_dump(exclude_none=True))
return InsightResponse(**data)
class InsightsClient(BaseCategoryClient):
"""Client for insights endpoints.
Provides access to specialized insight categories through nested sub-clients.
"""
API_PREFIX = "/api/v3/insights"
def __init__(self, http: HttpHelper) -> None:
"""Initialize insights client with sub-clients.
Args:
http: HTTP helper for making requests
"""
super().__init__(http)
self.relationship = RelationshipInsightsClient(http)
self.pet = PetInsightsClient(http)
self.wellness = WellnessInsightsClient(http)
self.financial = FinancialInsightsClient(http)
self.business = BusinessInsightsClient(http)