Replies: 1 comment 1 reply
-
You should do it like this: from kerykeion import AstrologicalSubject, SynastryAspects
subject = AstrologicalSubject("Kanye", 1977, 6, 8, 8, 45, "Atlanta", "USA")
transits_today = AstrologicalSubject(name = "Kanye", city="Atlanta", nation = "USA")
aspects_today = SynastryAspects(subject, transits_today)
relevant_aspects= aspects_today.relevant_aspects
print(relevant_aspects) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi @g-battaglia, love your project, thanks so much for your hard work on this!
Once you have generated today's transit through the AstrologicalSubject function, how can you assess the aspects between transiting planets and natal planets (e.g transiting Jupiter trine natal Sun)?
I've tried using the NatalAspects function applied to today's transit but doesn't seem to be generating the right results.
Please see code below.
Beta Was this translation helpful? Give feedback.
All reactions