2021-11-29 15:20:54 +00:00
# Copyright (C) 2021 Neythen Treloar neythen@fintic.io
2021-04-26 18:51:21 +00:00
#
# This file is part of stockTicker project for justinodunn.
#
# stockTicker can not be copied and/or distributed without the express
2021-11-29 15:20:54 +00:00
# permission of Neythen Treloar
2021-04-26 18:51:21 +00:00
from flask import Flask , render_template , request
2021-04-26 19:27:34 +00:00
from stockTicker import StockTicker
2021-04-26 18:51:21 +00:00
from werkzeug . utils import secure_filename
2023-03-16 14:17:23 +00:00
import os
2023-03-16 08:31:03 +00:00
import pytz
2023-03-16 11:29:03 +00:00
import datetime
from datetime import timedelta
2021-04-26 18:51:21 +00:00
import threading
import csv
2021-05-01 10:39:20 +00:00
import pexpect
2021-05-05 21:14:04 +00:00
import time
2021-05-27 19:10:57 +00:00
import json
2021-05-01 10:39:20 +00:00
from multiprocessing import Process
2022-01-24 18:40:06 +00:00
import subprocess
2021-05-01 10:39:20 +00:00
from subprocess import Popen , PIPE
2021-08-11 19:58:01 +00:00
import numpy as np
2021-12-10 17:06:47 +00:00
import copy
2022-01-24 18:40:06 +00:00
import urllib . request
2022-02-28 16:38:24 +00:00
import sys
2021-05-01 10:39:20 +00:00
#stock_ticker = StockTicker()
2022-04-14 17:03:50 +00:00
import traceback
2021-12-22 09:43:36 +00:00
2021-12-29 13:05:45 +00:00
#open('log.txt', 'w').close() #wipe logs
2021-12-22 09:43:36 +00:00
2022-02-28 16:38:24 +00:00
2022-01-24 18:40:06 +00:00
#api_caller = pexpect.spawn("sudo -E taskset -c 3 python3 api_caller.py")
2022-03-06 18:36:03 +00:00
#api_caller = pexpect.spawn("sudo -E taskset -c 3 python3 database_caller.py")
#time.sleep(3)
2022-02-28 16:38:45 +00:00
2022-03-01 18:27:45 +00:00
2022-03-05 14:03:11 +00:00
#api_caller.sendline('A')
2022-02-28 16:38:45 +00:00
2022-03-01 18:27:45 +00:00
2022-03-08 13:36:23 +00:00
#pexpect.spawn("./check_update.sh")
2022-02-28 16:38:24 +00:00
2021-11-17 19:34:13 +00:00
displaying_screensaver = False
2021-12-29 13:05:45 +00:00
uploading = False
2021-11-17 19:34:13 +00:00
screensaver_p = None
2022-02-21 18:54:35 +00:00
ticker_stopped = False
2022-04-07 17:35:38 +00:00
2022-04-14 17:03:50 +00:00
try :
f = open ( ' csv/display_settings.json ' , ' r ' )
professional = json . load ( f ) [ 0 ] == " Professional "
f . close ( )
except :
professional = False
2021-04-26 19:27:34 +00:00
2021-04-26 18:51:21 +00:00
command = 300
tickerList = 0
DelayTime = 20
LastCommand = ' '
2022-04-07 17:35:38 +00:00
speedTime = 25
2021-04-26 18:51:21 +00:00
LOGO_FOLDER = ' logos/ '
CSV_FOLDER = ' csv/new/ '
ALLOWED_EXTENSIONS = { ' csv ' , ' png ' }
2022-06-21 16:54:45 +00:00
ticker = pexpect . spawn ( " sudo -E python3 -W ignore stockTicker.py " )
2022-02-15 18:33:32 +00:00
time . sleep ( 2 ) # give the ticker time to initialise
2022-02-14 18:48:27 +00:00
2022-04-07 18:10:41 +00:00
try :
2022-04-14 17:03:50 +00:00
f = open ( ' csv/system_info.json ' , ' r ' )
2022-04-07 18:10:41 +00:00
system_info = json . load ( f )
2022-04-10 12:06:03 +00:00
except Exception as e :
2022-04-07 18:10:41 +00:00
system_info = { " update_available " : False , " first_boot " : False }
2022-04-14 17:03:50 +00:00
f = open ( ' csv/system_info.json ' , ' w ' )
2022-04-07 18:10:41 +00:00
json . dump ( system_info , f )
2022-04-14 17:03:50 +00:00
system_info = json . load ( f )
2022-04-07 17:35:38 +00:00
f . close ( )
2022-02-14 18:48:27 +00:00
2022-02-15 18:33:32 +00:00
ticker . sendline ( ' * ' ) # run startup gif by default
time . sleep ( 8 )
2022-02-14 18:48:27 +00:00
if system_info [ ' first_boot ' ] : # let startup message display
2022-02-15 18:33:32 +00:00
ticker . sendline ( ' - ' )
2022-02-14 18:48:27 +00:00
system_info [ ' first_boot ' ] = False
2022-04-07 17:35:38 +00:00
f = open ( ' csv/system_info.json ' , ' w ' )
json . dump ( system_info , f )
f . close ( )
2022-02-15 18:33:32 +00:00
else :
ticker . sendline ( ' A ' ) # run by default
2021-07-08 18:42:21 +00:00
2021-04-26 18:51:21 +00:00
def allowed_file ( filename ) :
return ' . ' in filename and filename . rsplit ( ' . ' , 1 ) [ 1 ] . lower ( ) in ALLOWED_EXTENSIONS
def process_file ( path , filename ) :
2021-12-14 15:38:09 +00:00
default_csv = csv . writer ( open ( ' csv/tickers.csv ' , ' w+ ' ) )
2021-04-26 18:51:21 +00:00
new_csv = csv . reader ( open ( ( path ) , ' r ' ) )
for row in new_csv :
default_csv . writerow ( row )
2021-12-06 20:10:14 +00:00
class DummyProcess ( ) :
def close ( self ) :
return True
2022-03-05 14:03:11 +00:00
2022-10-06 08:40:48 +00:00
2022-10-31 07:30:32 +00:00
# try:
# f = open('csv/last_updates.json', 'r')
# last_updates = json.load(f)
# f.close()
# last_updates['stocks']['force'] = True
# #last_updates['weather']['force'] = True
# f = open('csv/last_updates.json', 'w')
# json.dump(last_updates, f)
# f.close()
# except:
# pass
2022-03-05 14:03:11 +00:00
2021-04-26 18:51:21 +00:00
app = Flask ( __name__ )
@app.route ( " / " , methods = [ ' GET ' , ' POST ' ] )
2021-08-18 19:50:02 +00:00
def index ( ) :
2021-11-22 19:08:14 +00:00
global command
all_features = [ ' Current Weather ' , ' Daily Forecast ' , ' News ' , ' Sports (Upcoming Games) ' , ' Sports (Past Games) ' , ' Sports (Live Games) ' ,
2023-06-12 10:01:33 +00:00
' Sports (Team Stats) ' , ' Custom Images ' , ' Custom GIFs ' , ' Custom Messages ' , ' Stocks ' , ' Crypto ' , ' Forex ' , ' Commodities ' , ' Indices ' , ' Movies ' ,
' IPO Calendar ' , ' Economic Calendar ' ]
2021-11-22 19:08:14 +00:00
global professional
2022-02-26 17:00:19 +00:00
2023-06-30 11:59:11 +00:00
try :
2022-04-07 17:35:38 +00:00
f = open ( ' csv/display_settings.json ' , ' r ' )
2023-06-30 11:59:11 +00:00
feature_settings = json . load ( f )
feature_settings2 = feature_settings [ 0 ]
2022-04-07 17:35:38 +00:00
f . close ( )
2023-06-30 11:59:11 +00:00
except :
feature_settings = [ " Standard " , [ [ " Stocks " , " Crypto " , " Forex " ] ] ]
feature_settings2 = feature_settings [ 0 ]
if not professional :
try :
f = open ( ' csv/display_settings.json ' , ' r ' )
currently_displaying = json . load ( f ) [ 1 ]
f . close ( )
except :
currently_displaying = [ " Standard " , [ [ " Stocks " , " Crypto " , " Forex " ] ] ] [ 1 ]
2022-02-24 17:05:37 +00:00
not_displaying = [ f for f in all_features if f not in currently_displaying [ 0 ] ]
2022-10-05 08:47:31 +00:00
not_displaying2 = [ f for f in all_features if f not in currently_displaying [ 0 ] ]
2021-11-22 19:08:14 +00:00
elif professional :
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/display_settings.json ' , ' r ' )
currently_displaying = json . load ( f ) [ 1 ]
f . close ( )
except :
currently_displaying = [ " Standard " , [ [ " Stocks " , " Crypto " , " Forex " ] ] ] [ 1 ]
2022-10-05 08:47:31 +00:00
not_displaying = [ f for f in all_features if f not in currently_displaying [ 0 ] ]
not_displaying2 = [ f for f in all_features if f not in currently_displaying [ 1 ] ]
2023-06-30 11:59:11 +00:00
2022-03-02 14:49:44 +00:00
2023-05-23 08:39:29 +00:00
# with open('api_keys.txt', 'r') as f:
# api_key2 = f.readlines()
2021-11-22 19:08:14 +00:00
2023-01-09 09:11:55 +00:00
try :
with open ( ' movie_api_key.txt ' , ' r ' ) as f :
movie_api = f . readlines ( )
except :
movie_api = ' '
2023-03-08 07:04:23 +00:00
try :
with open ( ' ipo_api_key.txt ' , ' r ' ) as f :
ipo_api = f . readlines ( )
except :
ipo_api = ' '
2022-03-02 15:13:13 +00:00
with open ( ' /etc/wpa_supplicant/wpa_supplicant.conf ' , ' r ' ) as f :
wifiline = f . readlines ( )
2021-11-22 19:08:14 +00:00
now = datetime . datetime . now ( )
timeString = now . strftime ( " % Y- % m- %d % H: % M " )
logos_path = os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' )
LogoList = os . listdir ( logos_path )
2023-04-24 11:40:01 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/stocks_settings.json ' , ' r ' )
stocks_settings = json . load ( f )
f . close ( )
except :
stocks_settings = { " feature " : " Stocks " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " percent " : False , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " AAPL " : { " current " : " 164.02 " , " change " : " -1.59 " , " percent_change " : " -0.97 " } , " MSFT " : { " current " : " 288.29 " , " change " : " -1.32 " , " percent_change " : " -0.46 " } , " GOOG " : { " current " : " 2586.74 " , " change " : " -34.01 " , " percent_change " : " -1.31 " } , " NFLX " : { " current " : " 380.52 " , " change " : " -7.59 " , " percent_change " : " -1.99 " } } , " prepost " : False }
2022-04-07 17:35:38 +00:00
2023-06-12 08:31:08 +00:00
dict1 = {
" Aluminum " : " ALU " , " Brent Crude Oil " : " BRENTOIL " , " Coffee " : " COFFEE " , " Copper " : " XCU " , " Corn " : " CORN " , " Cotton " : " COTTON " , " Gold " : " XAU " ,
" Palladium " : " XPD " , " Platinum " : " XPT " , " Rice " : " RICE " , " Silver " : " XAG " , " Soybean " : " SOYBEAN " , " Sugar " : " SUGAR " , " Wheat " : " WHEAT " ,
" WTI Crude Oil " : " WTIOIL " , " Ethanol " : " ETHANOL " , " Crude Palm Oil " : " CPO " , " Natural Gas " : " NG " , " Cocoa " : " COCOA " , " Robusta " : " ROBUSTA " ,
" Lumber " : " LUMBER " , " Rubber " : " RUBBER " , " Live Cattle " : " CATTLE " , " Lean Hog " : " HOG " }
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/commodities_settings.json ' , ' r ' )
commodities_settings = json . load ( f )
f . close ( )
except :
commodities_settings = { " feature " : " Stocks " , " speed " : " fast " , " speed2 " : " fast " , " animation " : " down " , " percent " : True , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " BRENTOIL " : { " current " : " 123.053 " , " unit " : " bbl " , " 24hr_change " : " 1.0150 " , " percent_change " : " 0.83 " } , " WTIOIL " : { " current " : " 121.588 " , " unit " : " bbl " , " 24hr_change " : " 0.8902 " , " percent_change " : " 0.74 " } , " XAU " : { " current " : " 1821.205 " , " unit " : " oz " , " 24hr_change " : " 4.0045 " , " percent_change " : " 0.22 " } , " XAG " : { " current " : " 21.1034 " , " unit " : " oz " , " 24hr_change " : " -0.0550 " , " percent_change " : " -0.26 " } , " XCU " : { " current " : " 0.2633 " , " unit " : " oz " , " 24hr_change " : " -0.0006 " , " percent_change " : " -0.22 " } , " NG " : { " current " : " 8.6595 " , " unit " : " mmbtu " , " 24hr_change " : " -0.0236 " , " percent_change " : " -0.27 " } , " WHEAT " : { " current " : " 393.123 " , " unit " : " ton " , " 24hr_change " : " -1.2642 " , " percent_change " : " -0.32 " } , " COTTON " : { " current " : " 1.4494 " , " unit " : " lb " , " 24hr_change " : " 0.0004 " , " percent_change " : " 0.03 " } , " RICE " : { " current " : " 16.3849 " , " unit " : " cwt " , " 24hr_change " : " 0.0093 " , " percent_change " : " 0.06 " } , " SUGAR " : { " current " : " 0.1866 " , " unit " : " lb " , " 24hr_change " : " -0.0007 " , " percent_change " : " -0.40 " } , " COCOA " : { " current " : " 2374.074 " , " unit " : " ton " , " 24hr_change " : " 2.5206 " , " percent_change " : " 0.11 " } , " LUMBER " : { " current " : " 527.842 " , " unit " : " oz " , " 24hr_change " : " 0.2641 " , " percent_change " : " 0.05 " } , " SOYBEAN " : { " current " : " 17.1621 " , " unit " : " bu " , " 24hr_change " : " 0.0270 " , " percent_change " : " 0.16 " } } }
2023-06-12 08:31:08 +00:00
try :
reversed_dict1 = { value : key for key , value in dict1 . items ( ) }
commodities_settings [ ' symbols ' ] = [ reversed_dict1 [ value ] for value in commodities_settings [ ' symbols ' ] ]
except :
pass
2023-06-30 11:59:11 +00:00
2022-06-12 17:24:31 +00:00
2023-06-12 08:57:05 +00:00
dict2 = { ' BIST 100 - Istanbul ' : ' XU100.IS ' , ' SET - Bangkok ' : ' ^SET.BK ' , ' PSEI - Philippines ' : ' PSEI.PS ' , ' JKSE - Jakarta ' : ' ^JKSE ' ,
' TAIEX - Taiwan ' : ' ^TWII ' , ' HSI - Hong Kong ' : ' ^HSI ' , ' SENSEX - India ' : ' ^BSESN ' , ' NIFTY 50 - India ' : ' ^NSEI ' , ' Nikkei 225 - Japan ' : ' ^N225 ' ,
' SZSE - Shenzhen ' : ' 399001.SZ ' , ' SSE - Shanghai ' : ' 000001.SS ' , ' STI - Singapore ' : ' ^STI ' , ' ASX 200 - Australia ' : ' ^AXJO ' ,
' NZX 50 - New Zealand ' : ' ^NZ50 ' , ' KOSPI - South Korea ' : ' ^KS11 ' , ' Euronext 100 - EU ' : ' ^N100 ' , ' STOXX 50 - EU ' : ' ^STOXX50E ' ,
' STOXX 600 - EU ' : ' ^STOXX ' , ' PSI 20 - Lisbon ' : ' PSI20.LS ' , ' FTSE MIB - Italy ' : ' FTSEMIB.MI ' , ' OMXH25 - Helsinki ' : ' ^OMXH25 ' ,
' OMXS30 - Stockholm ' : ' ^OMX ' , ' AEX - Amsterdam ' : ' ^AEX ' , ' ATX - Austria ' : ' ^ATX ' , ' BEL 20 - Brussels ' : ' ^BFX ' ,
' SSMI - Switzerland ' : ' ^SSMI ' , ' CAC 40 - France ' : ' ^FCHI ' , ' IBEX 35 - Spain ' : ' ^IBEX ' , ' FTSE 100 - UK ' : ' ^FTSE ' , ' Dax - Germany ' : ' ^GDAXI ' ,
' Bovespa - Brazil ' : ' ^BVSP ' , ' IPC - Mexico ' : ' ^MXX ' , ' S&P/TSX - Canada ' : ' ^GSPTSE ' , ' VIX - USA ' : ' ^VIX ' , ' Russell 2000 - USA ' : ' ^RUT ' ,
2023-07-06 06:59:21 +00:00
' Nasdaq Composite - USA ' : ' ^IXIC ' , ' Nasdaq 100 - USA ' : ' ^NDX ' , ' S&P 500 - USA ' : ' ^GSPC ' , ' Dow Jones - USA ' : ' ^DJI ' , ' U.S. Dollar (DXY) - USA ' : ' DX-Y.NYB ' ,
' E-Mini Dow Jones - USA ' : ' YM=F ' , ' E-Mini S&P 500 - USA ' : ' ES=F ' , ' E-Mini Nasdaq 100 - USA ' : ' NQ=F ' , ' E-Mini Russell 2000 - USA ' : ' RTY=F ' }
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/indices_settings.json ' , ' r ' )
indices_settings = json . load ( f )
f . close ( )
except :
indices_settings = { " feature " : " Stocks " , " speed " : " fast " , " speed2 " : " slow " , " animation " : " up " , " percent " : True , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " ^HSI " : { " name " : " HSI " , " current " : " 18083.06 " , " point_change " : " 1003.55 " , " percent_change " : " 5.88 " } , " ^GSPC " : { " name " : " S&P 500 " , " current " : " 3790.93 " , " point_change " : " 112.50 " , " percent_change " : " 3.06 " } , " ^RUT " : { " name " : " RUSSELL 2000 " , " current " : " 1775.77 " , " point_change " : " 66.90 " , " percent_change " : " 3.91 " } , " ^GDAXI " : { " name " : " DAX " , " current " : " 12648.95 " , " point_change " : " -21.53 " , " percent_change " : " -0.17 " } , " ^FTSE " : { " name " : " FTSE 100 " , " current " : " 7058.68 " , " point_change " : " -27.82 " , " percent_change " : " -0.39 " } , " ^FCHI " : { " name " : " CAC 40 " , " current " : " 6031.45 " , " point_change " : " -8.24 " , " percent_change " : " -0.14 " } , " 399001.SZ " : { " name " : " SZSE " , " current " : " 10778.61 " , " point_change " : " -140.83 " , " percent_change " : " -1.29 " } , " ^STOXX50E " : { " name " : " STOXX 50 " , " current " : " 3476.55 " , " point_change " : " -7.93 " , " percent_change " : " -0.23 " } , " ^AXJO " : { " name " : " ASX 200 " , " current " : " 6815.70 " , " point_change " : " 116.40 " , " percent_change " : " 1.74 " } , " ^DJI " : { " name " : " DOW JONES " , " current " : " 30316.32 " , " point_change " : " 825.43 " , " percent_change " : " 2.80 " } , " ^STOXX " : { " name " : " STOXX 600 " , " current " : " 402.33 " , " point_change " : " -0.70 " , " percent_change " : " -0.17 " } } }
2023-06-12 08:57:05 +00:00
try :
reversed_dict2 = { value : key for key , value in dict2 . items ( ) }
indices_settings [ ' symbols ' ] = [ reversed_dict2 [ value ] for value in indices_settings [ ' symbols ' ] ]
except :
pass
2023-03-08 07:04:23 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/crypto_settings.json ' , ' r ' )
crypto_settings = json . load ( f )
f . close ( )
except :
crypto_settings = { " feature " : " Stocks " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " percent " : False , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " ETH,USD " : { " current " : " 2629.32 " , " 24hr_change " : " -27.6432 " , " percent_change " : " -1.04 " } , " BTC,USD " : { " current " : " 38161.00 " , " 24hr_change " : " -50.8386 " , " percent_change " : " -0.13 " } , " BNB,USD " : { " current " : " 372.57 " , " 24hr_change " : " 0.4140 " , " percent_change " : " 0.11 " } , " ADA,BTC " : { " current " : " 0.0000 " , " 24hr_change " : " -0.0000 " , " percent_change " : " -3.74 " } } }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/movie_settings.json ' , ' r ' )
movie_settings = json . load ( f )
f . close ( )
except :
movie_settings = { " feature " : " Movies " , " speed " : " fast " , " speed2 " : " fast " , " animation " : " continuous " , " category " : " Popular All " , " title " : True , " movies " : [ { " title " : " Avatar: The Way of Water " , " language " : " EN " , " votes " : " 8.1 " , " date " : " 2022-12-14 " , " media_type " : " Movie " , " genre " : [ " Sci-Fi " , " Action " , " Adventure " ] , " backdrop " : " 198vrF8k7mfQ4FjDJsBmdQcaiyq.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/198vrF8k7mfQ4FjDJsBmdQcaiyq.jpg " } , { " title " : " Violent Night " , " language " : " EN " , " votes " : " 7.3 " , " date " : " 2022-11-30 " , " media_type " : " Movie " , " genre " : [ " Action " , " Comedy " , " Crime " , " Thriller " ] , " backdrop " : " g9Kb3RaLjsybI1jpqHQ3QZTCYpB.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/g9Kb3RaLjsybI1jpqHQ3QZTCYpB.jpg " } , { " title " : " Avatar " , " language " : " EN " , " votes " : " 7.5 " , " date " : " 2009-12-15 " , " media_type " : " Movie " , " genre " : [ " Action " , " Adventure " , " Fantasy " , " Sci-Fi " ] , " backdrop " : " Yc9q6QuWrMp9nuDm5R8ExNqbEq.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/Yc9q6QuWrMp9nuDm5R8ExNqbEq.jpg " } , { " title " : " The Banshees of Inisherin " , " language " : " EN " , " votes " : " 7.7 " , " date " : " 2022-10-21 " , " media_type " : " Movie " , " genre " : [ " Drama " , " Comedy " ] , " backdrop " : " 9Md4CqzUGDtK5oEkRRvozLkGc9d.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/9Md4CqzUGDtK5oEkRRvozLkGc9d.jpg " } , { " title " : " Wednesday " , " language " : " EN " , " votes " : " 8.8 " , " date " : " 2022-11-23 " , " media_type " : " Tv " , " genre " : [ " Sci-Fi & Fantasy " , " Mystery " , " Comedy " ] , " backdrop " : " iHSwvRVsRyxpX7FE7GbviaDvgGZ.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/iHSwvRVsRyxpX7FE7GbviaDvgGZ.jpg " } , { " title " : " 1923 " , " language " : " EN " , " votes " : " 8.8 " , " date " : " 2022-12-18 " , " media_type " : " Tv " , " genre " : [ " Drama " , " Western " ] , " backdrop " : " 9I6LgZ5110ycg4pyobJxGTFWFCF.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/9I6LgZ5110ycg4pyobJxGTFWFCF.jpg " } , { " title " : " The Recruit " , " language " : " EN " , " votes " : " 7.2 " , " date " : " 2022-12-16 " , " media_type " : " Tv " , " genre " : [ " Drama " , " Crime " ] , " backdrop " : " rey2eh6752C2UbGYRileKk1PVTo.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/rey2eh6752C2UbGYRileKk1PVTo.jpg " } , { " title " : " Black Adam " , " language " : " EN " , " votes " : " 7.2 " , " date " : " 2022-10-19 " , " media_type " : " Movie " , " genre " : [ " Action " , " Fantasy " , " Sci-Fi " ] , " backdrop " : " bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg " } , { " title " : " Nanny " , " language " : " EN " , " votes " : " 5.4 " , " date " : " 2022-11-23 " , " media_type " : " Movie " , " genre " : [ " Horror " , " Drama " ] , " backdrop " : " nfuPlOK6ywGzKGb0yf7VJKyTFWb.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/nfuPlOK6ywGzKGb0yf7VJKyTFWb.jpg " } , { " title " : " Tom Clancys Jack Ryan " , " language " : " EN " , " votes " : " 7.7 " , " date " : " 2018-08-30 " , " media_type " : " Tv " , " genre " : [ " Action & Adventure " , " Drama " , " War & Politics " ] , " backdrop " : " 6ovk8nrrSmN1ieT14zBAxcHbMU7.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/6ovk8nrrSmN1ieT14zBAxcHbMU7.jpg " } , { " title " : " High Heat " , " language " : " EN " , " votes " : " 6.5 " , " date " : " 2022-12-16 " , " media_type " : " Movie " , " genre " : [ " Action " , " Comedy " , " Crime " ] , " backdrop " : " gjNM0odqkq5F7V58OjfTxPJ9p9Z.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/gjNM0odqkq5F7V58OjfTxPJ9p9Z.jpg " } , { " title " : " A Not So Merry Christmas " , " language " : " ES " , " votes " : " 4.8 " , " date " : " 2022-12-20 " , " media_type " : " Movie " , " genre " : [ " Comedy " ] , " backdrop " : " 8uyJzaiGbiezZ9K48Cy5wXeqnYw.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/8uyJzaiGbiezZ9K48Cy5wXeqnYw.jpg " } , { " title " : " Guillermo del Toros Pinocchio " , " language " : " EN " , " votes " : " 8.5 " , " date " : " 2022-11-09 " , " media_type " : " Movie " , " genre " : [ " Animation " , " Fantasy " , " Drama " ] , " backdrop " : " e782pDRAlu4BG0ahd777n8zfPzZ.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/e782pDRAlu4BG0ahd777n8zfPzZ.jpg " } , { " title " : " His Dark Materials " , " language " : " EN " , " votes " : " 8.0 " , " date " : " 2019-11-03 " , " media_type " : " Tv " , " genre " : [ " Sci-Fi & Fantasy " , " Drama " ] , " backdrop " : " dGOhplPZTL0SKyb0ocTFBHIuKUC.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/dGOhplPZTL0SKyb0ocTFBHIuKUC.jpg " } , { " title " : " The Fabelmans " , " language " : " EN " , " votes " : " 7.8 " , " date " : " 2022-11-11 " , " media_type " : " Movie " , " genre " : [ " Drama " , " Comedy " ] , " backdrop " :
try :
f = open ( ' csv/ipo_settings.json ' , ' r ' )
ipo_settings = json . load ( f )
f . close ( )
except :
ipo_settings = { " feature " : " IPO " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " symbols " : [ " No Data " ] }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/forex_settings.json ' , ' r ' )
forex_settings = json . load ( f )
f . close ( )
except :
forex_settings = { " feature " : " Stocks " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " percent " : False , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " EUR,USD " : { " current " : " 1.1334 " , " 24hr_change " : " -0.0003 " , " percent_change " : " 0.00 " } , " USD,JPY " : { " current " : " 114.960 " , " 24hr_change " : " 0.1600 " , " percent_change " : " 0.14 " } , " GBP,USD " : { " current " : " 1.3577 " , " 24hr_change " : " -0.0031 " , " percent_change " : " -0.23 " } , " USD,CHF " : { " current " : " 0.9198 " , " 24hr_change " : " 0.0029 " , " percent_change " : " 0.32 " } } }
try :
f = open ( ' csv/current_weather.json ' , ' r ' )
current_weather = json . load ( f )
f . close ( )
except :
current_weather = { " feature " : " Current Weather " , " speed " : " medium " , " animation " : " down " , " temp " : " celsius " , " wind_speed " : " miles/hour " , " colour " : " white " , " city_colour " : " yellow " , " title " : True , " locations " : { " Hong Kong " : { " main_weather " : " Clouds " , " description " : " overcast clouds " , " temp " : 30.4 , " min_temp " : 28.2 , " max_temp " : 30.8 , " feels_like " : 36.0 , " humidity " : 77 , " clouds " : 100 , " visibility " : 10000 , " uv " : 5.3 , " rain_chance " : 17 , " wind_speed " : 11.1 , " wind_direction " : 193 , " is_day " : 1 } } , " current_weather " : True , " speed2 " : " medium " }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/daily_weather.json ' , ' r ' )
daily_weather = json . load ( f )
f . close ( )
except :
daily_weather = { " feature " : " Current Weather " , " speed " : " medium " , " animation " : " down " , " temp " : " celsius " , " wind_speed " : " miles/hour " , " colour " : " white " , " city_colour " : " yellow " , " title " : True , " locations " : { " Hong Kong " : [ { " main_weather " : " Thunderstorm " , " description " : " Slight or moderate " , " min_temp " : 28.2 , " max_temp " : 30.8 , " temp " : 30.4 , " rain_chance " : 17 , " humidity " : 77 , " wind_speed " : 11.1 , " uv " : 5.3 , " clouds " : 100 , " wind_direction " : 193 , " visibility " : 10000 } , { " main_weather " : " Clouds " , " description " : " overcast clouds " , " min_temp " : 27.9 , " max_temp " : 32.3 } , { " main_weather " : " Thunderstorm " , " description " : " Slight or moderate " , " min_temp " : 27.7 , " max_temp " : 31.2 } , { " main_weather " : " Thunderstorm " , " description " : " Slight or moderate " , " min_temp " : 28.1 , " max_temp " : 31.5 } , { " main_weather " : " Rain " , " description " : " light intensity shower rain " , " min_temp " : 28.5 , " max_temp " : 31.1 } , { " main_weather " : " Clouds " , " description " : " overcast clouds " , " min_temp " : 28.9 , " max_temp " : 31.5 } , { " main_weather " : " Clouds " , " description " : " scattered clouds " , " min_temp " : 29.0 , " max_temp " : 31.9 } ] } , " current_weather " : False , " speed2 " : " medium " }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/news_settings.json ' , ' r ' )
news_settings = json . load ( f )
f . close ( )
except :
news_settings = { " feature " : " News " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " country " : " US " , " category " : " General " , " title " : True , " headlines " : [ ] , " use_category " : True , " use_country " : False , " num_headlines " : " 10 " }
try :
f = open ( ' csv/upcoming_games.json ' , ' r ' )
upcoming_games = json . load ( f )
f . close ( )
except :
upcoming_games = { " feature " : " Sports (Upcoming Games) " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " leagues " : { " NFL " : [ { " date " : " 2021-11-22 " , " time " : " 01:20:00 " , " round " : " 11 " , " home_team " : " Los Angeles Chargers " , " home_score " : " 41 " , " away_team " : " Pittsburgh Steelers " , " away_score " : " 37 " } ] } }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/live_games.json ' , ' r ' )
live_games = json . load ( f )
f . close ( )
except :
live_games = { " feature " : " Sports (Live Games) " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " leagues " : { } }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/past_games.json ' , ' r ' )
past_games = json . load ( f )
f . close ( )
except :
past_games = { " feature " : " Sports (Past Games) " , " speed2 " : " medium " , " speed " : " medium " , " animation " : " down " , " title " : True , " leagues " : { } }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/league_tables.json ' , ' r ' )
team_stats = json . load ( f )
f . close ( )
except :
team_stats = { " feature " : " Sports (Team Stats) " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " top20 " : 20 , " leagues " : { } }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/image_settings.json ' , ' r ' )
image_settings = json . load ( f )
f . close ( )
except :
image_settings = { " speed " : " slow " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " pause " : " / " , " images " : [ ] }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/GIF_settings.json ' , ' r ' )
GIF_settings = json . load ( f )
f . close ( )
except :
GIF_settings = { " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " pause " : " 2 " , " images " : [ ] }
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/message_settings.json ' , ' r ' )
message_settings = json . load ( f )
f . close ( )
except :
message_settings = { " feature " : " Custom Messages " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : False , " messages " : [ { " name " : " welcome " , " text " : " Welcome to Fintic! " , " text_colour " : " White " , " size " : " Large " , " background_colour " : " Black " } , { " name " : " get_started " , " text " : " To get started, connect your device to the \" Fintic Hotspot \" and access \" fintic.local:1024 \" on your web browser. You can connect your ticker to Wi-Fi there. " , " text_colour " : " White " , " size " : " Small " , " background_colour " : " Black " } ] }
2022-04-07 17:35:38 +00:00
f = open ( ' csv/general_settings.json ' , ' r ' )
general_settings = json . load ( f )
f . close ( )
2022-04-11 17:33:28 +00:00
2023-06-14 09:53:32 +00:00
try :
f = open ( ' csv/economic_settings.json ' , ' r ' )
economic_settings = json . load ( f )
f . close ( )
except :
2023-06-14 10:03:19 +00:00
economic_settings = { " feature " : " Economic Calendar " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " up " , " importance " : " Med - High " , " title " : True , " timezone " : " US/Eastern " , " countries " : [ " United States " ] , " events " : [ ] }
2023-06-12 10:13:38 +00:00
2023-04-24 11:40:01 +00:00
try :
f = open ( ' csv/scheduler.json ' , ' r ' )
scheduler_settings = json . load ( f )
f . close ( )
except :
2023-04-26 06:39:59 +00:00
scheduler_settings = { " shutdown " : { " hour " : " 00 " , " minute " : " 00 " , " enabled " : False } , " reboot " : { " hour " : " 00 " , " minute " : " 00 " , " enabled " : False } , " timezone " : " GMT " , " brightness1 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } , " brightness2 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } , " brightness3 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } , " brightness4 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } }
2022-04-11 17:33:28 +00:00
2023-05-23 08:39:29 +00:00
# try: # incase this doesnt exist
# api_keys = api_key2[1]
# except:
# api_keys = ''
2022-03-07 17:43:34 +00:00
2023-01-09 09:11:55 +00:00
try :
movie_api_key = movie_api [ 0 ]
except :
movie_api_key = ' '
2023-03-08 07:04:23 +00:00
try :
ipo_api_key = ipo_api [ 0 ]
except :
ipo_api_key = ' '
2022-03-07 17:43:34 +00:00
try :
wifi_SSID = wifiline [ 5 ] [ 6 : ] . replace ( ' " ' , ' ' )
except :
wifi_SSID = ' '
2022-06-11 16:01:44 +00:00
try :
wifi_PSK = wifiline [ 6 ] [ 5 : ] . replace ( ' " ' , ' ' )
except :
wifi_PSK = ' '
2021-11-22 19:08:14 +00:00
templateData = {
2022-02-27 09:52:37 +00:00
' system_info ' : system_info ,
2023-01-30 05:08:03 +00:00
' currently_displaying ' : currently_displaying ,
' feature_settings2 ' : feature_settings2 ,
2021-09-20 19:46:15 +00:00
' not_displaying ' : not_displaying ,
2022-10-05 08:47:31 +00:00
' not_displaying2 ' : not_displaying2 ,
2021-09-20 19:46:15 +00:00
' stocks_settings ' : stocks_settings ,
2022-06-12 17:24:31 +00:00
' commodities_settings ' : commodities_settings ,
2022-10-06 04:36:10 +00:00
' indices_settings ' : indices_settings ,
2021-09-20 19:46:15 +00:00
' crypto_settings ' : crypto_settings ,
' forex_settings ' : forex_settings ,
' current_weather ' : current_weather ,
' daily_weather ' : daily_weather ,
2023-01-09 09:11:55 +00:00
' movie_settings ' : movie_settings ,
2023-03-08 07:04:23 +00:00
' ipo_settings ' : ipo_settings ,
2021-09-20 19:46:15 +00:00
' news_settings ' : news_settings ,
' upcoming_games ' : upcoming_games ,
' past_games ' : past_games ,
' live_games ' : live_games ,
' team_stats ' : team_stats ,
' image_settings ' : image_settings ,
2021-10-12 19:52:52 +00:00
' GIF_settings ' : GIF_settings ,
2021-11-22 19:08:14 +00:00
' message_settings ' : message_settings ,
2021-12-06 20:10:14 +00:00
' professional ' : professional ,
2022-03-02 14:49:44 +00:00
' general_settings ' : general_settings ,
2023-01-09 09:11:55 +00:00
' movie_api_key ' : movie_api_key ,
2023-03-08 07:04:23 +00:00
' ipo_api_key ' : ipo_api_key ,
2022-06-11 16:02:10 +00:00
' wifi_SSID ' : wifi_SSID ,
2023-04-24 11:40:01 +00:00
' wifi_PSK ' : wifi_PSK ,
2023-06-30 11:59:11 +00:00
' scheduler_settings ' : scheduler_settings ,
' economic_settings ' : economic_settings
2021-04-26 18:51:21 +00:00
}
2022-03-05 14:03:11 +00:00
2022-04-07 17:35:38 +00:00
2021-11-22 19:08:14 +00:00
return render_template ( ' index.html ' , * * templateData )
2021-04-26 18:51:21 +00:00
2021-12-10 17:06:47 +00:00
2023-04-27 14:32:54 +00:00
def scheduled_brightness ( ) :
try :
while True :
try :
f = open ( ' csv/scheduler.json ' , ' r ' )
schedules = json . load ( f )
f . close ( )
except :
schedules = { " shutdown " : { " hour " : " 00 " , " minute " : " 00 " , " enabled " : False } , " reboot " : { " hour " : " 00 " , " minute " : " 00 " , " enabled " : False } , " timezone " : " GMT " , " brightness1 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } , " brightness2 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } , " brightness3 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } , " brightness4 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } }
timezone_brightness = schedules [ ' timezone ' ]
brightness1_hour = schedules [ ' brightness1 ' ] [ ' hour ' ]
brightness1_minute = schedules [ ' brightness1 ' ] [ ' minute ' ]
brightness1_bright = schedules [ ' brightness1 ' ] [ ' bright ' ]
brightness1_enabled = schedules [ ' brightness1 ' ] [ ' enabled ' ]
brightness2_hour = schedules [ ' brightness2 ' ] [ ' hour ' ]
brightness2_minute = schedules [ ' brightness2 ' ] [ ' minute ' ]
brightness2_bright = schedules [ ' brightness2 ' ] [ ' bright ' ]
brightness2_enabled = schedules [ ' brightness2 ' ] [ ' enabled ' ]
brightness3_hour = schedules [ ' brightness3 ' ] [ ' hour ' ]
brightness3_minute = schedules [ ' brightness3 ' ] [ ' minute ' ]
brightness3_bright = schedules [ ' brightness3 ' ] [ ' bright ' ]
brightness3_enabled = schedules [ ' brightness3 ' ] [ ' enabled ' ]
brightness4_hour = schedules [ ' brightness4 ' ] [ ' hour ' ]
brightness4_minute = schedules [ ' brightness4 ' ] [ ' minute ' ]
brightness4_bright = schedules [ ' brightness4 ' ] [ ' bright ' ]
brightness4_enabled = schedules [ ' brightness4 ' ] [ ' enabled ' ]
try :
if brightness1_enabled and datetime . datetime . now ( pytz . timezone ( timezone_brightness ) ) . strftime ( " % H: % M " ) == brightness1_hour + ' : ' + brightness1_minute :
brightness = max ( min ( int ( brightness1_bright ) , 10 ) , 1 )
ticker . sendline ( str ( brightness - 1 ) )
f = open ( ' csv/general_settings.json ' , ' r ' )
general_settings = json . load ( f )
f . close ( )
general_settings [ ' brightness ' ] = int ( brightness )
f = open ( ' csv/general_settings.json ' , ' w ' )
json . dump ( general_settings , f )
f . close ( )
except :
pass
try :
if brightness2_enabled and datetime . datetime . now ( pytz . timezone ( timezone_brightness ) ) . strftime ( " % H: % M " ) == brightness2_hour + ' : ' + brightness2_minute :
brightness = max ( min ( int ( brightness2_bright ) , 10 ) , 1 )
ticker . sendline ( str ( brightness - 1 ) )
f = open ( ' csv/general_settings.json ' , ' r ' )
general_settings = json . load ( f )
f . close ( )
general_settings [ ' brightness ' ] = int ( brightness )
f = open ( ' csv/general_settings.json ' , ' w ' )
json . dump ( general_settings , f )
f . close ( )
except :
pass
try :
if brightness3_enabled and datetime . datetime . now ( pytz . timezone ( timezone_brightness ) ) . strftime ( " % H: % M " ) == brightness3_hour + ' : ' + brightness3_minute :
brightness = max ( min ( int ( brightness3_bright ) , 10 ) , 1 )
ticker . sendline ( str ( brightness - 1 ) )
f = open ( ' csv/general_settings.json ' , ' r ' )
general_settings = json . load ( f )
f . close ( )
general_settings [ ' brightness ' ] = int ( brightness )
f = open ( ' csv/general_settings.json ' , ' w ' )
json . dump ( general_settings , f )
f . close ( )
except :
pass
try :
if brightness4_enabled and datetime . datetime . now ( pytz . timezone ( timezone_brightness ) ) . strftime ( " % H: % M " ) == brightness4_hour + ' : ' + brightness4_minute :
brightness = max ( min ( int ( brightness4_bright ) , 10 ) , 1 )
ticker . sendline ( str ( brightness - 1 ) )
f = open ( ' csv/general_settings.json ' , ' r ' )
general_settings = json . load ( f )
f . close ( )
general_settings [ ' brightness ' ] = int ( brightness )
f = open ( ' csv/general_settings.json ' , ' w ' )
json . dump ( general_settings , f )
f . close ( )
except :
pass
time . sleep ( 20 )
except :
pass
scheduled_b = Process ( target = scheduled_brightness )
scheduled_b . start ( )
2021-12-10 17:06:47 +00:00
def save_displaying ( input_settings ) :
2022-04-07 17:35:38 +00:00
2022-02-24 17:23:18 +00:00
global professional
2022-04-07 17:35:38 +00:00
2022-10-06 04:36:10 +00:00
all_settings = [ ' Stocks ' , ' Crypto ' , ' Forex ' , ' Commodities ' , ' Indices ' , ' Current Weather ' , ' Daily Forecast ' , ' News ' , ' Sports (Upcoming Games) ' , ' Sports (Past Games) ' ,
2023-06-12 10:01:33 +00:00
' Sports (Live Games) ' , ' Sports (Team Stats) ' , ' Custom Images ' , ' Custom GIFs ' , ' Custom Messages ' , ' Movies ' , ' IPO Calendar ' , ' Economic Calendar ' ]
2022-02-24 17:23:18 +00:00
professional = len ( input_settings ) == 2
2021-08-18 19:50:02 +00:00
if professional :
2023-03-08 06:49:31 +00:00
all_settings = [ ' Stocks ' , ' Crypto ' , ' Forex ' , ' Commodities ' , ' Indices ' , ' Current Weather ' , ' News ' , ' Daily Forecast ' , ' Sports (Upcoming Games) ' ,
2023-06-12 10:01:33 +00:00
' Sports (Past Games) ' , ' Sports (Team Stats) ' , ' Sports (Live Games) ' , ' Custom Messages ' , ' Custom Images ' , ' Movies ' , ' IPO Calendar ' , ' Economic Calendar ' ]
2021-08-18 19:50:02 +00:00
2021-08-11 19:58:01 +00:00
positions = [ ]
display_settings = [ ]
2021-12-10 17:06:47 +00:00
2021-11-22 19:19:26 +00:00
if professional :
input_settings [ 0 ] = [ i for i in input_settings [ 0 ] if i in all_settings ]
input_settings [ 1 ] = [ i for i in input_settings [ 1 ] if i in all_settings ]
2022-02-24 17:05:37 +00:00
2021-11-22 19:08:14 +00:00
s = " Professional " if professional else " Standard "
display_settings = [ s ] + [ input_settings ]
2022-04-14 17:03:50 +00:00
with open ( ' csv/display_settings.json ' , ' w ' ) as f :
2021-08-11 19:58:01 +00:00
json . dump ( list ( display_settings ) , f )
2021-12-10 17:06:47 +00:00
@app.route ( " /start " , methods = [ ' PUT ' , ' POST ' ] )
def start ( ) :
2022-02-15 19:50:20 +00:00
2021-12-10 17:06:47 +00:00
global displaying_screensaver
global ticker
2022-03-05 14:03:11 +00:00
#global api_caller
2021-12-10 17:06:47 +00:00
global professional
2022-02-21 18:54:35 +00:00
global ticker_stopped
2021-12-10 17:06:47 +00:00
if displaying_screensaver :
screensaver_p . close ( )
2022-06-21 16:54:45 +00:00
ticker = pexpect . spawn ( " sudo -E python3 -W ignore stockTicker.py " )
2022-02-21 18:38:05 +00:00
#api_caller = pexpect.spawn("sudo -E taskset -c 3 python3 api_caller.py")
2022-03-05 14:03:11 +00:00
#api_caller = pexpect.spawn("sudo -E taskset -c 3 python3 database_caller.py")
2021-12-10 17:06:47 +00:00
displaying_screensaver = False
2022-02-21 18:54:35 +00:00
if ticker_stopped :
2022-06-21 16:54:45 +00:00
ticker = pexpect . spawn ( " sudo -E python3 -W ignore stockTicker.py " )
2022-02-21 18:54:35 +00:00
ticker_stopped = False
2022-03-05 14:03:11 +00:00
#api_caller.sendline('A')
2023-04-27 14:32:54 +00:00
global scheduled_b
if scheduled_b . is_alive ( ) :
scheduled_b . terminate ( )
scheduled_b = Process ( target = scheduled_brightness )
scheduled_b . start ( )
2021-08-11 19:58:01 +00:00
ticker . sendline ( ' K ' )
2021-08-18 19:50:02 +00:00
ticker . sendline ( ' A ' )
return index ( )
2021-11-18 17:50:50 +00:00
@app.route ( " /stop " )
def stop ( ) :
2022-04-07 17:35:38 +00:00
2021-11-18 17:50:50 +00:00
global displaying_screensaver
2021-12-06 20:10:14 +00:00
global ticker
2022-03-05 14:03:11 +00:00
#global api_caller
2021-12-06 20:10:14 +00:00
global professional
2022-02-21 18:54:35 +00:00
global ticker_stopped
2022-04-10 12:17:47 +00:00
2022-02-21 18:54:35 +00:00
2021-11-18 17:50:50 +00:00
if not displaying_screensaver :
2022-04-10 12:17:47 +00:00
ticker . sendline ( ' K ' )
2022-02-22 12:41:30 +00:00
time . sleep ( 0.1 ) # give time for leds to turn off
2022-02-21 18:54:35 +00:00
ticker . close ( )
2021-11-18 17:50:50 +00:00
else :
screensaver_p . close ( )
2022-02-21 18:54:35 +00:00
if not ticker_stopped :
2022-02-22 12:41:30 +00:00
time . sleep ( 0.1 ) # give time for leds to turn off
2022-02-21 18:54:35 +00:00
ticker . close ( )
ticker_stopped = True
2021-12-29 13:05:45 +00:00
2021-11-18 17:50:50 +00:00
if displaying_screensaver :
screensaver_p . close ( )
2022-06-21 17:03:15 +00:00
#ticker = pexpect.spawn("sudo -E python3 -W ignore stockTicker.py")
2022-02-21 18:38:05 +00:00
#api_caller = pexpect.spawn("sudo -E taskset -c 3 python3 api_caller.py")
2022-03-05 14:03:11 +00:00
#api_caller = pexpect.spawn("sudo -E taskset -c 3 python3 database_caller.py")
2021-11-18 17:50:50 +00:00
displaying_screensaver = False
2023-04-27 14:32:54 +00:00
scheduled_b . terminate ( )
2021-11-18 17:50:50 +00:00
return index ( )
2021-11-20 15:30:31 +00:00
@app.route ( " /update " , methods = [ ' PUT ' , ' POST ' ] )
def update ( ) :
2022-04-11 17:33:28 +00:00
2022-04-10 12:06:03 +00:00
2022-04-14 17:03:50 +00:00
2022-04-10 12:06:03 +00:00
try :
2022-04-14 17:03:50 +00:00
f = open ( ' csv/system_info.json ' , ' r ' )
2022-04-10 12:06:03 +00:00
system_info = json . load ( f )
except Exception as e :
system_info = { " update_available " : False , " first_boot " : False }
system_info [ ' update_available ' ] = False
2022-04-14 17:03:50 +00:00
f = open ( ' csv/system_info.json ' , ' w ' )
2022-04-10 12:06:03 +00:00
json . dump ( system_info , f )
f . close ( )
2022-04-11 17:33:28 +00:00
2022-03-07 18:24:24 +00:00
os . system ( " ./update.sh " )
os . system ( " sudo reboot now " )
2021-12-01 16:47:08 +00:00
return index ( )
2021-11-20 15:30:31 +00:00
2022-02-26 15:50:10 +00:00
@app.route ( " /restart " )
2022-02-24 18:35:43 +00:00
def restart ( ) :
os . system ( " sudo reboot now " )
2021-08-18 19:50:02 +00:00
return index ( )
2022-02-26 16:35:15 +00:00
@app.route ( " /reset " )
def reset ( ) :
2022-04-07 17:35:38 +00:00
2022-02-26 16:35:15 +00:00
os . system ( " sudo ./setup_config_files.sh " )
2023-02-04 08:23:48 +00:00
time . sleep ( 2 )
2022-06-24 07:46:11 +00:00
os . system ( " sudo reboot now " )
2022-02-26 16:35:15 +00:00
return index ( )
2021-12-10 17:06:47 +00:00
@app.route ( " /save " , methods = [ ' PUT ' , ' POST ' , ' GET ' ] )
def save ( ) :
2022-04-07 17:35:38 +00:00
2021-12-29 13:05:45 +00:00
global uploading
2022-01-15 11:11:32 +00:00
2021-09-19 18:19:09 +00:00
data = str ( request . data . decode ( ' utf-8 ' ) )
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
input_settings = json . loads ( data )
2021-12-29 13:05:45 +00:00
2021-12-10 17:06:47 +00:00
save_displaying ( input_settings [ ' displaying ' ] )
input_settings = input_settings [ ' feature_settings ' ]
2021-09-19 18:19:09 +00:00
feature = input_settings [ ' feature ' ]
2022-10-06 04:36:10 +00:00
if feature in [ ' Stocks ' , ' Crypto ' , ' Forex ' , ' Commodities ' , ' Indices ' ] :
2021-09-19 18:19:09 +00:00
save_trade_settings ( input_settings )
elif feature in [ ' Current Weather ' , ' Daily Forecast ' ] :
save_weather_settings ( input_settings )
elif feature == ' News ' :
save_news_settings ( input_settings )
2023-01-09 09:11:55 +00:00
elif feature == ' Movies ' :
save_movie_settings ( input_settings )
2023-03-08 07:04:23 +00:00
elif feature == ' IPO Calendar ' :
save_ipo_settings ( input_settings )
2023-06-14 08:28:09 +00:00
elif feature == ' Economic Calendar ' :
save_economic_settings ( input_settings )
2021-09-19 18:19:09 +00:00
elif ' Sports ' in feature :
save_sports_settings ( input_settings )
elif feature in [ ' Custom GIFs ' , ' Custom Images ' ] :
2023-06-30 11:59:11 +00:00
2021-12-29 13:05:45 +00:00
images = request . files
names = list ( request . files . keys ( ) )
for name in names :
2022-04-07 17:35:38 +00:00
2021-12-29 13:05:45 +00:00
images [ name ] . save ( ' user_uploads/ ' + name )
2021-09-19 18:19:09 +00:00
save_image_settings ( input_settings )
2021-10-11 19:16:04 +00:00
elif feature == ' Custom Messages ' :
save_message_settings ( input_settings )
2021-09-16 19:23:04 +00:00
return index ( )
2021-09-19 18:19:09 +00:00
2023-06-30 11:59:11 +00:00
2021-10-07 19:40:43 +00:00
# saves files uploaded to the webpage for images and GIFs
@app.route ( " /upload " , methods = [ ' PUT ' , ' POST ' , ' GET ' ] )
def upload ( ) :
2022-04-07 17:35:38 +00:00
2021-12-29 13:05:45 +00:00
global uploading
uploading = True
2021-10-07 19:40:43 +00:00
try :
2021-12-22 09:43:36 +00:00
2021-10-07 19:40:43 +00:00
images = request . files
names = list ( request . files . keys ( ) )
2021-12-21 17:21:04 +00:00
2021-10-07 19:40:43 +00:00
for name in names :
images [ name ] . save ( ' user_uploads/ ' + name )
except Exception as e :
2022-04-07 17:35:38 +00:00
2022-03-02 10:42:50 +00:00
uploading = False
2021-10-07 19:40:43 +00:00
return index ( )
2021-11-20 15:30:31 +00:00
2021-12-21 17:21:04 +00:00
def remove_old_uploads ( ) :
#remove old files
2022-04-07 17:35:38 +00:00
f = open ( ' csv/image_settings.json ' , ' r ' )
image_settings = json . load ( f )
f . close ( )
f = open ( ' csv/GIF_settings.json ' , ' r ' )
GIF_settings = json . load ( f )
f . close ( )
2021-12-21 17:21:04 +00:00
for filename in os . listdir ( ' user_uploads ' ) :
if filename not in image_settings [ ' images ' ] and filename not in GIF_settings [ ' images ' ] :
os . remove ( ' user_uploads/ ' + filename )
2021-11-20 15:30:31 +00:00
2021-11-18 17:50:50 +00:00
@app.route ( " /brightness " , methods = [ ' PUT ' , ' POST ' ] )
def brightness ( ) :
global brightness
data = request . data . decode ( ' utf-8 ' )
settings = json . loads ( data )
2022-04-07 17:35:38 +00:00
2021-11-18 17:50:50 +00:00
brightness = settings [ ' brightness ' ]
2022-04-14 17:03:50 +00:00
brightness = max ( min ( int ( brightness ) , 10 ) , 1 )
ticker . sendline ( str ( brightness - 1 ) )
2022-04-07 17:35:38 +00:00
f = open ( ' csv/general_settings.json ' , ' r ' )
general_settings = json . load ( f )
f . close ( )
2021-12-08 17:00:42 +00:00
general_settings [ ' brightness ' ] = int ( brightness )
2022-04-14 17:03:50 +00:00
f = open ( ' csv/general_settings.json ' , ' w ' )
2022-04-07 17:35:38 +00:00
json . dump ( general_settings , f )
f . close ( )
2021-11-18 17:50:50 +00:00
return index ( )
2021-10-07 19:40:43 +00:00
2021-11-18 19:41:50 +00:00
def edit_wpa_sup ( country , ssid , pwd ) :
current_wpa = open ( ' /etc/wpa_supplicant/wpa_supplicant.conf ' )
wpa_lines = current_wpa . readlines ( )
wpa_lines [ 2 ] = ' country= {} \n ' . format ( country )
current_wpa . close ( )
2021-12-15 09:05:53 +00:00
#remove this line to append to end instead of overwriting all networks
2021-12-16 14:41:39 +00:00
wpa_lines = wpa_lines [ 0 : 3 ]
2022-04-07 17:35:38 +00:00
2021-12-15 09:05:53 +00:00
2021-12-16 14:49:34 +00:00
# create new file from scratch
wpa_lines = [ ]
2021-12-16 15:03:30 +00:00
wpa_lines . append ( ' ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev \n ' )
wpa_lines . append ( ' update_config=1 \n ' )
2021-12-16 14:56:15 +00:00
wpa_lines . append ( ' country= {} \n ' . format ( country ) )
2021-12-16 14:49:34 +00:00
2021-11-18 19:41:50 +00:00
wpa_lines . append ( ' \n ' )
wpa_lines . append ( ' network= { \n ' )
wpa_lines . append ( ' \t ssid= " {} " \n ' . format ( ssid ) )
wpa_lines . append ( ' \t psk= " {} " \n ' . format ( pwd ) )
wpa_lines . append ( ' } \n ' )
wpa_string = ' ' . join ( wpa_lines )
2022-04-07 17:35:38 +00:00
2022-04-14 17:03:50 +00:00
current_wpa = open ( ' /etc/wpa_supplicant/wpa_supplicant.conf ' , ' w ' )
2021-11-18 19:41:50 +00:00
current_wpa . write ( wpa_string )
@app.route ( " /wifi " , methods = [ ' PUT ' , ' POST ' , ' GET ' ] )
2022-01-24 18:40:06 +00:00
def set_wifi ( ) :
2021-11-18 19:41:50 +00:00
data = request . data . decode ( ' utf-8 ' )
2022-04-07 17:35:38 +00:00
2021-11-18 19:41:50 +00:00
settings = json . loads ( data )
country = settings [ ' country ' ] . upper ( )
ssid = settings [ ' ssid ' ]
pwd = settings [ ' pwd ' ]
2022-04-07 17:35:38 +00:00
f = open ( ' csv/general_settings.json ' , ' r ' )
general_settings = json . load ( f )
f . close ( )
2021-12-06 20:10:14 +00:00
general_settings [ ' country_code ' ] = country
2022-04-14 17:03:50 +00:00
f = open ( ' csv/general_settings.json ' , ' w ' )
2022-04-07 17:35:38 +00:00
json . dump ( general_settings , f )
f . close ( )
2021-12-06 20:10:14 +00:00
2021-11-18 19:41:50 +00:00
edit_wpa_sup ( country , ssid , pwd )
# resstart netoworking
os . system ( ' wpa_cli -i wlan0 reconfigure ' )
return index ( )
2021-11-29 15:17:55 +00:00
2022-03-02 11:25:42 +00:00
#def check_internet_connection(host='http://google.com'):
2022-01-24 18:40:06 +00:00
2022-03-02 11:25:42 +00:00
#try:
#urllib.request.urlopen(host) #Python 3.x
#return True
#except:
#return False
2022-01-24 18:40:06 +00:00
2022-03-02 11:25:42 +00:00
#def check_network_connection():
#ps = subprocess.Popen(['iwconfig'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
#try:
#output = subprocess.check_output(('grep', 'ESSID'), stdin=ps.stdout)
#return True
#except subprocess.CalledProcessError:
2022-01-24 18:40:06 +00:00
# grep did not match any lines
2022-04-07 17:35:38 +00:00
2022-03-02 11:25:42 +00:00
#return False
2022-01-24 18:40:06 +00:00
2021-11-29 15:17:55 +00:00
def edit_hosts ( hostname ) :
current_hosts = open ( ' /etc/hosts ' )
hosts_lines = current_hosts . readlines ( )
2022-04-07 17:35:38 +00:00
2021-11-29 15:17:55 +00:00
hosts_lines [ 5 ] = ' 127.0.1.1 {} ' . format ( hostname )
current_hosts . close ( )
hosts_string = ' ' . join ( hosts_lines )
current_hosts = open ( ' /etc/hosts ' , ' w+ ' )
current_hosts . write ( hosts_string )
2021-11-18 19:41:50 +00:00
2021-11-26 15:33:10 +00:00
@app.route ( " /hostname " , methods = [ ' PUT ' , ' POST ' , ' GET ' ] )
def hostname ( ) :
data = request . data . decode ( ' utf-8 ' )
settings = json . loads ( data )
hostname = settings [ ' hostname ' ]
2022-04-07 17:35:38 +00:00
2021-11-29 15:17:55 +00:00
edit_hosts ( hostname )
2021-11-26 15:33:10 +00:00
os . system ( " sudo hostnamectl set-hostname {} " . format ( hostname ) )
os . system ( " sudo systemctl restart avahi-daemon " )
2021-11-18 19:41:50 +00:00
2022-04-07 17:35:38 +00:00
f = open ( ' csv/general_settings.json ' , ' r ' )
general_settings = json . load ( f )
f . close ( )
2021-12-06 20:10:14 +00:00
general_settings [ ' hostname ' ] = hostname
2022-04-14 17:03:50 +00:00
f = open ( ' csv/general_settings.json ' , ' w ' )
2022-04-07 17:35:38 +00:00
json . dump ( general_settings , f )
f . close ( )
2021-12-06 20:10:14 +00:00
2021-11-26 15:33:10 +00:00
return index ( )
2022-02-24 18:35:43 +00:00
2023-05-23 08:39:29 +00:00
# @app.route("/saveWeatherAPIKey", methods = ['PUT', 'POST'])
# def saveWeatherAPIKey():
2021-11-18 19:41:50 +00:00
2023-05-23 08:39:29 +00:00
# data= request.data.decode('utf-8')
# settings = json.loads(data)
2022-02-24 18:35:43 +00:00
2023-05-23 08:39:29 +00:00
# key = settings['api_key']
2022-04-07 17:35:38 +00:00
2023-05-23 08:39:29 +00:00
# with open('./api_keys.txt') as f:
# lines = f.readlines()
# if len(lines) == 1:
# lines.append(str(key))
# elif len(lines) == 2:
# lines[1] = str(key)
2022-04-07 17:35:38 +00:00
2023-05-23 08:39:29 +00:00
# with open('./api_keys.txt', 'w') as f:
# for line in lines:
# f.write(line)
# return index()
2021-11-18 19:41:50 +00:00
2023-01-09 09:11:55 +00:00
@app.route ( " /saveMovieAPIKey " , methods = [ ' PUT ' , ' POST ' ] )
def saveMovieAPIKey ( ) :
data = request . data . decode ( ' utf-8 ' )
settings = json . loads ( data )
key = settings [ ' api_key ' ]
with open ( ' movie_api_key.txt ' , ' w ' ) as f :
f . write ( str ( key ) )
return index ( )
2023-03-08 07:04:23 +00:00
@app.route ( " /saveIpoAPIKey " , methods = [ ' PUT ' , ' POST ' ] )
def saveIpoAPIKey ( ) :
data = request . data . decode ( ' utf-8 ' )
settings = json . loads ( data )
key = settings [ ' api_key ' ]
with open ( ' ipo_api_key.txt ' , ' w ' ) as f :
f . write ( str ( key ) )
return index ( )
2023-03-16 11:00:25 +00:00
@app.route ( " /savePortfolioSettings " , methods = [ ' PUT ' , ' POST ' ] )
def savePortfolioSettings ( ) :
2023-03-16 11:08:13 +00:00
2023-03-16 11:00:25 +00:00
data = request . data . decode ( ' utf-8 ' )
settings = json . loads ( data )
2023-03-16 11:08:13 +00:00
#THIS IS TO CREATE PORTFOLIO JSON FILE IF IT DOESN'T EXIST
initialize_json = ' { " symbols " : {} } '
if ' portfolio_settings.json ' not in os . listdir ( ' csv/ ' ) :
with open ( ' csv/portfolio_settings.json ' , ' w ' ) as f :
f . write ( initialize_json )
try :
f = open ( ' csv/portfolio_settings.json ' )
portfolio = json . load ( f )
f . close ( )
2023-03-16 11:00:25 +00:00
2023-03-16 11:08:13 +00:00
shares1 = settings [ ' shares ' ]
cost1 = settings [ ' cost ' ]
symbol1 = settings [ ' symbol ' ]
days1 = settings [ ' days ' ]
2023-07-11 07:51:32 +00:00
# day_start = datetime.datetime.strptime(str(days1), "%Y-%m-%d")
# day_today = datetime.datetime.strptime(datetime.datetime.now(pytz.utc).strftime("%Y-%m-%d"), "%Y-%m-%d")
# days1 = str((day_today - day_start).days)
2023-03-16 11:00:25 +00:00
2023-03-16 11:08:13 +00:00
portfolio [ ' symbols ' ] [ symbol1 ] = { ' shares ' : shares1 , ' day ' : days1 , ' cost ' : cost1 }
2023-03-16 11:00:25 +00:00
2023-03-16 11:08:13 +00:00
f = open ( " csv/portfolio_settings.json " , ' w+ ' )
json . dump ( portfolio , f )
f . close ( )
except :
pass
2023-03-16 11:00:25 +00:00
2023-03-16 11:08:13 +00:00
return index ( )
2023-03-16 11:00:25 +00:00
2023-03-17 09:18:01 +00:00
@app.route ( " /savePortfolioCryptoSettings " , methods = [ ' PUT ' , ' POST ' ] )
def savePortfolioCryptoSettings ( ) :
data = request . data . decode ( ' utf-8 ' )
settings = json . loads ( data )
#THIS IS TO CREATE PORTFOLIO JSON FILE IF IT DOESN'T EXIST
initialize_json = ' { " symbols " : {} } '
if ' portfolio_crypto_settings.json ' not in os . listdir ( ' csv/ ' ) :
with open ( ' csv/portfolio_crypto_settings.json ' , ' w ' ) as f :
f . write ( initialize_json )
try :
f = open ( ' csv/portfolio_crypto_settings.json ' )
portfolio = json . load ( f )
f . close ( )
shares1 = settings [ ' shares ' ]
cost1 = settings [ ' cost ' ]
symbol1 = settings [ ' symbol ' ]
days1 = settings [ ' days ' ]
2023-07-11 08:04:56 +00:00
# day_start = datetime.datetime.strptime(str(days1), "%Y-%m-%d")
# day_today = datetime.datetime.strptime(datetime.datetime.now(pytz.utc).strftime("%Y-%m-%d"), "%Y-%m-%d")
# days1 = str((day_today - day_start).days)
2023-03-17 09:18:01 +00:00
portfolio [ ' symbols ' ] [ symbol1 ] = { ' shares ' : shares1 , ' day ' : days1 , ' cost ' : cost1 }
f = open ( " csv/portfolio_crypto_settings.json " , ' w+ ' )
json . dump ( portfolio , f )
f . close ( )
except :
pass
return index ( )
2023-03-16 11:00:25 +00:00
2023-03-17 08:53:07 +00:00
@app.route ( " /deletePortfolioSettings " , methods = [ ' PUT ' , ' POST ' ] )
def deletePortfolioSettings ( ) :
data = request . data . decode ( ' utf-8 ' )
settings = json . loads ( data )
try :
g = open ( ' csv/portfolio_settings.json ' )
portfolio = json . load ( g )
g . close ( )
symbol = settings
# DELETE SYMBOLS FUNCTION
try :
portfolio [ ' symbols ' ] . pop ( symbol )
except :
pass
f = open ( " csv/portfolio_settings.json " , ' w+ ' )
json . dump ( portfolio , f )
f . close ( )
except :
pass
return index ( )
2023-03-17 09:18:01 +00:00
@app.route ( " /deletePortfolioCryptoSettings " , methods = [ ' PUT ' , ' POST ' ] )
def deletePortfolioCryptoSettings ( ) :
data = request . data . decode ( ' utf-8 ' )
settings = json . loads ( data )
try :
g = open ( ' csv/portfolio_crypto_settings.json ' )
portfolio = json . load ( g )
g . close ( )
symbol = settings
# DELETE SYMBOLS FUNCTION
try :
portfolio [ ' symbols ' ] . pop ( symbol )
except :
pass
f = open ( " csv/portfolio_crypto_settings.json " , ' w+ ' )
json . dump ( portfolio , f )
f . close ( )
except :
pass
return index ( )
2023-03-17 08:53:07 +00:00
2021-11-17 19:34:13 +00:00
@app.route ( " /screensaver " , methods = [ ' PUT ' , ' POST ' ] )
def screensaver ( ) :
global displaying_screensaver
global ticker
2022-03-05 14:03:11 +00:00
#global api_caller
2021-11-17 19:34:13 +00:00
global screensaver_p
2022-02-26 15:50:10 +00:00
2021-11-17 19:34:13 +00:00
data = str ( request . data )
2021-11-18 17:50:50 +00:00
if displaying_screensaver :
screensaver_p . close ( )
2022-02-26 15:50:10 +00:00
else :
2022-03-05 14:03:11 +00:00
#api_caller.close()
2022-02-26 15:50:10 +00:00
ticker . close ( )
2021-12-06 20:10:14 +00:00
2021-11-17 19:34:13 +00:00
if " Pulsating Colors " in data :
2023-02-23 05:29:15 +00:00
screensaver_p = pexpect . spawn ( " sudo -E python3 pulsing-colors.py --led-gpio-mapping=adafruit-hat --led-slowdown-gpio=4 -r 32 --led-cols 64 -c 2 -P 1 " )
2021-11-17 19:34:13 +00:00
elif " Rotating Square " in data :
2023-02-23 05:29:15 +00:00
screensaver_p = pexpect . spawn ( " sudo ./demo --led-gpio-mapping=adafruit-hat --led-rows=32 --led-cols=128 -D 0 " )
2021-11-17 19:34:13 +00:00
elif " Pulsating brightness " in data :
2023-02-23 05:29:15 +00:00
screensaver_p = pexpect . spawn ( " sudo -E python3 pulsing-brightness.py --led-gpio-mapping=adafruit-hat --led-slowdown-gpio=4 -r 32 --led-cols 64 -c 2 -P 1 " )
2021-11-17 19:34:13 +00:00
2023-02-23 05:29:15 +00:00
elif " Volume Bars " in data :
screensaver_p = pexpect . spawn ( " sudo ./demo --led-gpio-mapping=adafruit-hat --led-rows=32 --led-cols=128 -D 9 " )
elif " Evolution of Color " in data :
screensaver_p = pexpect . spawn ( " sudo ./demo --led-gpio-mapping=adafruit-hat --led-rows=32 --led-cols=128 -D 10 -m 100 " )
elif " Conway ' s Game of Life " in data :
screensaver_p = pexpect . spawn ( " sudo ./demo --led-gpio-mapping=adafruit-hat --led-rows=32 --led-cols=128 -D 7 -m 100 " )
elif " Abelian Sandpile Model " in data :
screensaver_p = pexpect . spawn ( " sudo ./demo --led-gpio-mapping=adafruit-hat --led-rows=32 --led-cols=128 -D 6 " )
elif " Grayscale Block " in data :
screensaver_p = pexpect . spawn ( " sudo ./demo --led-gpio-mapping=adafruit-hat --led-rows=32 --led-cols=128 -D 5 " )
2021-11-17 19:34:13 +00:00
2021-12-06 20:10:14 +00:00
elif " Sleep " in data :
screensaver_p = DummyProcess ( )
2022-01-15 11:11:32 +00:00
else : #default in case user hasnt set one yet
screensaver_p = DummyProcess ( )
2023-04-27 14:32:54 +00:00
scheduled_b . terminate ( )
2021-11-17 19:34:13 +00:00
displaying_screensaver = True
return index ( )
2021-09-19 18:19:09 +00:00
def combine_dict ( current_settings , input_symbols , current_key ) :
# removes keys not in input from current_settings[current_key] and adds keys not in current from input
2021-12-10 17:06:47 +00:00
new_settings = copy . deepcopy ( current_settings )
new_settings [ current_key ] = { }
2021-09-19 18:19:09 +00:00
current_symbols = list ( current_settings [ current_key ] . keys ( ) )
# add any stock that arent current in the settings
for IS in input_symbols :
if IS not in current_symbols :
2021-12-10 17:06:47 +00:00
new_settings [ current_key ] [ IS ] = [ ]
else :
new_settings [ current_key ] [ IS ] = current_settings [ current_key ] [ IS ]
2021-12-14 15:38:09 +00:00
2021-09-19 18:19:09 +00:00
2021-12-10 17:06:47 +00:00
return new_settings
2021-09-19 18:19:09 +00:00
def save_trade_settings ( input_settings ) :
2022-03-05 14:03:11 +00:00
2023-06-12 08:31:08 +00:00
commodities_dict = {
" Aluminum " : " ALU " , " Brent Crude Oil " : " BRENTOIL " , " Coffee " : " COFFEE " , " Copper " : " XCU " , " Corn " : " CORN " , " Cotton " : " COTTON " , " Gold " : " XAU " ,
" Palladium " : " XPD " , " Platinum " : " XPT " , " Rice " : " RICE " , " Silver " : " XAG " , " Soybean " : " SOYBEAN " , " Sugar " : " SUGAR " , " Wheat " : " WHEAT " ,
" WTI Crude Oil " : " WTIOIL " , " Ethanol " : " ETHANOL " , " Crude Palm Oil " : " CPO " , " Natural Gas " : " NG " , " Cocoa " : " COCOA " , " Robusta " : " ROBUSTA " ,
" Lumber " : " LUMBER " , " Rubber " : " RUBBER " , " Live Cattle " : " CATTLE " , " Lean Hog " : " HOG "
}
2023-06-12 08:57:05 +00:00
indices_dict = { ' BIST 100 - Istanbul ' : ' XU100.IS ' , ' SET - Bangkok ' : ' ^SET.BK ' , ' PSEI - Philippines ' : ' PSEI.PS ' , ' JKSE - Jakarta ' : ' ^JKSE ' ,
' TAIEX - Taiwan ' : ' ^TWII ' , ' HSI - Hong Kong ' : ' ^HSI ' , ' SENSEX - India ' : ' ^BSESN ' , ' NIFTY 50 - India ' : ' ^NSEI ' , ' Nikkei 225 - Japan ' : ' ^N225 ' ,
' SZSE - Shenzhen ' : ' 399001.SZ ' , ' SSE - Shanghai ' : ' 000001.SS ' , ' STI - Singapore ' : ' ^STI ' , ' ASX 200 - Australia ' : ' ^AXJO ' ,
' NZX 50 - New Zealand ' : ' ^NZ50 ' , ' KOSPI - South Korea ' : ' ^KS11 ' , ' Euronext 100 - EU ' : ' ^N100 ' , ' STOXX 50 - EU ' : ' ^STOXX50E ' ,
' STOXX 600 - EU ' : ' ^STOXX ' , ' PSI 20 - Lisbon ' : ' PSI20.LS ' , ' FTSE MIB - Italy ' : ' FTSEMIB.MI ' , ' OMXH25 - Helsinki ' : ' ^OMXH25 ' ,
' OMXS30 - Stockholm ' : ' ^OMX ' , ' AEX - Amsterdam ' : ' ^AEX ' , ' ATX - Austria ' : ' ^ATX ' , ' BEL 20 - Brussels ' : ' ^BFX ' ,
' SSMI - Switzerland ' : ' ^SSMI ' , ' CAC 40 - France ' : ' ^FCHI ' , ' IBEX 35 - Spain ' : ' ^IBEX ' , ' FTSE 100 - UK ' : ' ^FTSE ' , ' Dax - Germany ' : ' ^GDAXI ' ,
' Bovespa - Brazil ' : ' ^BVSP ' , ' IPC - Mexico ' : ' ^MXX ' , ' S&P/TSX - Canada ' : ' ^GSPTSE ' , ' VIX - USA ' : ' ^VIX ' , ' Russell 2000 - USA ' : ' ^RUT ' ,
2023-07-06 06:59:21 +00:00
' Nasdaq Composite - USA ' : ' ^IXIC ' , ' Nasdaq 100 - USA ' : ' ^NDX ' , ' S&P 500 - USA ' : ' ^GSPC ' , ' Dow Jones - USA ' : ' ^DJI ' , ' U.S. Dollar (DXY) - USA ' : ' DX-Y.NYB ' ,
' E-Mini Dow Jones - USA ' : ' YM=F ' , ' E-Mini S&P 500 - USA ' : ' ES=F ' , ' E-Mini Nasdaq 100 - USA ' : ' NQ=F ' , ' E-Mini Russell 2000 - USA ' : ' RTY=F ' }
2023-06-12 08:57:05 +00:00
2023-06-30 11:59:11 +00:00
try :
filename = input_settings [ ' feature ' ] . lower ( ) + ' _settings.json '
f = open ( ' csv/ ' + filename , ' r ' )
current_settings = json . load ( f )
f . close ( )
except :
if input_settings [ ' feature ' ] . lower ( ) == ' stocks ' :
current_settings = { " feature " : " Stocks " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " percent " : False , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " AAPL " : { " current " : " 164.02 " , " change " : " -1.59 " , " percent_change " : " -0.97 " } , " MSFT " : { " current " : " 288.29 " , " change " : " -1.32 " , " percent_change " : " -0.46 " } , " GOOG " : { " current " : " 2586.74 " , " change " : " -34.01 " , " percent_change " : " -1.31 " } , " NFLX " : { " current " : " 380.52 " , " change " : " -7.59 " , " percent_change " : " -1.99 " } } , " prepost " : False }
elif input_settings [ ' feature ' ] . lower ( ) == ' crypto ' :
current_settings = { " feature " : " Stocks " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " percent " : False , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " ETH,USD " : { " current " : " 2629.32 " , " 24hr_change " : " -27.6432 " , " percent_change " : " -1.04 " } , " BTC,USD " : { " current " : " 38161.00 " , " 24hr_change " : " -50.8386 " , " percent_change " : " -0.13 " } , " BNB,USD " : { " current " : " 372.57 " , " 24hr_change " : " 0.4140 " , " percent_change " : " 0.11 " } , " ADA,BTC " : { " current " : " 0.0000 " , " 24hr_change " : " -0.0000 " , " percent_change " : " -3.74 " } } }
elif input_settings [ ' feature ' ] . lower ( ) == ' indices ' :
current_settings = { " feature " : " Stocks " , " speed " : " fast " , " speed2 " : " slow " , " animation " : " up " , " percent " : True , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " ^HSI " : { " name " : " HSI " , " current " : " 18083.06 " , " point_change " : " 1003.55 " , " percent_change " : " 5.88 " } , " ^GSPC " : { " name " : " S&P 500 " , " current " : " 3790.93 " , " point_change " : " 112.50 " , " percent_change " : " 3.06 " } , " ^RUT " : { " name " : " RUSSELL 2000 " , " current " : " 1775.77 " , " point_change " : " 66.90 " , " percent_change " : " 3.91 " } , " ^GDAXI " : { " name " : " DAX " , " current " : " 12648.95 " , " point_change " : " -21.53 " , " percent_change " : " -0.17 " } , " ^FTSE " : { " name " : " FTSE 100 " , " current " : " 7058.68 " , " point_change " : " -27.82 " , " percent_change " : " -0.39 " } , " ^FCHI " : { " name " : " CAC 40 " , " current " : " 6031.45 " , " point_change " : " -8.24 " , " percent_change " : " -0.14 " } , " 399001.SZ " : { " name " : " SZSE " , " current " : " 10778.61 " , " point_change " : " -140.83 " , " percent_change " : " -1.29 " } , " ^STOXX50E " : { " name " : " STOXX 50 " , " current " : " 3476.55 " , " point_change " : " -7.93 " , " percent_change " : " -0.23 " } , " ^AXJO " : { " name " : " ASX 200 " , " current " : " 6815.70 " , " point_change " : " 116.40 " , " percent_change " : " 1.74 " } , " ^DJI " : { " name " : " DOW JONES " , " current " : " 30316.32 " , " point_change " : " 825.43 " , " percent_change " : " 2.80 " } , " ^STOXX " : { " name " : " STOXX 600 " , " current " : " 402.33 " , " point_change " : " -0.70 " , " percent_change " : " -0.17 " } } }
elif input_settings [ ' feature ' ] . lower ( ) == ' commodities ' :
current_settings = { " feature " : " Stocks " , " speed " : " fast " , " speed2 " : " fast " , " animation " : " down " , " percent " : True , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " BRENTOIL " : { " current " : " 123.053 " , " unit " : " bbl " , " 24hr_change " : " 1.0150 " , " percent_change " : " 0.83 " } , " WTIOIL " : { " current " : " 121.588 " , " unit " : " bbl " , " 24hr_change " : " 0.8902 " , " percent_change " : " 0.74 " } , " XAU " : { " current " : " 1821.205 " , " unit " : " oz " , " 24hr_change " : " 4.0045 " , " percent_change " : " 0.22 " } , " XAG " : { " current " : " 21.1034 " , " unit " : " oz " , " 24hr_change " : " -0.0550 " , " percent_change " : " -0.26 " } , " XCU " : { " current " : " 0.2633 " , " unit " : " oz " , " 24hr_change " : " -0.0006 " , " percent_change " : " -0.22 " } , " NG " : { " current " : " 8.6595 " , " unit " : " mmbtu " , " 24hr_change " : " -0.0236 " , " percent_change " : " -0.27 " } , " WHEAT " : { " current " : " 393.123 " , " unit " : " ton " , " 24hr_change " : " -1.2642 " , " percent_change " : " -0.32 " } , " COTTON " : { " current " : " 1.4494 " , " unit " : " lb " , " 24hr_change " : " 0.0004 " , " percent_change " : " 0.03 " } , " RICE " : { " current " : " 16.3849 " , " unit " : " cwt " , " 24hr_change " : " 0.0093 " , " percent_change " : " 0.06 " } , " SUGAR " : { " current " : " 0.1866 " , " unit " : " lb " , " 24hr_change " : " -0.0007 " , " percent_change " : " -0.40 " } , " COCOA " : { " current " : " 2374.074 " , " unit " : " ton " , " 24hr_change " : " 2.5206 " , " percent_change " : " 0.11 " } , " LUMBER " : { " current " : " 527.842 " , " unit " : " oz " , " 24hr_change " : " 0.2641 " , " percent_change " : " 0.05 " } , " SOYBEAN " : { " current " : " 17.1621 " , " unit " : " bu " , " 24hr_change " : " 0.0270 " , " percent_change " : " 0.16 " } } }
elif input_settings [ ' feature ' ] . lower ( ) == ' forex ' :
current_settings = { " feature " : " Stocks " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " percent " : False , " point " : True , " logos " : True , " chart " : False , " title " : True , " symbols " : { " EUR,USD " : { " current " : " 1.1334 " , " 24hr_change " : " -0.0003 " , " percent_change " : " 0.00 " } , " USD,JPY " : { " current " : " 114.960 " , " 24hr_change " : " 0.1600 " , " percent_change " : " 0.14 " } , " GBP,USD " : { " current " : " 1.3577 " , " 24hr_change " : " -0.0031 " , " percent_change " : " -0.23 " } , " USD,CHF " : { " current " : " 0.9198 " , " 24hr_change " : " 0.0029 " , " percent_change " : " 0.32 " } } }
2022-04-07 17:35:38 +00:00
2021-09-19 18:19:09 +00:00
current_settings [ ' speed ' ] = input_settings [ ' speed ' ] . lower ( )
2022-03-07 16:47:07 +00:00
current_settings [ ' speed2 ' ] = input_settings [ ' speed2 ' ] . lower ( )
2021-09-19 18:19:09 +00:00
current_settings [ ' animation ' ] = input_settings [ ' animation ' ] . lower ( )
current_settings [ ' percent ' ] = input_settings [ ' percent ' ]
current_settings [ ' point ' ] = input_settings [ ' point ' ]
2021-09-23 19:44:14 +00:00
current_settings [ ' logos ' ] = input_settings [ ' logos ' ]
2021-09-19 18:19:09 +00:00
current_settings [ ' title ' ] = input_settings [ ' title ' ]
2023-03-27 09:16:01 +00:00
if input_settings [ ' feature ' ] == ' Stocks ' :
current_settings [ ' prepost ' ] = input_settings [ ' prepost ' ]
2023-03-17 09:41:40 +00:00
if input_settings [ ' feature ' ] == ' Stocks ' or input_settings [ ' feature ' ] == ' Crypto ' :
2023-06-12 08:31:08 +00:00
current_settings [ ' chart ' ] = input_settings [ ' chart ' ]
if input_settings [ ' feature ' ] == ' Commodities ' :
try :
input_settings [ ' symbols ' ] = [ commodities_dict [ symbol ] for symbol in input_settings [ ' symbols ' ] ]
except :
pass
2023-06-12 08:57:05 +00:00
if input_settings [ ' feature ' ] == ' Indices ' :
try :
input_settings [ ' symbols ' ] = [ indices_dict [ symbol ] for symbol in input_settings [ ' symbols ' ] ]
except :
pass
2021-09-19 18:19:09 +00:00
current_settings = combine_dict ( current_settings , input_settings [ ' symbols ' ] , ' symbols ' )
2023-06-30 11:59:11 +00:00
with open ( ' csv/ ' + filename , ' w ' ) as f :
json . dump ( current_settings , f )
2022-03-06 09:29:42 +00:00
f = open ( ' csv/last_updates.json ' , ' r ' )
last_updates = json . load ( f )
f . close ( )
2022-03-06 18:58:27 +00:00
if any ( [ current_settings [ ' symbols ' ] [ k ] == [ ] for k in input_settings [ ' symbols ' ] ] ) :
last_updates [ input_settings [ ' feature ' ] . lower ( ) ] [ ' force ' ] = True
2023-03-27 10:19:21 +00:00
if input_settings [ ' feature ' ] == ' Stocks ' :
last_updates [ ' prepost ' ] [ ' force ' ] = True
2023-06-30 11:59:11 +00:00
2022-04-14 17:03:50 +00:00
f = open ( ' csv/last_updates.json ' , ' w ' )
2022-03-06 09:29:42 +00:00
json . dump ( last_updates , f )
f . close ( )
2022-03-05 15:35:56 +00:00
2021-11-16 19:11:32 +00:00
2021-09-19 18:19:09 +00:00
def save_weather_settings ( input_settings ) :
2021-12-04 15:54:31 +00:00
2021-09-19 18:19:09 +00:00
filename = ' current_weather.json ' if input_settings [ ' feature ' ] == ' Current Weather ' else ' daily_weather.json '
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/ ' + filename , ' r ' )
current_settings = json . load ( f )
f . close ( )
except :
if input_settings [ ' feature ' ] == ' Current Weather ' :
current_settings = { " feature " : " Current Weather " , " speed " : " medium " , " animation " : " down " , " temp " : " celsius " , " wind_speed " : " miles/hour " , " colour " : " white " , " city_colour " : " yellow " , " title " : True , " locations " : { " Hong Kong " : { " main_weather " : " Clouds " , " description " : " overcast clouds " , " temp " : 30.4 , " min_temp " : 28.2 , " max_temp " : 30.8 , " feels_like " : 36.0 , " humidity " : 77 , " clouds " : 100 , " visibility " : 10000 , " uv " : 5.3 , " rain_chance " : 17 , " wind_speed " : 11.1 , " wind_direction " : 193 , " is_day " : 1 } } , " current_weather " : True , " speed2 " : " medium " }
else :
current_settings = { " feature " : " Current Weather " , " speed " : " medium " , " animation " : " down " , " temp " : " celsius " , " wind_speed " : " miles/hour " , " colour " : " white " , " city_colour " : " yellow " , " title " : True , " locations " : { " Hong Kong " : [ { " main_weather " : " Thunderstorm " , " description " : " Slight or moderate " , " min_temp " : 28.2 , " max_temp " : 30.8 , " temp " : 30.4 , " rain_chance " : 17 , " humidity " : 77 , " wind_speed " : 11.1 , " uv " : 5.3 , " clouds " : 100 , " wind_direction " : 193 , " visibility " : 10000 } , { " main_weather " : " Clouds " , " description " : " overcast clouds " , " min_temp " : 27.9 , " max_temp " : 32.3 } , { " main_weather " : " Thunderstorm " , " description " : " Slight or moderate " , " min_temp " : 27.7 , " max_temp " : 31.2 } , { " main_weather " : " Thunderstorm " , " description " : " Slight or moderate " , " min_temp " : 28.1 , " max_temp " : 31.5 } , { " main_weather " : " Rain " , " description " : " light intensity shower rain " , " min_temp " : 28.5 , " max_temp " : 31.1 } , { " main_weather " : " Clouds " , " description " : " overcast clouds " , " min_temp " : 28.9 , " max_temp " : 31.5 } , { " main_weather " : " Clouds " , " description " : " scattered clouds " , " min_temp " : 29.0 , " max_temp " : 31.9 } ] } , " current_weather " : False , " speed2 " : " medium " }
2021-09-19 18:19:09 +00:00
current_settings [ ' speed ' ] = input_settings [ ' speed ' ] . lower ( )
2022-03-07 16:47:07 +00:00
current_settings [ ' speed2 ' ] = input_settings [ ' speed2 ' ] . lower ( )
2021-09-19 18:19:09 +00:00
current_settings [ ' animation ' ] = input_settings [ ' animation ' ] . lower ( )
current_settings [ ' temp ' ] = input_settings [ ' temp ' ] . lower ( )
current_settings [ ' wind_speed ' ] = input_settings [ ' wind_speed ' ] . lower ( )
current_settings [ ' title ' ] = input_settings [ ' title ' ]
if input_settings [ ' feature ' ] == ' Daily Forecast ' :
current_settings [ ' current_weather ' ] = input_settings [ ' current_weather ' ]
2023-06-30 11:59:11 +00:00
2021-12-14 15:38:09 +00:00
current_settings = combine_dict ( current_settings , input_settings [ ' locations ' ] , ' locations ' )
2021-09-19 18:19:09 +00:00
2023-06-30 11:59:11 +00:00
with open ( ' csv/ ' + filename , ' w+ ' ) as f :
json . dump ( current_settings , f )
2022-03-06 09:29:42 +00:00
f = open ( ' csv/last_updates.json ' , ' r ' )
last_updates = json . load ( f )
f . close ( )
2022-03-06 18:58:27 +00:00
if any ( [ current_settings [ ' locations ' ] [ k ] == [ ] for k in input_settings [ ' locations ' ] ] ) :
last_updates [ ' weather ' ] [ ' force ' ] = True
2022-03-06 09:29:42 +00:00
2022-04-14 17:03:50 +00:00
f = open ( ' csv/last_updates.json ' , ' w ' )
2022-03-06 09:29:42 +00:00
json . dump ( last_updates , f )
f . close ( )
2021-11-16 19:11:32 +00:00
2023-06-30 11:59:11 +00:00
2021-09-19 18:19:09 +00:00
def save_news_settings ( input_settings ) :
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
filename = ' news_settings.json '
try :
f = open ( ' csv/ ' + filename , ' r ' )
current_settings = json . load ( f )
f . close ( )
except :
current_settings = { " feature " : " News " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " country " : " US " , " category " : " General " , " title " : True , " headlines " : [ ] , " use_category " : True , " use_country " : False , " num_headlines " : " 10 " }
2022-01-24 18:40:06 +00:00
2021-09-19 18:19:09 +00:00
current_settings [ ' speed ' ] = input_settings [ ' speed ' ] . lower ( )
2022-03-07 16:47:07 +00:00
current_settings [ ' speed2 ' ] = input_settings [ ' speed2 ' ] . lower ( )
2021-09-19 18:19:09 +00:00
current_settings [ ' animation ' ] = input_settings [ ' animation ' ] . lower ( )
current_settings [ ' title ' ] = input_settings [ ' title ' ]
2022-02-24 19:42:33 +00:00
current_settings [ ' category ' ] = input_settings [ ' category ' ]
2021-09-19 18:19:09 +00:00
current_settings [ ' country ' ] = input_settings [ ' country ' ]
2022-02-24 19:42:33 +00:00
current_settings [ ' use_category ' ] = input_settings [ ' use_category ' ]
current_settings [ ' use_country ' ] = input_settings [ ' use_country ' ]
current_settings [ ' num_headlines ' ] = input_settings [ ' num_headlines ' ]
2021-09-19 18:19:09 +00:00
2023-06-30 11:59:11 +00:00
with open ( ' csv/ ' + filename , ' w ' ) as f :
json . dump ( current_settings , f )
2022-03-06 09:29:42 +00:00
f = open ( ' csv/last_updates.json ' , ' r ' )
last_updates = json . load ( f )
f . close ( )
last_updates [ ' news ' ] [ ' force ' ] = True
2022-04-14 17:03:50 +00:00
f = open ( ' csv/last_updates.json ' , ' w ' )
2022-03-06 09:29:42 +00:00
json . dump ( last_updates , f )
f . close ( )
2021-09-19 18:19:09 +00:00
2023-01-09 09:11:55 +00:00
def save_movie_settings ( input_settings ) :
filename = ' movie_settings.json '
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/ ' + filename , ' r ' )
current_settings = json . load ( f )
f . close ( )
except :
current_settings = { " feature " : " Movies " , " speed " : " fast " , " speed2 " : " fast " , " animation " : " continuous " , " category " : " Popular All " , " title " : True , " movies " : [ { " title " : " Avatar: The Way of Water " , " language " : " EN " , " votes " : " 8.1 " , " date " : " 2022-12-14 " , " media_type " : " Movie " , " genre " : [ " Sci-Fi " , " Action " , " Adventure " ] , " backdrop " : " 198vrF8k7mfQ4FjDJsBmdQcaiyq.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/198vrF8k7mfQ4FjDJsBmdQcaiyq.jpg " } , { " title " : " Violent Night " , " language " : " EN " , " votes " : " 7.3 " , " date " : " 2022-11-30 " , " media_type " : " Movie " , " genre " : [ " Action " , " Comedy " , " Crime " , " Thriller " ] , " backdrop " : " g9Kb3RaLjsybI1jpqHQ3QZTCYpB.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/g9Kb3RaLjsybI1jpqHQ3QZTCYpB.jpg " } , { " title " : " Avatar " , " language " : " EN " , " votes " : " 7.5 " , " date " : " 2009-12-15 " , " media_type " : " Movie " , " genre " : [ " Action " , " Adventure " , " Fantasy " , " Sci-Fi " ] , " backdrop " : " Yc9q6QuWrMp9nuDm5R8ExNqbEq.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/Yc9q6QuWrMp9nuDm5R8ExNqbEq.jpg " } , { " title " : " The Banshees of Inisherin " , " language " : " EN " , " votes " : " 7.7 " , " date " : " 2022-10-21 " , " media_type " : " Movie " , " genre " : [ " Drama " , " Comedy " ] , " backdrop " : " 9Md4CqzUGDtK5oEkRRvozLkGc9d.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/9Md4CqzUGDtK5oEkRRvozLkGc9d.jpg " } , { " title " : " Wednesday " , " language " : " EN " , " votes " : " 8.8 " , " date " : " 2022-11-23 " , " media_type " : " Tv " , " genre " : [ " Sci-Fi & Fantasy " , " Mystery " , " Comedy " ] , " backdrop " : " iHSwvRVsRyxpX7FE7GbviaDvgGZ.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/iHSwvRVsRyxpX7FE7GbviaDvgGZ.jpg " } , { " title " : " 1923 " , " language " : " EN " , " votes " : " 8.8 " , " date " : " 2022-12-18 " , " media_type " : " Tv " , " genre " : [ " Drama " , " Western " ] , " backdrop " : " 9I6LgZ5110ycg4pyobJxGTFWFCF.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/9I6LgZ5110ycg4pyobJxGTFWFCF.jpg " } , { " title " : " The Recruit " , " language " : " EN " , " votes " : " 7.2 " , " date " : " 2022-12-16 " , " media_type " : " Tv " , " genre " : [ " Drama " , " Crime " ] , " backdrop " : " rey2eh6752C2UbGYRileKk1PVTo.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/rey2eh6752C2UbGYRileKk1PVTo.jpg " } , { " title " : " Black Adam " , " language " : " EN " , " votes " : " 7.2 " , " date " : " 2022-10-19 " , " media_type " : " Movie " , " genre " : [ " Action " , " Fantasy " , " Sci-Fi " ] , " backdrop " : " bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/bQXAqRx2Fgc46uCVWgoPz5L5Dtr.jpg " } , { " title " : " Nanny " , " language " : " EN " , " votes " : " 5.4 " , " date " : " 2022-11-23 " , " media_type " : " Movie " , " genre " : [ " Horror " , " Drama " ] , " backdrop " : " nfuPlOK6ywGzKGb0yf7VJKyTFWb.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/nfuPlOK6ywGzKGb0yf7VJKyTFWb.jpg " } , { " title " : " Tom Clancys Jack Ryan " , " language " : " EN " , " votes " : " 7.7 " , " date " : " 2018-08-30 " , " media_type " : " Tv " , " genre " : [ " Action & Adventure " , " Drama " , " War & Politics " ] , " backdrop " : " 6ovk8nrrSmN1ieT14zBAxcHbMU7.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/6ovk8nrrSmN1ieT14zBAxcHbMU7.jpg " } , { " title " : " High Heat " , " language " : " EN " , " votes " : " 6.5 " , " date " : " 2022-12-16 " , " media_type " : " Movie " , " genre " : [ " Action " , " Comedy " , " Crime " ] , " backdrop " : " gjNM0odqkq5F7V58OjfTxPJ9p9Z.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/gjNM0odqkq5F7V58OjfTxPJ9p9Z.jpg " } , { " title " : " A Not So Merry Christmas " , " language " : " ES " , " votes " : " 4.8 " , " date " : " 2022-12-20 " , " media_type " : " Movie " , " genre " : [ " Comedy " ] , " backdrop " : " 8uyJzaiGbiezZ9K48Cy5wXeqnYw.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/8uyJzaiGbiezZ9K48Cy5wXeqnYw.jpg " } , { " title " : " Guillermo del Toros Pinocchio " , " language " : " EN " , " votes " : " 8.5 " , " date " : " 2022-11-09 " , " media_type " : " Movie " , " genre " : [ " Animation " , " Fantasy " , " Drama " ] , " backdrop " : " e782pDRAlu4BG0ahd777n8zfPzZ.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/e782pDRAlu4BG0ahd777n8zfPzZ.jpg " } , { " title " : " His Dark Materials " , " language " : " EN " , " votes " : " 8.0 " , " date " : " 2019-11-03 " , " media_type " : " Tv " , " genre " : [ " Sci-Fi & Fantasy " , " Drama " ] , " backdrop " : " dGOhplPZTL0SKyb0ocTFBHIuKUC.jpg " , " logo " : " https://image.tmdb.org/t/p/w500/dGOhplPZTL0SKyb0ocTFBHIuKUC.jpg " } , { " title " : " The Fabelmans " , " language " : " EN " , " votes " : " 7.8 " , " date " : " 2022-11-11 " , " media_type " : " Movie " , " genre " : [ " Drama " , " Comedy " ] , " backdrop "
2023-01-09 09:11:55 +00:00
current_settings [ ' speed ' ] = input_settings [ ' speed ' ] . lower ( )
current_settings [ ' speed2 ' ] = input_settings [ ' speed2 ' ] . lower ( )
current_settings [ ' animation ' ] = input_settings [ ' animation ' ] . lower ( )
current_settings [ ' title ' ] = input_settings [ ' title ' ]
current_settings [ ' category ' ] = input_settings [ ' category ' ]
2023-06-30 11:59:11 +00:00
with open ( ' csv/ ' + filename , ' w ' ) as f :
json . dump ( current_settings , f )
2023-01-09 09:11:55 +00:00
f = open ( ' csv/last_updates.json ' , ' r ' )
last_updates = json . load ( f )
f . close ( )
last_updates [ ' movies ' ] [ ' force ' ] = True
f = open ( ' csv/last_updates.json ' , ' w ' )
json . dump ( last_updates , f )
f . close ( )
2023-03-08 07:04:23 +00:00
def save_ipo_settings ( input_settings ) :
filename = ' ipo_settings.json '
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/ ' + filename , ' r ' )
current_settings = json . load ( f )
f . close ( )
except :
current_settings = { " feature " : " IPO " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " symbols " : [ " No Data " ] }
2023-01-09 09:11:55 +00:00
2023-03-08 07:04:23 +00:00
current_settings [ ' speed ' ] = input_settings [ ' speed ' ] . lower ( )
current_settings [ ' speed2 ' ] = input_settings [ ' speed2 ' ] . lower ( )
current_settings [ ' animation ' ] = input_settings [ ' animation ' ] . lower ( )
current_settings [ ' title ' ] = input_settings [ ' title ' ]
2023-06-30 11:59:11 +00:00
with open ( ' csv/ ' + filename , ' w ' ) as f :
json . dump ( current_settings , f )
2023-03-08 07:04:23 +00:00
f = open ( ' csv/last_updates.json ' , ' r ' )
last_updates = json . load ( f )
f . close ( )
2023-01-09 09:11:55 +00:00
2023-03-08 07:04:23 +00:00
last_updates [ ' ipo ' ] [ ' force ' ] = True
f = open ( ' csv/last_updates.json ' , ' w ' )
json . dump ( last_updates , f )
f . close ( )
2023-06-14 08:28:09 +00:00
def save_economic_settings ( input_settings ) :
2023-06-14 09:53:32 +00:00
filename = ' economic_settings.json '
try :
f = open ( ' csv/ ' + filename , ' r ' )
current_settings = json . load ( f )
f . close ( )
except :
2023-06-14 10:03:19 +00:00
current_settings = { " feature " : " Economic Calendar " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " up " , " importance " : " Med - High " , " title " : True , " timezone " : " US/Eastern " , " countries " : [ " United States " ] , " events " : [ ] }
2023-06-14 08:28:09 +00:00
current_settings [ ' speed ' ] = input_settings [ ' speed ' ] . lower ( )
current_settings [ ' speed2 ' ] = input_settings [ ' speed2 ' ] . lower ( )
current_settings [ ' animation ' ] = input_settings [ ' animation ' ] . lower ( )
current_settings [ ' title ' ] = input_settings [ ' title ' ]
current_settings [ ' timezone ' ] = input_settings [ ' timezone ' ]
current_settings [ ' countries ' ] = input_settings [ ' countries ' ]
current_settings [ ' importance ' ] = input_settings [ ' importance ' ]
2023-06-14 09:53:32 +00:00
try :
f = open ( ' csv/ ' + filename , ' w ' )
json . dump ( current_settings , f )
f . close ( )
except :
2023-06-14 10:03:19 +00:00
with open ( ' csv/economic_settings.json ' , ' w ' ) as f :
2023-06-30 11:59:11 +00:00
json . dump ( current_settings , f )
2023-06-14 09:53:32 +00:00
2023-06-14 08:28:09 +00:00
f = open ( ' csv/last_updates.json ' , ' r ' )
last_updates = json . load ( f )
f . close ( )
last_updates [ ' economic ' ] [ ' force ' ] = True
f = open ( ' csv/last_updates.json ' , ' w ' )
json . dump ( last_updates , f )
f . close ( )
2021-09-19 18:19:09 +00:00
def save_sports_settings ( input_settings ) :
feature = input_settings [ ' feature ' ]
if feature == ' Sports (Upcoming Games) ' :
filename = ' upcoming_games.json '
2022-03-07 17:34:24 +00:00
update_key = ' sports_u '
2021-09-19 18:19:09 +00:00
elif feature == ' Sports (Past Games) ' :
filename = ' past_games.json '
2022-03-07 17:34:24 +00:00
update_key = ' sports_p '
2021-09-19 18:19:09 +00:00
elif feature == ' Sports (Live Games) ' :
filename = ' live_games.json '
2022-03-07 17:34:24 +00:00
update_key = ' sports_l '
2021-09-19 18:19:09 +00:00
elif feature == ' Sports (Team Stats) ' :
2021-09-25 09:40:29 +00:00
filename = ' league_tables.json '
2022-03-07 17:34:24 +00:00
update_key = ' sports_t '
2022-04-07 17:35:38 +00:00
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/ ' + filename , ' r ' )
current_settings = json . load ( f )
f . close ( )
except :
if feature == ' Sports (Upcoming Games) ' :
current_settings = { " feature " : " Sports (Upcoming Games) " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " leagues " : { " NFL " : [ { " date " : " 2021-11-22 " , " time " : " 01:20:00 " , " round " : " 11 " , " home_team " : " Los Angeles Chargers " , " home_score " : " 41 " , " away_team " : " Pittsburgh Steelers " , " away_score " : " 37 " } ] } }
elif feature == ' Sports (Past Games) ' :
current_settings = { " feature " : " Sports (Past Games) " , " speed2 " : " medium " , " speed " : " medium " , " animation " : " down " , " title " : True , " leagues " : { } }
elif feature == ' Sports (Live Games) ' :
current_settings = { " feature " : " Sports (Live Games) " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " leagues " : { } }
elif feature == ' Sports (Team Stats) ' :
current_settings = { " feature " : " Sports (Team Stats) " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : True , " top20 " : 20 , " leagues " : { } }
2021-09-19 18:19:09 +00:00
current_settings [ ' speed ' ] = input_settings [ ' speed ' ] . lower ( )
2022-03-07 16:47:07 +00:00
current_settings [ ' speed2 ' ] = input_settings [ ' speed2 ' ] . lower ( )
2021-09-19 18:19:09 +00:00
current_settings [ ' animation ' ] = input_settings [ ' animation ' ] . lower ( )
current_settings [ ' title ' ] = input_settings [ ' title ' ]
2021-09-25 09:40:29 +00:00
current_settings [ ' feature ' ] = input_settings [ ' feature ' ]
2021-09-19 18:19:09 +00:00
current_settings = combine_dict ( current_settings , input_settings [ ' leagues ' ] , ' leagues ' )
2023-06-30 11:59:11 +00:00
with open ( ' csv/ ' + filename , ' w ' ) as f :
json . dump ( current_settings , f )
2022-03-06 09:29:42 +00:00
f = open ( ' csv/last_updates.json ' , ' r ' )
last_updates = json . load ( f )
f . close ( )
2022-03-06 18:58:27 +00:00
if any ( [ current_settings [ ' leagues ' ] [ k ] == [ ] for k in input_settings [ ' leagues ' ] ] ) :
2022-03-07 17:34:24 +00:00
last_updates [ update_key ] [ ' force ' ] = True
2022-03-06 09:29:42 +00:00
2022-04-14 17:03:50 +00:00
f = open ( ' csv/last_updates.json ' , ' w ' )
2022-03-06 09:29:42 +00:00
json . dump ( last_updates , f )
f . close ( )
2021-11-16 19:11:32 +00:00
2023-06-30 11:59:11 +00:00
2021-09-19 18:19:09 +00:00
# for images and GIFs
def save_image_settings ( input_settings ) :
filename = ' image_settings.json ' if input_settings [ ' feature ' ] == ' Custom Images ' else ' GIF_settings.json '
current_settings = input_settings
current_settings [ ' speed ' ] = input_settings [ ' speed ' ] . lower ( )
2022-03-07 16:47:07 +00:00
current_settings [ ' speed2 ' ] = input_settings [ ' speed2 ' ] . lower ( )
2021-09-19 18:19:09 +00:00
current_settings [ ' animation ' ] = input_settings [ ' animation ' ] . lower ( )
2021-12-08 17:26:35 +00:00
2021-09-19 18:19:09 +00:00
del current_settings [ ' feature ' ]
2023-06-30 11:59:11 +00:00
with open ( ' csv/ ' + filename , ' w ' ) as f :
json . dump ( current_settings , f )
2021-12-22 09:43:36 +00:00
remove_old_uploads ( )
2021-12-15 11:06:54 +00:00
2021-10-11 19:16:04 +00:00
def save_message_settings ( input_settings ) :
2023-06-30 11:59:11 +00:00
try :
f = open ( ' csv/message_settings.json ' , ' r ' )
current_settings = json . load ( f )
f . close ( )
except :
current_settings = { " feature " : " Custom Messages " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : False , " messages " : [ { " name " : " welcome " , " text " : " Welcome to Fintic! " , " text_colour " : " White " , " size " : " Large " , " background_colour " : " Black " } , { " name " : " get_started " , " text " : " To get started, connect your device to the \" Fintic Hotspot \" and access \" fintic.local:1024 \" on your web browser. You can connect your ticker to Wi-Fi there. " , " text_colour " : " White " , " size " : " Small " , " background_colour " : " Black " } ] }
2021-12-15 11:06:54 +00:00
new_settings = copy . deepcopy ( input_settings )
2022-04-07 17:35:38 +00:00
2021-12-15 11:06:54 +00:00
for i , IS in enumerate ( input_settings [ ' messages ' ] ) :
# check if this is in current_settings
for CS in current_settings [ ' messages ' ] :
if IS [ ' name ' ] == CS [ ' name ' ] :
new_settings [ ' messages ' ] [ i ] = CS
break
2023-06-30 11:59:11 +00:00
with open ( ' csv/message_settings.json ' , ' w ' ) as f :
json . dump ( new_settings , f )
2021-11-18 17:50:50 +00:00
2021-08-11 19:58:01 +00:00
@app.route ( " /shutdown " )
def shutdown ( ) :
os . system ( " sudo shutdown now " )
2021-08-18 19:50:02 +00:00
return index ( )
2021-11-26 15:33:10 +00:00
2023-04-24 11:10:05 +00:00
@app.route ( " /saveSchedulerSettings " , methods = [ ' PUT ' , ' POST ' ] )
def saveSchedulerSettings ( ) :
2021-11-26 15:33:10 +00:00
2023-04-24 11:10:05 +00:00
data = request . data . decode ( ' utf-8 ' )
input_settings = json . loads ( data )
2021-11-26 15:33:10 +00:00
2023-04-26 06:39:59 +00:00
initialize_json = ' { " shutdown " : { " hour " : " 00 " , " minute " : " 00 " , " enabled " : false}, " reboot " : { " hour " : " 00 " , " minute " : " 00 " , " enabled " : false}, " timezone " : " GMT " , " brightness1 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : false}, " brightness2 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : false}, " brightness3 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : false}, " brightness4 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : false}} '
2023-04-24 11:10:05 +00:00
if ' scheduler.json ' not in os . listdir ( ' csv/ ' ) :
with open ( ' csv/scheduler.json ' , ' w ' ) as f :
f . write ( initialize_json )
try :
with open ( ' csv/scheduler.json ' , ' r ' ) as f :
scheduler_settings = json . load ( f )
except :
2023-04-26 06:39:59 +00:00
scheduler_settings = { " shutdown " : { " hour " : " 00 " , " minute " : " 00 " , " enabled " : False } , " reboot " : { " hour " : " 00 " , " minute " : " 00 " , " enabled " : False } , " timezone " : " GMT " , " brightness1 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } , " brightness2 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } , " brightness3 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } , " brightness4 " : { " hour " : " 00 " , " minute " : " 00 " , " bright " : " 10 " , " enabled " : False } }
2023-04-24 11:10:05 +00:00
scheduler_settings [ ' shutdown ' ] [ ' hour ' ] = input_settings [ ' shutdown_hour ' ]
scheduler_settings [ ' shutdown ' ] [ ' minute ' ] = input_settings [ ' shutdown_minute ' ]
scheduler_settings [ ' shutdown ' ] [ ' enabled ' ] = input_settings [ ' shutdown_enabled ' ]
scheduler_settings [ ' reboot ' ] [ ' hour ' ] = input_settings [ ' reboot_hour ' ]
scheduler_settings [ ' reboot ' ] [ ' minute ' ] = input_settings [ ' reboot_minute ' ]
scheduler_settings [ ' reboot ' ] [ ' enabled ' ] = input_settings [ ' reboot_enabled ' ]
2023-04-26 04:50:51 +00:00
scheduler_settings [ ' brightness1 ' ] [ ' hour ' ] = input_settings [ ' brightness1_hour ' ]
scheduler_settings [ ' brightness1 ' ] [ ' minute ' ] = input_settings [ ' brightness1_minute ' ]
2023-04-26 06:39:59 +00:00
scheduler_settings [ ' brightness1 ' ] [ ' enabled ' ] = input_settings [ ' brightness1_enabled ' ]
scheduler_settings [ ' brightness1 ' ] [ ' bright ' ] = input_settings [ ' brightness1_bright ' ]
2023-04-26 04:50:51 +00:00
scheduler_settings [ ' brightness2 ' ] [ ' hour ' ] = input_settings [ ' brightness2_hour ' ]
scheduler_settings [ ' brightness2 ' ] [ ' minute ' ] = input_settings [ ' brightness2_minute ' ]
scheduler_settings [ ' brightness2 ' ] [ ' enabled ' ] = input_settings [ ' brightness2_enabled ' ]
2023-04-26 06:39:59 +00:00
scheduler_settings [ ' brightness2 ' ] [ ' bright ' ] = input_settings [ ' brightness2_bright ' ]
2023-04-26 04:50:51 +00:00
2023-04-26 05:10:32 +00:00
scheduler_settings [ ' brightness3 ' ] [ ' hour ' ] = input_settings [ ' brightness3_hour ' ]
scheduler_settings [ ' brightness3 ' ] [ ' minute ' ] = input_settings [ ' brightness3_minute ' ]
scheduler_settings [ ' brightness3 ' ] [ ' enabled ' ] = input_settings [ ' brightness3_enabled ' ]
2023-04-26 06:39:59 +00:00
scheduler_settings [ ' brightness3 ' ] [ ' bright ' ] = input_settings [ ' brightness3_bright ' ]
2023-04-26 05:10:32 +00:00
scheduler_settings [ ' brightness4 ' ] [ ' hour ' ] = input_settings [ ' brightness4_hour ' ]
scheduler_settings [ ' brightness4 ' ] [ ' minute ' ] = input_settings [ ' brightness4_minute ' ]
scheduler_settings [ ' brightness4 ' ] [ ' enabled ' ] = input_settings [ ' brightness4_enabled ' ]
2023-04-26 06:39:59 +00:00
scheduler_settings [ ' brightness4 ' ] [ ' bright ' ] = input_settings [ ' brightness4_bright ' ]
2023-04-26 05:10:32 +00:00
2023-04-24 11:10:05 +00:00
scheduler_settings [ ' timezone ' ] = input_settings [ ' timezone ' ]
2021-08-11 19:58:01 +00:00
2023-04-24 11:10:05 +00:00
with open ( ' csv/scheduler.json ' , ' w ' ) as f :
json . dump ( scheduler_settings , f )
f = open ( ' csv/last_updates.json ' , ' r ' )
last_updates = json . load ( f )
f . close ( )
last_updates [ ' scheduler ' ] [ ' force ' ] = True
f = open ( ' csv/last_updates.json ' , ' w ' )
json . dump ( last_updates , f )
f . close ( )
return index ( )
2021-07-06 19:15:05 +00:00
2021-04-26 18:51:21 +00:00
2023-05-15 08:27:49 +00:00
@app.route ( " /setTop20or10 " , methods = [ ' PUT ' , ' POST ' ] )
def setTop20or10 ( ) :
data = request . data . decode ( ' utf-8 ' )
input_settings = json . loads ( data )
with open ( ' csv/league_tables.json ' , ' r ' ) as f :
league_settings = json . load ( f )
if input_settings == ' Top 20 ' :
input_settings = 20
elif input_settings == ' Top 10 ' :
input_settings = 10
else :
input_settings = 20
league_settings [ ' top20 ' ] = input_settings
f = open ( ' csv/league_tables.json ' , ' w ' )
json . dump ( league_settings , f )
f . close ( )
return index ( )
2023-04-26 10:07:50 +00:00
2023-07-11 09:05:41 +00:00
@app.route ( " /fetchStockPortfolio " , methods = [ " POST " ] )
def fetchStockPortfolio ( ) :
value = request . data . decode ( ' utf-8 ' )
value2 = json . loads ( value )
try :
with open ( " csv/portfolio_settings.json " ) as f :
data = json . load ( f )
except :
data = { " symbols " : { } }
try :
stock_pos_info = data [ ' symbols ' ] [ value2 ]
except :
stock_pos_info = { }
return ( stock_pos_info )
@app.route ( " /fetchCryptoPortfolio " , methods = [ " POST " ] )
def fetchCryptoPortfolio ( ) :
value = request . data . decode ( ' utf-8 ' )
value2 = json . loads ( value )
try :
with open ( " csv/portfolio_crypto_settings.json " ) as f :
data = json . load ( f )
except :
data = { " symbols " : { } }
try :
crypto_pos_info = data [ ' symbols ' ] [ value2 ]
except :
crypto_pos_info = { }
return ( crypto_pos_info )
2023-07-07 08:23:50 +00:00
@app.route ( " /fetchCustomMsg " , methods = [ " POST " ] )
def fetch_custom_msg ( ) :
value = request . data . decode ( ' utf-8 ' )
value2 = json . loads ( value )
try :
with open ( " csv/message_settings.json " ) as f :
data = json . load ( f )
except :
data = { " feature " : " Custom Messages " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : False , " messages " : [ { " name " : " welcome " , " text " : " Welcome to Fintic! " , " text_colour " : " White " , " size " : " Large " , " background_colour " : " Black " } , { " name " : " get_started " , " text " : " To get started, connect your device to the \" Fintic Hotspot \" and access \" fintic.local:1024 \" on your web browser. You can connect your ticker to Wi-Fi there. " , " text_colour " : " White " , " size " : " Small " , " background_colour " : " Black " } ] }
for i , each in enumerate ( data [ ' messages ' ] ) :
if each [ ' name ' ] == value2 :
2023-07-07 15:26:20 +00:00
the_info = { ' index ' : i , ' text ' : data [ ' messages ' ] [ i ] [ ' text ' ] , ' name ' : data [ ' messages ' ] [ i ] [ ' name ' ] , ' size ' : data [ ' messages ' ] [ i ] [ ' size ' ] , ' text_colour ' : data [ ' messages ' ] [ i ] [ ' text_colour ' ] , ' background_colour ' : data [ ' messages ' ] [ i ] [ ' background_colour ' ] }
2023-07-07 15:35:06 +00:00
#the_info = data['messages'][i]
2023-07-07 08:23:50 +00:00
break
else :
the_info = { }
return ( the_info )
2023-07-07 09:40:08 +00:00
@app.route ( " /sendMsgToJSON " , methods = [ ' PUT ' , ' POST ' ] )
def sendMsgToJSON ( ) :
data = request . data . decode ( ' utf-8 ' )
input_settings = json . loads ( data )
if input_settings [ ' name ' ] != ' ' and input_settings [ ' text ' ] != ' ' :
try :
with open ( ' csv/message_settings.json ' , ' r ' ) as f :
message_settings = json . load ( f )
except :
message_settings = { " feature " : " Custom Messages " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : False , " messages " : [ { " name " : " welcome " , " text " : " Welcome to Fintic! " , " text_colour " : " White " , " size " : " Large " , " background_colour " : " Black " } , { " name " : " get_started " , " text " : " To get started, connect your device to the \" Fintic Hotspot \" and access \" fintic.local:1024 \" on your web browser. You can connect your ticker to Wi-Fi there. " , " text_colour " : " White " , " size " : " Small " , " background_colour " : " Black " } ] }
message_settings [ ' messages ' ] . append ( input_settings )
with open ( ' csv/message_settings.json ' , ' w ' ) as f :
json . dump ( message_settings , f )
return index ( )
2023-07-07 15:22:10 +00:00
@app.route ( " /updateSelectedMsg " , methods = [ " PUT " , " POST " ] )
def updateSelectedMsg ( ) :
value = request . data . decode ( ' utf-8 ' )
value2 = json . loads ( value )
try :
with open ( " csv/message_settings.json " ) as f :
data = json . load ( f )
except :
data = { " feature " : " Custom Messages " , " speed " : " medium " , " speed2 " : " medium " , " animation " : " down " , " title " : False , " messages " : [ { " name " : " welcome " , " text " : " Welcome to Fintic! " , " text_colour " : " White " , " size " : " Large " , " background_colour " : " Black " } , { " name " : " get_started " , " text " : " To get started, connect your device to the \" Fintic Hotspot \" and access \" fintic.local:1024 \" on your web browser. You can connect your ticker to Wi-Fi there. " , " text_colour " : " White " , " size " : " Small " , " background_colour " : " Black " } ] }
try :
data [ ' messages ' ] [ value2 [ ' index ' ] ] [ ' name ' ] = value2 [ ' name ' ]
data [ ' messages ' ] [ value2 [ ' index ' ] ] [ ' text ' ] = value2 [ ' text ' ]
data [ ' messages ' ] [ value2 [ ' index ' ] ] [ ' text_colour ' ] = value2 [ ' text_colour ' ]
data [ ' messages ' ] [ value2 [ ' index ' ] ] [ ' size ' ] = value2 [ ' size ' ]
data [ ' messages ' ] [ value2 [ ' index ' ] ] [ ' background_colour ' ] = value2 [ ' background_colour ' ]
with open ( ' csv/message_settings.json ' , ' w ' ) as f :
json . dump ( data , f )
except :
pass
return index ( )
2021-04-26 18:51:21 +00:00
if __name__ == " __main__ " :
2021-05-31 11:22:56 +00:00
app . run ( host = ' 0.0.0.0 ' , port = 1024 , debug = False ) # the debuggger causes flickering
2021-04-26 19:27:34 +00:00
#sudo ./demo -D1 final.ppm -t 50 -m 25 --led-gpio-mapping=adafruit-hat --led-rows=32 --led-cols=256 --led-slowdown-gpio=4