File size: 9,616 Bytes
db3de2a
0182177
db3de2a
0182177
 
 
 
 
 
 
 
 
db3de2a
0182177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
db3de2a
0182177
db3de2a
0182177
 
 
 
 
 
 
 
 
db3de2a
 
0182177
 
 
 
db3de2a
0182177
 
 
 
db3de2a
0182177
 
 
 
db3de2a
0182177
 
 
 
db3de2a
0182177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
db3de2a
0182177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
db3de2a
 
0182177
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
import gradio as gr
from dataclasses import dataclass
from datetime import datetime
from typing import Dict, List, Optional, Tuple
import requests
from astral import LocationInfo
from astral.sun import sun
import os
from enum import Enum
import logging
import re
import random

# Configure logging
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)

@dataclass
class YearlyPrediction:
    year: int
    theme: str
    career: Dict[str, str]
    love: Dict[str, str]
    health: Dict[str, str]
    growth_potential: float
    harmony_level: float
    vitality_level: float

class PredictionThemes(Enum):
    ABUNDANCE = "ABUNDANCE"
    TRANSFORMATION = "TRANSFORMATION"
    GROWTH = "GROWTH"
    MANIFESTATION = "MANIFESTATION"

@dataclass
class LocationDetails:
    latitude: float
    longitude: float
    timezone: str
    city: str
    country: str

class PredictionDatabase:
    """Enhanced prediction database with more detailed data."""
    
    def __init__(self):
        self._initialize_databases()

    def _initialize_databases(self):
        self.focus_areas = [
            "Technology", "Politics", "Sports", "Business", "Education",
            "Arts", "Science", "Healthcare", "Finance", "Media"
        ]
        
        self.opportunities = [
            "Lead major initiative", "Career advancement", 
            "Start new venture", "Launch innovative project"
        ]

        self.love_developments = [
            "Meaningful commitment", "Deeper emotional connection",
            "Exciting shared adventures", "Strong emotional bonds"
        ]

        self.activities = [
            "Creative Projects", "Travel", "Sports",
            "Cultural Events", "Social Gatherings"
        ]

        self.health_focuses = [
            "Active lifestyle habits", "Regular exercise routine",
            "Stress-relief techniques", "Balanced nutrition"
        ]

        self.health_practices = [
            "Leadership Roles", "High-Intensity Training",
            "Mindfulness Practice", "Team Sports"
        ]

