According to these astrology chart ny rahu is in which house
What does Rahu in 4th house mean for home and family?
What does Ketu in 10th house mean for my career?
| Good Fit | Why |
|---|---|
| Research / Investigation | Deep, solitary focus - Ketu's strength |
| Spirituality / Astrology / Healing | Ketu's natural domain |
| Technology / Data / Analytics | Precision and behind-the-scenes work |
| Writing / Teaching | Sharing knowledge without needing the spotlight |
| Medicine / Surgery | Ketu rules cutting and precision |
| Art / Film / Music | Creative work that has meaning beyond money |
What other planets in my chart affect my career prospects?
| Planet | House | Role in Career |
|---|---|---|
| Ke (Ketu) | 10th | Career lord / main career planet |
| Sa (Saturn) | 10th/11th area (top) | Discipline, hard work, delays |
| Ju (Jupiter) | 12th | Foreign work, spirituality |
| Ma (Mars) | 12th | Energy, aggression, foreign lands |
| Su (Sun) | 11th | Gains, authority, income |
| Me (Mercury) | 12th | Communication, intellect, foreign |
| Mo (Moon) | 8th | Transformation, hidden matters |
| Ve (Venus) | 10th area | Creativity, luxury professions |
| Ra (Rahu) | 4th | Home axis, drives ambition |
What compatibility do these placements have with your birth time?
Generate a career guidebook based on your chart
mkdir -p /tmp/workspace/astro-guidebook
~/astro-guidebook/generate_guidebook.py
from docx import Document
from docx.shared import Pt, Inches, RGBColor
from docx.enum.text import WD_ALIGN_PARAGRAPH
from docx.oxml.ns import qn
from docx.oxml import OxmlElement
doc = Document()
# ── Page margins ──────────────────────────────────────────────────────────────
section = doc.sections[0]
section.top_margin = Inches(1.0)
section.bottom_margin = Inches(1.0)
section.left_margin = Inches(1.2)
section.right_margin = Inches(1.2)
# ── Default style ─────────────────────────────────────────────────────────────
normal = doc.styles["Normal"]
normal.font.name = "Georgia"
normal.font.size = Pt(11)
# ── Helper: coloured heading ──────────────────────────────────────────────────
GOLD = RGBColor(0xB8, 0x86, 0x0B) # dark goldenrod
NAVY = RGBColor(0x1A, 0x23, 0x5E)
MAROON = RGBColor(0x7B, 0x00, 0x1E)
def add_heading(text, level=1, color=NAVY):
h = doc.add_heading(text, level=level)
h.alignment = WD_ALIGN_PARAGRAPH.LEFT
for run in h.runs:
run.font.color.rgb = color
run.font.name = "Georgia"
return h
def add_body(text, bold=False, color=None, size=11):
p = doc.add_paragraph()
run = p.add_run(text)
run.bold = bold
run.font.size = Pt(size)
run.font.name = "Georgia"
if color:
run.font.color.rgb = color
return p
def add_bullet(text, bold_prefix=None):
p = doc.add_paragraph(style="List Bullet")
if bold_prefix:
r1 = p.add_run(bold_prefix + " ")
r1.bold = True
r1.font.name = "Georgia"
r1.font.size = Pt(11)
r2 = p.add_run(text)
r2.font.name = "Georgia"
r2.font.size = Pt(11)
return p
def add_divider():
p = doc.add_paragraph()
pPr = p._p.get_or_add_pPr()
pBdr = OxmlElement("w:pBdr")
bottom = OxmlElement("w:bottom")
bottom.set(qn("w:val"), "single")
bottom.set(qn("w:sz"), "6")
bottom.set(qn("w:space"), "1")
bottom.set(qn("w:color"), "B8860B")
pBdr.append(bottom)
pPr.append(pBdr)
return p
def add_table_row(table, col1, col2, header=False):
row = table.add_row()
for i, text in enumerate([col1, col2]):
cell = row.cells[i]
cell.text = text
for para in cell.paragraphs:
for run in para.runs:
run.font.name = "Georgia"
run.font.size = Pt(10.5)
if header:
run.bold = True
run.font.color.rgb = RGBColor(0xFF, 0xFF, 0xFF)
if header:
tc = cell._tc
tcPr = tc.get_or_add_tcPr()
shd = OxmlElement("w:shd")
shd.set(qn("w:val"), "clear")
shd.set(qn("w:color"), "auto")
shd.set(qn("w:fill"), "1A235E")
tcPr.append(shd)
# ══════════════════════════════════════════════════════════════════════════════
# COVER PAGE
# ══════════════════════════════════════════════════════════════════════════════
doc.add_paragraph()
doc.add_paragraph()
title_p = doc.add_paragraph()
title_p.alignment = WD_ALIGN_PARAGRAPH.CENTER
r = title_p.add_run("YOUR VEDIC ASTROLOGY")
r.font.size = Pt(28)
r.font.bold = True
r.font.color.rgb = NAVY
r.font.name = "Georgia"
title_p2 = doc.add_paragraph()
title_p2.alignment = WD_ALIGN_PARAGRAPH.CENTER
r2 = title_p2.add_run("CAREER GUIDEBOOK")
r2.font.size = Pt(32)
r2.font.bold = True
r2.font.color.rgb = GOLD
r2.font.name = "Georgia"
doc.add_paragraph()
sub_p = doc.add_paragraph()
sub_p.alignment = WD_ALIGN_PARAGRAPH.CENTER
r3 = sub_p.add_run("Based on Your Lagna Chart Analysis")
r3.font.size = Pt(14)
r3.font.italic = True
r3.font.color.rgb = MAROON
r3.font.name = "Georgia"
doc.add_paragraph()
doc.add_paragraph()
# Planet summary box
planet_p = doc.add_paragraph()
planet_p.alignment = WD_ALIGN_PARAGRAPH.CENTER
r4 = planet_p.add_run(
"Key Placements: Ketu (10th) | Rahu (4th) | Saturn (10th) | "
"Sun (11th) | Jupiter (12th) | Mars (12th) | Mercury (12th) | Moon (8th) | Venus (10th)"
)
r4.font.size = Pt(10)
r4.font.italic = True
r4.font.color.rgb = RGBColor(0x55, 0x55, 0x55)
r4.font.name = "Georgia"
doc.add_paragraph()
doc.add_paragraph()
date_p = doc.add_paragraph()
date_p.alignment = WD_ALIGN_PARAGRAPH.CENTER
r5 = date_p.add_run("Generated: July 2026")
r5.font.size = Pt(10)
r5.font.color.rgb = RGBColor(0x88, 0x88, 0x88)
r5.font.name = "Georgia"
doc.add_page_break()
# ══════════════════════════════════════════════════════════════════════════════
# CHAPTER 1 - INTRODUCTION
# ══════════════════════════════════════════════════════════════════════════════
add_heading("Chapter 1: Understanding Your Career Blueprint", level=1, color=NAVY)
add_divider()
doc.add_paragraph()
add_body(
"Vedic astrology, known as Jyotisha, offers a precise map of your soul's intention for this lifetime. "
"Your birth chart is not a fixed destiny - it is a set of energies, tendencies, and karmic lessons "
"that shape how you experience the world, including your professional life.",
size=11
)
doc.add_paragraph()
add_body(
"This guidebook translates the planetary positions in your Lagna (birth) chart into practical, "
"actionable career insights. It covers your core career identity, your strengths and challenges, "
"the best professional fields for you, and how to work with your planetary energies across different "
"life phases.",
size=11
)
doc.add_paragraph()
add_heading("How to Use This Guidebook", level=2, color=MAROON)
add_bullet("Read each chapter in order for the full picture.")
add_bullet("Use the Career Compatibility Table in Chapter 4 to shortlist roles.")
add_bullet("Refer to the Life Phase Timeline in Chapter 6 to understand when key career shifts may occur.")
add_bullet("The remedies in Chapter 7 are optional but can support smoother professional progress.")
doc.add_paragraph()
# ══════════════════════════════════════════════════════════════════════════════
# CHAPTER 2 - CORE CAREER IDENTITY
# ══════════════════════════════════════════════════════════════════════════════
doc.add_page_break()
add_heading("Chapter 2: Your Core Career Identity", level=1, color=NAVY)
add_divider()
doc.add_paragraph()
add_heading("Ketu in the 10th House - The Expert Who Doubts Themselves", level=2, color=MAROON)
add_body(
"Ketu in the 10th house is one of the most profound career placements in Vedic astrology. "
"It indicates a soul that has accumulated deep professional expertise across past lives. "
"You arrive in this life with natural skill - but also with a detachment from status and recognition "
"that can make you underestimate your own abilities.",
size=11
)
doc.add_paragraph()
add_body("Key traits this placement gives you:", bold=True)
add_bullet("Mastery", "You reach expert level faster than peers in any field you commit to.")
add_bullet("Indifference to praise", "You do not need applause to work well - but you may not market yourself enough.")
add_bullet("Unconventional path", "Your career journey will not follow the expected straight line.")
add_bullet("Deep focus", "You work best alone or in small teams on complex, niche problems.")
add_bullet("Sudden pivots", "You may abandon successful positions when they feel meaningless - this is Ketu working.")
doc.add_paragraph()
add_heading("Rahu in the 4th House - The Ambition Behind the Scenes", level=2, color=MAROON)
add_body(
"Rahu in the 4th house creates the axis that defines your life's primary tension: "
"society pushes you toward career achievement (10th house) but your soul is really seeking "
"inner peace, emotional security, and a stable home base (4th house). "
"The key insight is that chasing career status for its own sake will feel hollow. "
"Career success comes most naturally when you are emotionally grounded.",
size=11
)
doc.add_paragraph()
# ══════════════════════════════════════════════════════════════════════════════
# CHAPTER 3 - PLANETARY CAREER INFLUENCES
# ══════════════════════════════════════════════════════════════════════════════
doc.add_page_break()
add_heading("Chapter 3: All Planets and Their Career Influence", level=1, color=NAVY)
add_divider()
doc.add_paragraph()
planets = [
(
"Saturn (Sa) - 10th House: The Slow Builder",
GOLD,
[
"Saturn is the planet of discipline, karma, and long-term results. In your 10th house, "
"it is one of the most powerful career placements possible - but it demands patience.",
"",
"What this means for you:",
],
[
("Early delays", "Career progress before age 30-35 will feel slow and frustrating. This is normal for this placement."),
("Late bloomer", "Your most significant professional achievements come after 35, and continue to grow through your 40s and 50s."),
("Reputation builder", "Saturn builds a rock-solid professional reputation over time. You become someone others trust completely."),
("Hard work pays", "No shortcuts - but every effort you make compounds. Long-term thinking is your superpower."),
("Authority roles", "You are suited for leadership, management, or senior specialist positions - roles that require gravity and reliability."),
]
),
(
"Sun (Su) - 11th House: The Income Generator",
GOLD,
[
"Sun in the 11th house is a highly favorable placement for career income and social achievement. "
"The 11th house rules gains, networks, and fulfillment of ambitions.",
"",
"What this means for you:",
],
[
("Strong earning potential", "You have the ability to generate significant income through your professional efforts."),
("Influential network", "You attract powerful, well-placed contacts who open doors for you."),
("Goal achievement", "Whatever career goals you set, you have the solar energy to reach them - provided you stay focused."),
("Recognition comes", "Unlike Ketu's detachment, Sun here gives you moments of genuine public recognition and honor."),
("Leadership in groups", "You work well leading teams, associations, or organizational initiatives."),
]
),
(
"Jupiter (Ju) - 12th House: The Foreign Fortune",
GOLD,
[
"Jupiter in the 12th is the classic placement for success in foreign lands, spiritual fields, "
"and behind-the-scenes work. The 12th house is not unlucky - it is the house of moksha, "
"isolation, and hidden power.",
"",
"What this means for you:",
],
[
("Foreign opportunities", "Career growth through international environments - foreign employers, clients, or working abroad."),
("Spiritual or educational work", "Jupiter here thrives in teaching, counseling, research, or spiritual fields."),
("Institutional settings", "Hospitals, universities, NGOs, research institutes, or government organizations suit you."),
("Expenditure awareness", "Income comes but also flows out - conscious financial management is needed."),
("Inner wisdom", "You have access to deep intuitive wisdom that becomes a professional asset over time."),
]
),
(
"Mars (Ma) - 12th House: The Hidden Drive",
GOLD,
[
"Mars in the 12th gives fierce energy and drive that operates largely behind the scenes. "
"This is the placement of the disciplined warrior who works in private.",
"",
"What this means for you:",
],
[
("Private ambition", "Your drive and competitive edge are real but not always visible to others."),
("Foreign work", "Mars reinforces the 12th-house theme of working in foreign environments."),
("Physical or technical fields", "Medicine, engineering, military, athletics, or any field requiring precision and stamina."),
("Hidden conflicts", "Watch for workplace disputes that simmer under the surface - address them early."),
("Spiritual discipline", "Mars in 12th can channel beautifully into yoga, martial arts, or disciplined spiritual practice."),
]
),
(
"Mercury (Me) - 12th House: The Analytical Mind",
GOLD,
[
"Mercury in the 12th gives a sharp, precise intellect that works best in depth and solitude. "
"The star symbol next to Mercury in your chart (Me*) suggests it may be combust or in a special state - "
"this intensifies both its gifts and its challenges.",
"",
"What this means for you:",
],
[
("Research and analysis", "You think deeply and precisely - ideal for research, data, investigation, or writing."),
("Foreign communication", "Translation, international business communication, or writing for global audiences."),
("Contract caution", "Read every professional agreement carefully - Mercury here can create miscommunication in paperwork."),
("Introspective thinker", "Your best ideas come in quiet, solitary environments rather than noisy open offices."),
("Niche expertise", "You become a specialist rather than a generalist - and that is where your value lies."),
]
),
(
"Moon (Mo) - 8th House: The Transformer",
GOLD,
[
"Moon in the 8th house is an intense placement that brings emotional depth, intuition, "
"and the capacity for transformation through professional challenges.",
"",
"What this means for you:",
],
[
("Career upheavals", "Expect sudden shifts in professional direction - these are transformations, not failures."),
("Investigative instinct", "You have a natural ability to uncover what is hidden - research, psychology, or forensics suit you."),
("Emotional resilience", "Career challenges test you deeply, but each one makes you significantly stronger."),
("Occult or healing", "Interest in and aptitude for psychology, astrology, healing, or metaphysical fields."),
("Financial depth", "The 8th house rules other people's money - investment, insurance, inheritance, or financial management."),
]
),
(
"Venus (Ve) - 10th House Area: The Creative Professional",
GOLD,
[
"Venus near the 10th house adds charm, creativity, and aesthetic sensibility to your professional persona.",
"",
"What this means for you:",
],
[
("Creative edge", "You bring a refined, aesthetic quality to your work that others notice and value."),
("People skills", "Venus gives you the ability to build positive professional relationships with ease."),
("Arts and media", "Fashion, design, music, film, hospitality, or luxury goods are natural career fits."),
("Diplomatic ability", "You can negotiate and smooth over conflicts - a valuable workplace skill."),
("Professional image", "You present yourself well and make a favorable impression in professional settings."),
]
),
]
for planet_title, title_color, desc_lines, bullets in planets:
add_heading(planet_title, level=2, color=MAROON)
for line in desc_lines:
if line == "":
doc.add_paragraph()
elif line.endswith(":"):
add_body(line, bold=True)
else:
add_body(line, size=11)
for prefix, text in bullets:
add_bullet(text, bold_prefix=prefix)
doc.add_paragraph()
# ══════════════════════════════════════════════════════════════════════════════
# CHAPTER 4 - CAREER COMPATIBILITY TABLE
# ══════════════════════════════════════════════════════════════════════════════
doc.add_page_break()
add_heading("Chapter 4: Career Compatibility Table", level=1, color=NAVY)
add_divider()
doc.add_paragraph()
add_body(
"The following table rates career fields based on how well they align with your planetary placements. "
"Ratings are: Excellent / Good / Moderate / Avoid.",
size=11
)
doc.add_paragraph()
table = doc.add_table(rows=1, cols=3)
table.style = "Table Grid"
# Header
hdr = table.rows[0].cells
for i, htext in enumerate(["Career Field", "Compatibility", "Key Planets Supporting"]):
hdr[i].text = htext
for para in hdr[i].paragraphs:
for run in para.runs:
run.bold = True
run.font.name = "Georgia"
run.font.size = Pt(10.5)
run.font.color.rgb = RGBColor(0xFF, 0xFF, 0xFF)
tc = hdr[i]._tc
tcPr = tc.get_or_add_tcPr()
shd = OxmlElement("w:shd")
shd.set(qn("w:val"), "clear")
shd.set(qn("w:color"), "auto")
shd.set(qn("w:fill"), "1A235E")
tcPr.append(shd)
career_data = [
("Research / Data Analysis", "Excellent", "Mercury (12th), Ketu (10th), Moon (8th)"),
("International Business", "Excellent", "Jupiter (12th), Mars (12th), Sun (11th)"),
("Medicine / Surgery", "Excellent", "Mars (12th), Ketu (10th), Saturn (10th)"),
("Astrology / Spiritual Counseling", "Excellent", "Ketu (10th), Moon (8th), Jupiter (12th)"),
("Technology / Engineering", "Excellent", "Mars (12th), Mercury (12th), Saturn (10th)"),
("Writing / Publishing", "Good", "Mercury (12th), Jupiter (12th)"),
("Psychology / Therapy", "Good", "Moon (8th), Jupiter (12th), Ketu (10th)"),
("Academia / Teaching", "Good", "Jupiter (12th), Mercury (12th), Sun (11th)"),
("Finance / Investment", "Good", "Moon (8th), Saturn (10th), Sun (11th)"),
("Arts / Film / Music", "Good", "Venus (10th), Jupiter (12th)"),
("Law / Administration", "Good", "Saturn (10th), Sun (11th)"),
("NGO / Social Work", "Good", "Jupiter (12th), Venus (10th)"),
("Retail / Sales (frontline)", "Moderate", "Venus (10th), Sun (11th)"),
("Politics / Government (high-profile)", "Moderate","Sun (11th), Saturn (10th) - slow path"),
("Entertainment / Acting", "Moderate", "Venus (10th) - possible but not primary fit"),
("Fast-paced trading / speculation", "Avoid", "Moon (8th) creates volatility risk"),
]
for field, compat, planets_col in career_data:
row = table.add_row()
row.cells[0].text = field
row.cells[1].text = compat
row.cells[2].text = planets_col
# Color-code compatibility
color_map = {"Excellent": "1A7A1A", "Good": "0050A0", "Moderate": "8B6000", "Avoid": "8B0000"}
fill = color_map.get(compat, "333333")
for i, cell in enumerate(row.cells):
for para in cell.paragraphs:
for run in para.runs:
run.font.name = "Georgia"
run.font.size = Pt(10)
if i == 1: # compatibility column
run.font.color.rgb = RGBColor(
int(fill[:2],16), int(fill[2:4],16), int(fill[4:],16)
)
run.bold = True
doc.add_paragraph()
# ══════════════════════════════════════════════════════════════════════════════
# CHAPTER 5 - STRENGTHS & CHALLENGES
# ══════════════════════════════════════════════════════════════════════════════
doc.add_page_break()
add_heading("Chapter 5: Your Career Strengths and Challenges", level=1, color=NAVY)
add_divider()
doc.add_paragraph()
add_heading("Core Strengths", level=2, color=MAROON)
strengths = [
("Natural expertise", "Ketu in the 10th means you develop mastery faster than average in your chosen field."),
("Powerful network", "Sun in the 11th gives you the ability to attract influential contacts who advance your career."),
("Analytical depth", "Mercury and Moon in deep houses give you research and investigative skills few can match."),
("Long-term credibility", "Saturn in the 10th builds an unshakeable professional reputation over time."),
("Intuitive intelligence", "Moon in the 8th and Jupiter in the 12th give strong gut instincts about situations and people."),
("International appeal", "Multiple 12th house planets make you effective in cross-cultural or global environments."),
("Creative presence", "Venus near the 10th adds a polish and charisma to your professional image."),
("Resilience", "You have been tested and transformed multiple times - setbacks do not end you, they refine you."),
]
for s, desc in strengths:
add_bullet(desc, bold_prefix=s)
doc.add_paragraph()
add_heading("Key Challenges to Navigate", level=2, color=MAROON)
challenges = [
("Undervaluing yourself", "Ketu's detachment can make you undercharge, underestimate your skills, or stay in roles below your level."),
("Early-career frustration", "Saturn demands patience before age 35. Do not measure early progress against peers with faster-rising charts."),
("Abandoning good paths", "Ketu can cause you to leave promising careers when they feel hollow. Discern between genuine growth moves and avoidance."),
("Poor self-promotion", "You may resist marketing yourself or networking aggressively. This needs conscious effort."),
("Workplace conflict", "Mars in the 12th creates hidden tensions. Address disagreements early rather than letting them fester."),
("Financial flow", "Jupiter and Mars in the 12th mean money can leave as fast as it arrives. Budget and invest deliberately."),
("Over-isolation", "Multiple 12th house planets can push you toward working alone too much - collaboration has value too."),
("Searching for meaning", "The Rahu-Ketu axis creates existential questioning about career purpose. This is a feature, not a flaw."),
]
for c, desc in challenges:
add_bullet(desc, bold_prefix=c)
# ══════════════════════════════════════════════════════════════════════════════
# CHAPTER 6 - LIFE PHASE TIMELINE
# ══════════════════════════════════════════════════════════════════════════════
doc.add_page_break()
add_heading("Chapter 6: Career Timeline by Life Phase", level=1, color=NAVY)
add_divider()
doc.add_paragraph()
add_body(
"Vedic astrology divides life into planetary periods called Dashas. "
"The following timeline outlines the general career themes for each life phase based on your planetary placements. "
"(Note: Exact Dasha timing depends on your precise birth time and date.)",
size=11
)
doc.add_paragraph()
phases = [
("Ages 0-25: Foundation Phase",
"This period is about education, skill-building, and discovering what genuinely interests you. "
"Do not be concerned if your career direction feels unclear - this is intentional. "
"Focus on developing deep expertise in at least one area. Travel or study abroad if possible."),
("Ages 25-35: The Testing Phase",
"Saturn's influence creates delays, obstacles, and lessons. You may feel stuck while peers advance. "
"This is not failure - it is Saturn building your foundation. Stay consistent, refine your skills, "
"and avoid shortcuts. The work you do in this decade pays dividends for decades to come."),
("Ages 35-45: The Breakthrough Phase",
"Saturn begins to reward your patience. Career breakthroughs, recognition, and significant income gains "
"become possible. Sun in the 11th activates your network powerfully. This is the decade to step into "
"leadership roles, launch independent ventures, or establish yourself as a recognized expert."),
("Ages 45-55: The Expansion Phase",
"Jupiter in the 12th often activates foreign opportunities, spiritual work, or large institutional roles "
"in this phase. Your reputation (built by Saturn) opens major doors. This is also a time when "
"Ketu's wisdom deepens - you know what truly matters and are no longer distracted by hollow status."),
("Ages 55+: The Legacy Phase",
"This is the phase of teaching, mentoring, and leaving a meaningful professional legacy. "
"Moon in the 8th and Ketu in the 10th both point toward a rich inner life and the sharing of "
"accumulated wisdom. Many with your chart configuration find their most fulfilling work in this phase."),
]
for phase_title, phase_desc in phases:
add_heading(phase_title, level=2, color=MAROON)
add_body(phase_desc, size=11)
doc.add_paragraph()
# ══════════════════════════════════════════════════════════════════════════════
# CHAPTER 7 - PRACTICAL REMEDIES & TIPS
# ══════════════════════════════════════════════════════════════════════════════
doc.add_page_break()
add_heading("Chapter 7: Practical Career Tips and Vedic Remedies", level=1, color=NAVY)
add_divider()
doc.add_paragraph()
add_heading("Practical Career Tips", level=2, color=MAROON)
tips = [
("Invest in deep skills", "Choose depth over breadth. Becoming the best at one niche area will serve you far more than spreading thin across many fields."),
("Market yourself deliberately", "Ketu makes self-promotion feel unnatural. Schedule time specifically for networking, updating your portfolio, and making your work visible."),
("Seek international exposure", "Even short foreign assignments, international clients, or cross-cultural projects will significantly boost your career trajectory."),
("Work in meaningful settings", "Money without meaning will feel empty. Prioritize organizations whose mission resonates with you, even if the pay is slightly less."),
("Be patient with the timeline", "Saturn in the 10th makes careers slow to start. Trust the process. Your best years professionally are after 35."),
("Build an emergency fund", "With multiple 12th-house planets, financial outflows are common. A 6-month emergency fund gives you the freedom to make bold career moves."),
("Find mentors", "Jupiter in the 12th benefits enormously from wise older mentors, especially those connected to foreign or spiritual fields."),
("Address conflicts early", "Mars in the 12th creates simmering workplace tensions. Speak up early and diplomatically rather than letting resentment build."),
]
for prefix, text in tips:
add_bullet(text, bold_prefix=prefix)
doc.add_paragraph()
add_heading("Vedic Remedies for Career Support", level=2, color=MAROON)
add_body(
"These are traditional Vedic suggestions. They are optional and should be approached with genuine intention rather than mechanical ritual.",
size=10, color=RGBColor(0x66, 0x66, 0x66)
)
doc.add_paragraph()
remedies = [
("For Ketu (10th house)", "Meditate regularly. Work with teachers or spiritual guides. Donate to organizations that help the underprivileged. Wear a cat's eye (lehsunia) gemstone after consulting an astrologer."),
("For Saturn (10th house)", "Serve the elderly or underprivileged on Saturdays. Maintain discipline and routine. Avoid dishonesty in professional dealings - Saturn punishes this severely. Blue sapphire (neelam) can be worn after proper consultation."),
("For Jupiter (12th house)", "Study sacred texts or philosophy. Teach or mentor others freely. Donate to educational institutions. Yellow sapphire (pukhraj) may strengthen Jupiter."),
("For Moon (8th house)", "Keep a calm, stable domestic environment. Practice meditation or breathwork. Pearl (moti) or moonstone may support emotional stability."),
("General practice", "Chant the Gayatri Mantra daily at sunrise. Maintain a gratitude journal. Offer water to the rising sun each morning."),
]
for prefix, text in remedies:
add_bullet(text, bold_prefix=prefix)
# ══════════════════════════════════════════════════════════════════════════════
# CHAPTER 8 - SUMMARY
# ══════════════════════════════════════════════════════════════════════════════
doc.add_page_break()
add_heading("Chapter 8: Your Career in One Page", level=1, color=NAVY)
add_divider()
doc.add_paragraph()
add_body(
"Your chart describes a person of genuine depth, unusual expertise, and a soul that is not satisfied "
"with career success for its own sake. The planets paint this picture clearly:",
size=11
)
doc.add_paragraph()
summary_points = [
"Ketu in the 10th makes you a natural expert who must learn to value and market their own abilities.",
"Saturn in the 10th demands patience but rewards it with lasting, respected professional achievement.",
"Sun in the 11th gives you income power and the ability to attract a powerful network.",
"Jupiter, Mars, and Mercury in the 12th point strongly toward foreign, research, or behind-the-scenes work.",
"Moon in the 8th adds investigative depth and the resilience to transform through career upheavals.",
"Venus near the 10th adds creative polish and interpersonal charm to your professional persona.",
"The Rahu-Ketu axis (4th-10th) reminds you that emotional peace at home is the foundation of career success.",
]
for point in summary_points:
add_bullet(point)
doc.add_paragraph()
add_body(
"The single most important piece of guidance your chart offers is this: ",
bold=True, size=12
)
add_body(
"Do not chase status. Chase meaning. When your work genuinely serves others and uses your deepest skills, "
"the recognition, income, and career satisfaction will follow naturally. "
"Your chart does not promise a fast rise - it promises a deeply worthwhile one.",
size=12
)
doc.add_paragraph()
add_divider()
doc.add_paragraph()
closing_p = doc.add_paragraph()
closing_p.alignment = WD_ALIGN_PARAGRAPH.CENTER
r_close = closing_p.add_run(
"This guidebook is for reflective and informational purposes.\n"
"Consult a qualified Jyotisha practitioner for personalized guidance."
)
r_close.font.size = Pt(9)
r_close.font.italic = True
r_close.font.color.rgb = RGBColor(0x88, 0x88, 0x88)
r_close.font.name = "Georgia"
# ══════════════════════════════════════════════════════════════════════════════
# SAVE
# ══════════════════════════════════════════════════════════════════════════════
output_path = "/tmp/workspace/astro-guidebook/Vedic_Career_Guidebook.docx"
doc.save(output_path)
print(f"Saved: {output_path}")
python3 /tmp/workspace/astro-guidebook/generate_guidebook.py
python3 -c " from docx import Document doc = Document('/tmp/workspace/astro-guidebook/Vedic_Career_Guidebook.docx') count = sum(1 for p in doc.paragraphs if p.text.strip()) print(f'Paragraphs with content: {count}') print('First 5 headings:') for p in doc.paragraphs: if 'Heading' in (p.style.name or '') and p.text.strip(): print(f' [{p.style.name}] {p.text}') " 2>&1 | head -30
Vedic Career Guidebook
Word Document · DOCX
| Chapter | Content |
|---|---|
| 1 - Introduction | How your birth chart maps to career, how to use the guidebook |
| 2 - Core Career Identity | Deep dive into Ketu (10th) and Rahu (4th) as your primary career axis |
| 3 - All Planets | Full analysis of Saturn, Sun, Jupiter, Mars, Mercury, Moon, and Venus |
| 4 - Compatibility Table | 16 career fields rated Excellent / Good / Moderate / Avoid with supporting planets |
| 5 - Strengths & Challenges | 8 core strengths and 8 key challenges spelled out clearly |
| 6 - Life Phase Timeline | Career themes for ages 0-25, 25-35, 35-45, 45-55, and 55+ |
| 7 - Tips & Remedies | 8 practical career tips plus traditional Vedic remedies for each planet |
| 8 - Summary | One-page synthesis of your entire career picture |