Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
75bf46edc2 | ||
|
|
073bad2fe9 | ||
|
|
1e3e651ccb | ||
|
|
e4376a62f2 | ||
|
|
d1892a241f | ||
|
|
eb045fa94a |
+181
-87
@@ -9,13 +9,13 @@ import json,sys,webbrowser,importlib,tomllib
|
|||||||
|
|
||||||
def update():
|
def update():
|
||||||
print('checking for updates...')
|
print('checking for updates...')
|
||||||
with open(script_path()+'astrolobott.py','r') as file:
|
with open(script_path()+'astrolobot.py','r') as file:
|
||||||
current_script=file.read()
|
current_script=file.read()
|
||||||
urlretrieve(
|
urlretrieve(
|
||||||
'https://github.com/sugoidogo/astrolobot/releases/latest/download/astrolobot.py',
|
'https://github.com/sugoidogo/astrolobot/releases/latest/download/astrolobot.py',
|
||||||
script_path()+'astrolobot.py'
|
script_path()+'astrolobot.py'
|
||||||
)
|
)
|
||||||
with open(script_path()+'astrolobott.py','r') as file:
|
with open(script_path()+'astrolobot.py','r') as file:
|
||||||
updated_script=file.read()
|
updated_script=file.read()
|
||||||
if current_script==updated_script:
|
if current_script==updated_script:
|
||||||
print('up to date')
|
print('up to date')
|
||||||
@@ -23,15 +23,21 @@ def update():
|
|||||||
print('update downloaded, restart script to apply')
|
print('update downloaded, restart script to apply')
|
||||||
|
|
||||||
def dependency_setup():
|
def dependency_setup():
|
||||||
print('checking dependencies')
|
if not path.exists(script_path()+'pip'):
|
||||||
from pip._internal.cli.main import main as pip
|
print('installing dependencies')
|
||||||
pip(['install','-qq','pyswisseph','twitch.py','--target',script_path()+'pip'])
|
from pip._internal.cli.main import main as pip
|
||||||
|
pip(['install','-qq','pyswisseph','twitch.py','--target',script_path()+'pip'])
|
||||||
|
|
||||||
sys.path.append(script_path()+'pip')
|
sys.path.append(script_path()+'pip')
|
||||||
|
|
||||||
if not path.exists(script_path()+'ephe/seas_18.se1'):
|
if not path.exists(script_path()+'ephe/seas_18.se1'):
|
||||||
print('downloading database')
|
print('downloading database')
|
||||||
makedirs(script_path()+'ephe')
|
makedirs(script_path()+'ephe')
|
||||||
urlretrieve('https://github.com/aloistr/swisseph/raw/refs/heads/master/ephe/seas_18.se1',script_path()+'ephe/seas_18.se1')
|
urlretrieve('https://github.com/aloistr/swisseph/raw/refs/heads/master/ephe/seas_18.se1',script_path()+'ephe/seas_18.se1')
|
||||||
|
|
||||||
|
import swisseph as swe
|
||||||
|
swe.set_ephe_path(script_path()+'ephe/')
|
||||||
|
swe.set_sid_mode(swe.SIDM_LAHIRI)
|
||||||
|
|
||||||
print('dependencies ready')
|
print('dependencies ready')
|
||||||
|
|
||||||
@@ -47,18 +53,17 @@ def load_settings():
|
|||||||
'transits':'!transits',
|
'transits':'!transits',
|
||||||
}
|
}
|
||||||
|
|
||||||
zodiac_signs = ["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
|
def get_zodiac(angle):
|
||||||
"Libra", "Scorpio", "Sagittarius", "Capricorn", "Aquarius", "Pisces"]
|
zodiac = ["Aries", "Taurus", "Gemini", "Cancer", "Leo", "Virgo",
|
||||||
|
"Libra", "Scorpio", "Sagittarius", "Capricorn", "Aquarius", "Pisces"]
|
||||||
|
return zodiac[int(angle//30)]
|
||||||
|
|
||||||
def get_planet_info(date):
|
def is_retrograde(speed):
|
||||||
|
return speed<0
|
||||||
|
|
||||||
|
def get_positions_raw(date):
|
||||||
import swisseph as swe
|
import swisseph as swe
|
||||||
# make sure location is set in THIS thread
|
|
||||||
swe.set_ephe_path(script_path()+'ephe/')
|
|
||||||
swe.set_sid_mode(swe.SIDM_LAHIRI)
|
|
||||||
# Get current UTC time
|
|
||||||
julian_day = swe.julday(date.year, date.month, date.day)
|
julian_day = swe.julday(date.year, date.month, date.day)
|
||||||
|
|
||||||
# List of planets (Swiss Ephemeris IDs)
|
|
||||||
planets = {
|
planets = {
|
||||||
"The Sun": swe.SUN,
|
"The Sun": swe.SUN,
|
||||||
"The Moon": swe.MOON,
|
"The Moon": swe.MOON,
|
||||||
@@ -73,93 +78,164 @@ def get_planet_info(date):
|
|||||||
"Chiron": swe.CHIRON,
|
"Chiron": swe.CHIRON,
|
||||||
"North Node":swe.TRUE_NODE
|
"North Node":swe.TRUE_NODE
|
||||||
}
|
}
|
||||||
|
positions={}
|
||||||
|
|
||||||
retrograde_info = []
|
for planet_name, planet_id in planets.items():
|
||||||
positions_info = {}
|
position, _ = swe.calc_ut(julian_day, planet_id, swe.FLG_SPEED)
|
||||||
|
positions[planet_name]={
|
||||||
|
'angle':position[0],
|
||||||
|
'speed':position[3],
|
||||||
|
}
|
||||||
|
if planet_name=='North Node':
|
||||||
|
positions['South Node']={
|
||||||
|
'angle':(position[0]+180)%360,
|
||||||
|
'speed':position[3],
|
||||||
|
}
|
||||||
|
|
||||||
for name, planet_id in planets.items():
|
return positions
|
||||||
# Get planet position (longitude) and speed
|
|
||||||
pos, flags = swe.calc_ut(julian_day, planet_id, swe.FLG_SPEED)
|
|
||||||
|
|
||||||
# Check if retrograde (speed is negative)
|
def get_positions(date):
|
||||||
is_retrograde = pos[3] < 0
|
positions={}
|
||||||
if is_retrograde:
|
|
||||||
if name=='North Node':
|
|
||||||
pass
|
|
||||||
else:
|
|
||||||
retrograde_info.append(name)
|
|
||||||
|
|
||||||
# Get zodiac sign (0-360° -> Aries to Pisces)
|
for name, position_raw in get_positions_raw(date).items():
|
||||||
sign_num = int(pos[0] // 30) # 30° per sign
|
positions[name]={
|
||||||
positions_info[name]=sign_num
|
'zodiac':get_zodiac(position_raw['angle']),
|
||||||
|
'retrograde':is_retrograde(position_raw['speed']),
|
||||||
|
}
|
||||||
|
|
||||||
if name=='North Node':
|
return positions
|
||||||
# rotate sign 180 dagrees
|
|
||||||
south_pos=pos[0]+180
|
|
||||||
if(south_pos>360):
|
|
||||||
south_pos-=360
|
|
||||||
# calculate South Node sign
|
|
||||||
sign_num = int(south_pos // 30)
|
|
||||||
positions_info['South Node']=sign_num
|
|
||||||
|
|
||||||
return {
|
def get_list_formatted(in_list,isare=True):
|
||||||
'positions': positions_info,
|
match len(in_list):
|
||||||
'retrograde': retrograde_info,
|
case 0:
|
||||||
}
|
output='Nothing'
|
||||||
|
if isare:
|
||||||
|
output+=' is '
|
||||||
|
case 1:
|
||||||
|
output=in_list[0]
|
||||||
|
if isare:
|
||||||
|
output+=' is '
|
||||||
|
case 2:
|
||||||
|
output=' and '.join(in_list)
|
||||||
|
if isare:
|
||||||
|
output+=' are '
|
||||||
|
case _:
|
||||||
|
output=', '.join(in_list[0:-1])+', and '+in_list[-1]
|
||||||
|
if isare:
|
||||||
|
output+=' are '
|
||||||
|
return output
|
||||||
|
|
||||||
def get_planet_info_formatted(date=datetime.utcnow()):
|
def get_positions_formatted(date):
|
||||||
planets=get_planet_info(date)
|
retrograde_planets=[]
|
||||||
|
position_strings=[]
|
||||||
match len(planets['retrograde']):
|
|
||||||
case 0:
|
|
||||||
info=''
|
|
||||||
case 1:
|
|
||||||
info=planets['retrograde'][0]+' is in Retrograde\n'
|
|
||||||
case 2:
|
|
||||||
info=' and '.join(planets['retrograde'])+' are in Retrograde\n'
|
|
||||||
case _:
|
|
||||||
info=', '.join(planets['retrograde'][0:-1])+', and '+planets['retrograde'][-1]+' are in Retrograde\n'
|
|
||||||
|
|
||||||
positions_info=[]
|
for name, position in get_positions(date).items():
|
||||||
for planet,position in planets['positions'].items():
|
if(position['retrograde']):
|
||||||
positions_info.append(planet+' is in '+zodiac_signs[position])
|
retrograde_planets.append(name)
|
||||||
|
position_strings.append(name+' is in '+position['zodiac'])
|
||||||
|
|
||||||
|
positions_formatted=get_list_formatted(retrograde_planets)+'in Retrograde\n'
|
||||||
|
|
||||||
info+=', '.join(positions_info[0:2])+'\n'
|
positions_formatted+=', '.join(position_strings[0:2])+'\n'
|
||||||
info+=', '.join(positions_info[2:5])+'\n'
|
positions_formatted+=', '.join(position_strings[2:5])+'\n'
|
||||||
info+=', '.join(positions_info[5:8])+'\n'
|
positions_formatted+=', '.join(position_strings[5:8])+'\n'
|
||||||
info+=', '.join(positions_info[8:11])+'\n'
|
positions_formatted+=', '.join(position_strings[8:11])+'\n'
|
||||||
info+=', '.join(positions_info[11:13])+'\n'
|
positions_formatted+=', '.join(position_strings[11:13])+'\n'
|
||||||
return info
|
|
||||||
|
return positions_formatted
|
||||||
|
|
||||||
def get_transits():
|
def get_transits():
|
||||||
seconds_in_1_day=86400
|
seconds_in_1_day=86400
|
||||||
now=datetime.utcnow()
|
now=datetime.utcnow()
|
||||||
positions_today=get_planet_info(now)
|
positions_now=get_positions(now)
|
||||||
position_updates={}
|
transits={}
|
||||||
days=1
|
days=1
|
||||||
date_format='%b %d'
|
|
||||||
while len(position_updates)<12 and days<29:
|
while len(transits)<12 and days<29:
|
||||||
future_timestamp=now.timestamp()+(days*seconds_in_1_day)
|
future_timestamp=now.timestamp()+(days*seconds_in_1_day)
|
||||||
future_date=datetime.fromtimestamp(future_timestamp,timezone.utc)
|
future_date=datetime.fromtimestamp(future_timestamp,timezone.utc)
|
||||||
positions_future=get_planet_info(future_date)
|
positions_future=get_positions(future_date)
|
||||||
for planet in positions_future['retrograde']:
|
for name, position_future in positions_future.items():
|
||||||
if planet not in positions_today['retrograde'] and planet not in position_updates.keys():
|
position_now=positions_now[name]
|
||||||
position_updates[planet]='entering Retrograde on '+future_date.strftime(date_format)
|
if name not in transits and position_now!=position_future:
|
||||||
for planet in positions_today['retrograde']:
|
position_future['date']=future_date
|
||||||
if planet not in positions_future['retrograde'] and planet not in position_updates.keys():
|
if position_now['zodiac']==position_future['zodiac']:
|
||||||
position_updates[planet]='exiting Retrograde on '+future_date.strftime(date_format)
|
position_future['zodiac']=None
|
||||||
for planet in positions_future['positions']:
|
if position_now['retrograde']==position_future['retrograde']:
|
||||||
if positions_today['positions'][planet]!=positions_future['positions'][planet] and planet not in position_updates.keys():
|
position_future['retrograde']=None
|
||||||
position_updates[planet]='entering '+zodiac_signs[positions_future['positions'][planet]]+' on '+future_date.strftime(date_format)
|
transits[name]=position_future
|
||||||
days+=1
|
days+=1
|
||||||
return position_updates
|
|
||||||
|
return transits
|
||||||
|
|
||||||
def get_transits_formatted():
|
def get_transits_formatted():
|
||||||
transits=get_transits()
|
date_format='%b %d'
|
||||||
info=''
|
transits_formatted=''
|
||||||
for planet,transit in transits.items():
|
|
||||||
info+=planet+' is '+transit+'\n'
|
for name,transit in get_transits().items():
|
||||||
return info
|
if transit['zodiac']!=None:
|
||||||
|
transits_formatted+=name+' is entering '+transit['zodiac']+' on '+transit['date'].strftime(date_format)+'\n'
|
||||||
|
if transit['retrograde']==True:
|
||||||
|
transits_formatted+=name+' is entering Retrograde on '+transit['date'].strftime(date_format)+'\n'
|
||||||
|
if transit['retrograde']==False:
|
||||||
|
transits_formatted+=name+' is exiting Retrograde on '+transit['date'].strftime(date_format)+'\n'
|
||||||
|
|
||||||
|
return transits_formatted
|
||||||
|
|
||||||
|
def get_aspects(date, minor=False):
|
||||||
|
positions=get_positions_raw(date)
|
||||||
|
major_aspects={
|
||||||
|
'conjuction':{'angle':0,'orb':10.0},
|
||||||
|
'oposition':{'angle':180,'orb':10.0},
|
||||||
|
'trine':{'angle':120,'orb':10.0},
|
||||||
|
'square':{'angle':90,'orb':10.0},
|
||||||
|
'sextile':{'angle':60,'orb':5.0},
|
||||||
|
}
|
||||||
|
minor_aspects={
|
||||||
|
'semi-sextile':{'angle':30,'orb':1.5},
|
||||||
|
'inconjunct':{'angle':150,'orb':3},
|
||||||
|
'semi-square':{'angle':45,'orb':3},
|
||||||
|
'trioctile':{'angle':135,'orb':3},
|
||||||
|
'quintile':{'angle':72,'orb':1},
|
||||||
|
'biquintile':{'angle':144,'orb':1},
|
||||||
|
}
|
||||||
|
aspects={}
|
||||||
|
if minor:
|
||||||
|
selected_aspects=minor_aspects
|
||||||
|
else:
|
||||||
|
selected_aspects=major_aspects
|
||||||
|
|
||||||
|
for aname, aposition in positions.copy().items():
|
||||||
|
del positions[aname]
|
||||||
|
if aname.endswith('Node'):
|
||||||
|
continue
|
||||||
|
planet_aspects={}
|
||||||
|
for bname, bposition in positions.items():
|
||||||
|
angle_diff=abs(aposition['angle']-bposition['angle'])
|
||||||
|
for aspect_name,aspect in selected_aspects.items():
|
||||||
|
aspect_max=(aspect['angle']+aspect['orb'])%360
|
||||||
|
aspect_min=(aspect['angle']-aspect['orb'])%360
|
||||||
|
if aspect_min<angle_diff<aspect_max:
|
||||||
|
try:
|
||||||
|
planet_aspects[aspect_name].append(bname)
|
||||||
|
except KeyError:
|
||||||
|
planet_aspects[aspect_name]=[bname]
|
||||||
|
if len(planet_aspects)!=0:
|
||||||
|
aspects[aname]=planet_aspects
|
||||||
|
|
||||||
|
return aspects
|
||||||
|
|
||||||
|
def get_aspects_formatted(date,minor=False):
|
||||||
|
aspects_formatted=''
|
||||||
|
|
||||||
|
for planet,aspects in get_aspects(date,minor).items():
|
||||||
|
aspects_formatted+=planet+' is in '
|
||||||
|
aspects_list=[]
|
||||||
|
for aspect_name,aspect_planets in aspects.items():
|
||||||
|
aspects_list.append(aspect_name+' with '+get_list_formatted(aspect_planets,False))
|
||||||
|
aspects_formatted+=get_list_formatted(aspects_list,False)+'\n'
|
||||||
|
|
||||||
|
return aspects_formatted
|
||||||
|
|
||||||
# Twitch functions
|
# Twitch functions
|
||||||
|
|
||||||
@@ -258,12 +334,21 @@ def main():
|
|||||||
async def on_chat_message(data: eventsub.chat.MessageEvent):
|
async def on_chat_message(data: eventsub.chat.MessageEvent):
|
||||||
config=load_settings()
|
config=load_settings()
|
||||||
if data['message']['text']==config['positions']:
|
if data['message']['text']==config['positions']:
|
||||||
for line in get_planet_info_formatted().splitlines(False):
|
for line in get_positions_formatted(datetime.now()).splitlines(False):
|
||||||
await client.channel.chat.send_message(line,data['message_id'])
|
await client.channel.chat.send_message(line,data['message_id'])
|
||||||
return
|
return
|
||||||
if data['message']['text']==config['transits']:
|
if data['message']['text']==config['transits']:
|
||||||
for line in get_transits_formatted().splitlines(False):
|
for line in get_transits_formatted().splitlines(False):
|
||||||
await client.channel.chat.send_message(line,data['message_id'])
|
await client.channel.chat.send_message(line,data['message_id'])
|
||||||
|
return
|
||||||
|
if data['message']['text']==config['major_aspects']:
|
||||||
|
for line in get_aspects_formatted(datetime.now()).splitlines(False):
|
||||||
|
await client.channel.chat.send_message(line,data['message_id'])
|
||||||
|
return
|
||||||
|
if data['message']['text']==config['minor_aspects']:
|
||||||
|
for line in get_aspects_formatted(datetime.now(),True).splitlines(False):
|
||||||
|
await client.channel.chat.send_message(line,data['message_id'])
|
||||||
|
return
|
||||||
|
|
||||||
client.run(*tokens.values())
|
client.run(*tokens.values())
|
||||||
|
|
||||||
@@ -275,6 +360,9 @@ def script_main():
|
|||||||
dependency_setup()
|
dependency_setup()
|
||||||
main()
|
main()
|
||||||
|
|
||||||
|
def obs_update(*args):
|
||||||
|
Thread(target=update,daemon=True).start()
|
||||||
|
|
||||||
def obs_load_settings():
|
def obs_load_settings():
|
||||||
import obspython
|
import obspython
|
||||||
global obs_settings
|
global obs_settings
|
||||||
@@ -309,10 +397,12 @@ def script_properties():
|
|||||||
import obspython
|
import obspython
|
||||||
properties=obspython.obs_properties_create()
|
properties=obspython.obs_properties_create()
|
||||||
obspython.obs_properties_add_button(properties,'login','Login to Twitch',login)
|
obspython.obs_properties_add_button(properties,'login','Login to Twitch',login)
|
||||||
obspython.obs_properties_add_button(properties,'update','Check for Updates',update)
|
obspython.obs_properties_add_button(properties,'update','Check for Updates',obs_update)
|
||||||
obspython.obs_properties_add_text(properties,'commands','commands',obspython.OBS_TEXT_INFO)
|
obspython.obs_properties_add_text(properties,'commands','commands',obspython.OBS_TEXT_INFO)
|
||||||
obspython.obs_properties_add_text(properties,'positions','positions',obspython.OBS_TEXT_DEFAULT)
|
obspython.obs_properties_add_text(properties,'positions','positions',obspython.OBS_TEXT_DEFAULT)
|
||||||
obspython.obs_properties_add_text(properties,'transits','transits',obspython.OBS_TEXT_DEFAULT)
|
obspython.obs_properties_add_text(properties,'transits','transits',obspython.OBS_TEXT_DEFAULT)
|
||||||
|
obspython.obs_properties_add_text(properties,'major_aspects','major aspects',obspython.OBS_TEXT_DEFAULT)
|
||||||
|
obspython.obs_properties_add_text(properties,'minor_aspects','minor aspects',obspython.OBS_TEXT_DEFAULT)
|
||||||
return properties
|
return properties
|
||||||
|
|
||||||
def script_defaults(settings):
|
def script_defaults(settings):
|
||||||
@@ -320,6 +410,8 @@ def script_defaults(settings):
|
|||||||
obspython.obs_data_set_default_string(settings,'commands','you can change the commands below, they save automatically')
|
obspython.obs_data_set_default_string(settings,'commands','you can change the commands below, they save automatically')
|
||||||
obspython.obs_data_set_default_string(settings,'positions','!positions')
|
obspython.obs_data_set_default_string(settings,'positions','!positions')
|
||||||
obspython.obs_data_set_default_string(settings,'transits','!transits')
|
obspython.obs_data_set_default_string(settings,'transits','!transits')
|
||||||
|
obspython.obs_data_set_default_string(settings,'major_aspects','!aspects major')
|
||||||
|
obspython.obs_data_set_default_string(settings,'minor_aspects','!aspects minor')
|
||||||
|
|
||||||
def script_load(settings):
|
def script_load(settings):
|
||||||
global obs_settings, save_tokens, load_tokens, load_settings
|
global obs_settings, save_tokens, load_tokens, load_settings
|
||||||
@@ -350,6 +442,8 @@ if __name__ == '__main__':
|
|||||||
def script_path():
|
def script_path():
|
||||||
return path.dirname(__file__)+'/'
|
return path.dirname(__file__)+'/'
|
||||||
dependency_setup()
|
dependency_setup()
|
||||||
print(get_planet_info_formatted())
|
#print(get_positions_formatted(datetime(2025,7,21)))
|
||||||
print(get_transits_formatted())
|
#print(get_transits_formatted())
|
||||||
main()
|
#main()
|
||||||
|
print(get_aspects_formatted(datetime(2025,7,21)))
|
||||||
|
print(get_aspects_formatted(datetime(2025,7,21),True))
|
||||||
Reference in New Issue
Block a user