class PredictionGenerator:
    """Enhanced prediction generator with detailed formatting."""
    
    def __init__(self):
        self.db = PredictionDatabase()

    def generate_five_year_prediction(self, name: str, start_year: int, 
                                    birth_time: str, location: LocationDetails) -> str:
        predictions = []
        for year in range(start_year, start_year + 5):
            predictions.append(self._generate_yearly_prediction(year))

        return self._format_comprehensive_prediction(
            name, birth_time, location, predictions
        )

    def _generate_yearly_prediction(self, year: int) -> YearlyPrediction:
        """Generate detailed prediction for a specific year."""
        return YearlyPrediction(
            year=year,
            theme=random.choice(list(PredictionThemes)).value,
            career={
                "focus_area": random.choice(self.db.focus_areas),
                "opportunity": random.choice(self.db.opportunities),
                "peak_months": ", ".join(sorted(random.sample([
                    "January", "February", "March", "April", "May", "June",
                    "July", "August", "September", "October", "November", "December"
                ], 3)))
            },
            love={
                "development": random.choice(self.db.love_developments),
                "activity": random.choice(self.db.activities),
                "peak_months": ", ".join(sorted(random.sample([
                    "January", "February", "March", "April", "May", "June",
                    "July", "August", "September", "October", "November", "December"
                ], 2)))
            },
            health={
                "focus": random.choice(self.db.health_focuses),
                "practice": random.choice(self.db.health_practices),
                "peak_months": ", ".join(sorted(random.sample([
                    "January", "February", "March", "April", "May", "June",
                    "July", "August", "September", "October", "November", "December"
                ], 3)))
            },
            growth_potential=random.uniform(80, 98),
            harmony_level=random.uniform(80, 99),
            vitality_level=random.uniform(85, 97)
        )

    def _format_comprehensive_prediction(self, name: str, birth_time: str, 
                                      location: LocationDetails, 
                                      predictions: List[YearlyPrediction]) -> str:
        """Format the comprehensive prediction with all details."""
        output = f"""๐ŸŒŸ COMPREHENSIVE LIFE PATH PREDICTION FOR {name.upper()}  ๐ŸŒŸ
=========================================================

๐Ÿ“Š CORE NUMEROLOGICAL PROFILE
----------------------------
Birth Time: {birth_time}
Location: {location.city} ({location.country})

๐Ÿ”ฎ 5-YEAR LIFE FORECAST (Year by Year Analysis)
---------------------------------------------

"""
        # Add yearly predictions
        for pred in predictions:
            output += f"""
{pred.year} - YEAR OF {pred.theme}
-------------------------------------------------------------------

๐Ÿ’ผ Career Path:
โ€ข Focus Area: {pred.career['focus_area']}
โ€ข Key Opportunity: {pred.career['opportunity']}
โ€ข Peak Months: {pred.career['peak_months']}
โ€ข Growth Potential: {pred.growth_potential:.1f}%

โค๏ธ Love & Relationships:
โ€ข Key Development: {pred.love['development']}
โ€ข Recommended Activity: {pred.love['activity']}
โ€ข Romantic Peaks: {pred.love['peak_months']}
โ€ข Harmony Level: {pred.harmony_level:.1f}%

๐ŸŒฟ Health & Wellness:
โ€ข Focus Area: {pred.health['focus']}
โ€ข Recommended Practice: {pred.health['practice']}
โ€ข Peak Vitality Months: {pred.health['peak_months']}
โ€ข Vitality Level: {pred.vitality_level:.1f}%
"""

        # Add final sections
        output += """
๐ŸŒˆ INTEGRATED LIFE HARMONY ANALYSIS
---------------------------------
Your numbers reveal a beautiful synchronicity between career growth, 
personal relationships, and health developments. Each aspect supports 
and enhances the others, creating a harmonious life trajectory.

Key Integration Points:
โ€ข Career achievements positively impact relationship confidence
โ€ข Relationship growth supports emotional and physical well-being
โ€ข Health improvements boost career performance and relationship energy

๐Ÿ’ซ GUIDANCE FOR OPTIMAL GROWTH
----------------------------
1. Embrace each opportunity for growth across all life areas
2. Maintain balance between professional ambitions and personal life
3. Practice self-care to sustain energy for both career and relationships
4. Trust your intuition in making life decisions
5. Stay open to unexpected opportunities and connections

๐ŸŒŸ FINAL WISDOM
--------------
This five-year period shows exceptional promise for personal growth,
professional achievement, and meaningful relationships. Your unique
numerical vibration suggests a time of positive transformation and
fulfilling experiences across all life areas."""

        return output

def create_gradio_interface() -> gr.Interface:
    """Create and configure the Gradio interface."""
    
    def predict(name: str, dob: str, birth_time: str, birth_place: str) -> str:
        """Main prediction function for Gradio interface."""
        try:
            # Validate inputs
            error = validate_inputs(name, dob, birth_time, birth_place)
            if error:
                return error

            # Create location details (simplified for example)
            location = LocationDetails(
                latitude=27.6094,  # Example coordinates for Sikar
                longitude=75.1398,
                timezone="Asia/Kolkata",
                city=birth_place.split(',')[0].strip(),
                country="India" if "India" in birth_place else "Unknown"
            )

            # Generate prediction
            generator = PredictionGenerator()
            current_year = datetime.now().year
            prediction = generator.generate_five_year_prediction(
                name, current_year, birth_time, location
            )
            
            return prediction
        except Exception as e:
            logger.error(f"Error in prediction: {e}")
            return f"An error occurred: {str(e)}"

    return gr.Interface(
        fn=predict,
        inputs=[
            gr.Textbox(label="Full Name", placeholder="Enter your full name"),
            gr.Textbox(label="Date of Birth (YYYY-MM-DD)", placeholder="e.g., 1990-05-15"),
            gr.Textbox(label="Birth Time (HH:MM)", placeholder="e.g., 14:30"),
            gr.Textbox(label="Birth Place", placeholder="e.g., Sikar, Rajasthan, India")
        ],
        outputs=gr.Textbox(label="Your Comprehensive Life Path Prediction"),
        title="๐ŸŒŸ Quantum Life Path Prediction System",
        description="Discover your quantum numerological blueprint!"
    )

def validate_inputs(name: str, dob: str, birth_time: str, birth_place: str) -> Optional[str]:
    """Validate all input parameters."""
    if not all([name, dob, birth_time, birth_place]):
        return "All fields are required."
    if not name.strip():
        return "Name cannot be empty."
    if not re.match(r"^\d{2}:\d{2}$", birth_time):
        return "Invalid time format. Use HH:MM."
    try:
        datetime.strptime(dob, "%Y-%m-%d")
    except ValueError:
        return "Invalid date format. Use YYYY-MM-DD."
    return None

if __name__ == "__main__":
    interface = create_gradio_interface()
    interface.launch(debug=True)