Get your first Vedic astrology calculation running in under 2 minutes!
pip install vedastroThat's it! No C++ compilers, no ephemeris files, no configuration needed.
Create a file called test.py:
from vedastro import *
# Set API key (free tier)
Calculate.SetAPIKey('FreeAPIUser')
# Define birth time
birth = Time("14:30 25/10/1992 +05:30",
GeoLocation("Mumbai", 72.8777, 19.0760))
# Get Sun sign
sun_sign = Calculate.PlanetSignName(PlanetName.Sun, birth)
print(f"Sun Sign: {sun_sign}")Run it:
python test.pyOutput:
Sun Sign: Libra
🎉 You just made your first Vedic astrology calculation!
Try the ready-to-run demo files:
# Simplest example (5 lines)
python demo_quick_start.py
# Get Sun/Moon/Ascendant
python demo_birth_chart_basics.py
# Check marriage compatibility
python demo_marriage_compatibility.py
# Today's planetary positions
python demo_current_planets.py
# Daily panchanga (Tithi, Nakshatra)
python demo_daily_panchanga.py- 📖 Read README.md - See all 596 calculations and features
- 🎓 Try Tutorials - TUTORIALS.md for step-by-step guides
- ❓ Check FAQ - FAQ.md for common questions
- 🚀 Build Something - Your first horoscope app!
- 💰 Upgrade - $1/month unlimited at vedastro.org/API.html
- Documentation: vedastro.org/API.html
- Issues: GitHub Issues
- Telegram: t.me/vedastro_org
You're ready to build! 🪐
Full README • Tutorials • FAQ • Website