-
-
Notifications
You must be signed in to change notification settings - Fork 114
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Chiron has been made deactivatable. Chiron calculation can create some issues with the Swiss Ephemeris when the date is too far in the past. By default is allways active. - Created new enum module, to be expanded in the future. - Reformatted utils module.
- Loading branch information
1 parent
06559f1
commit 3953306
Showing
6 changed files
with
104 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
from enum import Enum | ||
|
||
|
||
class Planets(Enum): | ||
SUN = "Sun" | ||
MOON = "Moon" | ||
MERCURY = "Mercury" | ||
VENUS = "Venus" | ||
MARS = "Mars" | ||
JUPITER = "Jupiter" | ||
SATURN = "Saturn" | ||
URANUS = "Uranus" | ||
NEPTUNE = "Neptune" | ||
PLUTO = "Pluto" | ||
CHIRON = "Chiron" | ||
TRUE_NODE = "True_Node" | ||
MEAN_NODE = "Mean_Node" | ||
|
||
|
||
class Aspects(Enum): | ||
CONJUNCTION = "Conjunction" | ||
SEXTILE = "Sextile" | ||
SEMI_SEXTILE = "Semi-Sextile" | ||
SQUARE = "Square" | ||
TRINE = "Trine" | ||
OPPOSITION = "Opposition" | ||
QUINCUNX = "Quincunx" | ||
NONE = None | ||
QUINTILE = "Quintile" | ||
BIQUINTILE = "Biquintile" | ||
OCTILE = "Octile" | ||
TRIOCTILE = "Trioctile" | ||
DECILE = "Decile" | ||
TRIDECILE = "Tridecile" | ||
SESQUIQUADRATE = "Sesquiquadrate" | ||
|
||
|
||
class Signs(Enum): | ||
ARI = "Ari" | ||
TAU = "Tau" | ||
GEM = "Gem" | ||
CAN = "Can" | ||
LEO = "Leo" | ||
VIR = "Vir" | ||
LIB = "Lib" | ||
SCO = "Sco" | ||
SAG = "Sag" | ||
CAP = "Cap" | ||
AQU = "Aqu" | ||
PIS = "Pis" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters