Browse Source

tweaking the screen script to avoid errors in the event descriptions

master
televex 3 years ago
parent
commit
f163337313
  1. 82
      screen/televex.py

82
screen/televex.py

@ -19,7 +19,6 @@ now = datetime.datetime.now()
while True: while True:
#os.system("toilet --gay -w 125 -W --filter border:gay \ \ \ \ \ VARIA\ \ \ \ \ ")
os.system(f"{ PYTHON } tools/ascii-art-but-with-unicode/repeated_sinus_amplitude_variation.py | lolcat -a -d 1") os.system(f"{ PYTHON } tools/ascii-art-but-with-unicode/repeated_sinus_amplitude_variation.py | lolcat -a -d 1")
print("") print("")
time.sleep(1) time.sleep(1)
@ -29,6 +28,9 @@ while True:
print("") print("")
time.sleep(10) time.sleep(10)
# Avoid double posts
used = []
for c in gcal.walk(): for c in gcal.walk():
if c.name == "VEVENT": if c.name == "VEVENT":
@ -40,52 +42,54 @@ while True:
# An attempt to keep TeleVex running throughout the night # An attempt to keep TeleVex running throughout the night
# (even if the Multifeeder/server is not available) # (even if the Multifeeder/server is not available)
# --- works ---
try: try:
url = 'https://multi.vvvvvvaria.org/API/latest/25' url = 'https://multi.vvvvvvaria.org/API/latest/25'
response = urllib.request.urlopen(url).read() response = urllib.request.urlopen(url).read()
multifeeder = json.loads(response) multifeeder = json.loads(response)
except: except:
multifeeder = [] multifeeder = []
os.system("toilet -f script -w 125 --gay Zzz... the server sleeps.") os.system("toilet -f script -w 125 --gay Zzz... the server sleeps.")
for post in multifeeder: for post in multifeeder:
# Clean up the title of the RSS & Calendar if post["summary"] not in used:
title_check = title.lower().strip().replace('\n','')
rss_title_check = post["title"].lower().strip().replace('\n','') # Clean up the title of the RSS & Calendar
title_check = title.lower().strip().replace('\n','')
if title_check == rss_title_check: rss_title_check = post["title"].lower().strip().replace('\n','')
os.system("toilet --gay -w 125 -W --filter border:gay \ \ \ COMING UP\ \ \ \ ") if title_check == rss_title_check:
print("")
time.sleep(1) # add this post to the "used" list above
used.append(post["summary"])
description = pypandoc.convert_text(post["summary"], 'plain', format='html',extra_args=['--columns=64'])
os.system("toilet --gay -w 125 -W --filter border:gay \ \ \ COMING UP\ \ \ \ ")
# Send the event to the terminal· print("")
time.sleep(1)
# Title
os.system(f"toilet -f big --gay -w 125 '{ title }'") description = pypandoc.convert_text(post["summary"], 'plain', format='html',extra_args=['--columns=64'])
print("")
time.sleep(1) # Write description to a tmp file
with open("description.tmp","w") as tmp:
# Date tmp.write(description)
print(date.strftime("%A %d %B %Y (%H:%M:%S)"))
print("") # Send the event to the terminal·
time.sleep(1)
# Title
# Description os.system(f"toilet -f big --gay -w 125 '{ title }'")
lines = [line for line in description.split('\n')] print("")
for line in lines: time.sleep(1)
# HACKY!!!
line = line.replace('\n', '') # Date
#line = line.replace('(', '(') event_date = date.strftime("%A %d %B %Y (%H:%M:%S)")
#line = line.replace(')', ')') os.system(f"echo '{ event_date }' | lolcat -a -d 1")
#line = line.replace(';', '\;') print("")
#line = line.replace('"', '\"') time.sleep(1)
#line = line.replace("'", "\'")
os.system(f"echo '{ line }' | lolcat -a -d 1") # Description
print("") os.system("cat description.tmp | lolcat -a -d 1")
time.sleep(3)
print("")
time.sleep(10)

Loading…
Cancel
Save