2021-04-26 18:51:21 +00:00
# Copyright (C) 2020 Daniel Richardson richardson.daniel@hotmail.co.uk
#
# This file is part of stockTicker project for justinodunn.
#
# stockTicker can not be copied and/or distributed without the express
# permission of Daniel Richardson
2021-04-28 19:39:30 +00:00
2021-05-01 10:39:20 +00:00
import sys , select
2021-04-26 18:51:21 +00:00
import os
import threading
from PIL import Image , ImageDraw , ImageFont
2021-06-30 21:00:14 +00:00
Image . init ( )
2021-07-08 18:42:21 +00:00
2021-04-26 18:51:21 +00:00
import time
import csv
2021-04-28 19:39:30 +00:00
import requests
2021-05-05 14:44:43 +00:00
import pexpect
2021-04-27 18:29:14 +00:00
from rgbmatrix import RGBMatrix , RGBMatrixOptions
2021-05-14 10:31:14 +00:00
from rgbmatrix . graphics import *
2021-05-14 12:55:43 +00:00
from multiprocessing import Process
2021-06-02 15:37:31 +00:00
import traceback
2021-06-03 20:56:25 +00:00
import json
from datetime import datetime
2021-06-21 16:39:44 +00:00
import matplotlib . colors as mcolors
2021-05-14 12:02:22 +00:00
2021-05-01 10:39:20 +00:00
def getInput ( Block = False ) :
if Block or select . select ( [ sys . stdin ] , [ ] , [ ] , 0 ) == ( [ sys . stdin ] , [ ] , [ ] ) :
msg = sys . stdin . read ( 1 )
#sys.stdin.flush()
else :
msg = ' '
return msg
2021-05-05 14:44:43 +00:00
2021-05-01 10:39:20 +00:00
2021-04-26 19:27:34 +00:00
class StockTicker ( ) :
def __init__ ( self ) :
#Define global resources
self . symbols = [ ]
2021-05-05 14:44:43 +00:00
2021-04-26 19:27:34 +00:00
self . greenORred = ( 255 , 255 , 255 )
2021-05-03 10:39:31 +00:00
#self.blank = Image.open('logos/blank.png')
2021-06-22 19:05:56 +00:00
self . blank = Image . new ( ' RGB ' , ( 10 , 32 ) )
2021-04-26 19:27:34 +00:00
self . running = True
2021-04-27 18:29:14 +00:00
self . brightness = 1.0
2021-05-03 10:39:31 +00:00
self . delay = 0.02
2021-04-27 18:29:14 +00:00
# Configuration for the matrix
options = RGBMatrixOptions ( )
2021-05-04 16:39:16 +00:00
options . rows = 32
2021-04-27 18:29:14 +00:00
options . cols = 64
2021-05-04 20:55:28 +00:00
options . chain_length = 2
2021-04-27 18:29:14 +00:00
options . parallel = 1
options . hardware_mapping = ' adafruit-hat ' # If you have an Adafruit HAT: 'adafruit-hat'
2021-07-13 19:32:26 +00:00
options . gpio_slowdown = 4
2021-04-27 18:29:14 +00:00
self . matrix = RGBMatrix ( options = options )
2021-05-25 18:57:34 +00:00
self . points = True # display crypto change in points or percent
2021-07-08 19:28:48 +00:00
self . functions = { ' stocks ' : self . getStockImage , ' crypto ' : self . getCryptoImage , ' forex ' : self . getForexImage ,
2021-07-26 19:50:51 +00:00
' daily_weather ' : self . getDailyWeatherImage , ' today_weather ' : self . getTodayWeatherImage ,
' league_table ' : self . getLeagueTableImage , ' league_games ' : self . getLeagueImage , ' news ' : self . getNewsImage ,
' text ' : self . getUserText , ' display_image ' : self . getUserImage , ' display_gif ' : self . getUserGIF ,
' stocks_prof ' : self . getStockProfessional , ' crypto_prof ' : self . getCryptoProfessional , ' forex_prof ' : self . getForexProfessional ,
' today_weather_prof ' : self . getTodayWeatherProfessional , ' news_prof ' : self . getNewsProfessional } #put this somewhere else
2021-05-05 14:44:43 +00:00
2021-04-27 18:29:14 +00:00
def openImage ( self , image_file ) :
image = Image . open ( image_file )
# Make image fit our screen.
#image.thumbnail((self.matrix.width, self.matrix.height), Image.ANTIALIAS)
2021-06-29 20:17:52 +00:00
#image = image.convert('RGB')
2021-04-27 18:29:14 +00:00
return image
2021-06-08 20:16:08 +00:00
def degreesToCompass ( self , deg ) :
dirs = [ ' N ' , ' NE ' , ' E ' , ' SE ' , ' S ' , ' SW ' , ' W ' , ' NW ' ]
return dirs [ int ( ( deg + 22.5 ) / / 45 ) % 8 ]
2021-07-14 17:02:54 +00:00
2021-07-08 19:12:18 +00:00
def setImage ( self , image , offset_x = 0 , offset_y = 0 , unsafe = True , min_x = 0 , max_x = 128 , min_y = 0 , max_y = 32 ) :
2021-04-27 18:29:14 +00:00
if ( image . mode != " RGB " ) :
2021-06-30 19:22:14 +00:00
image = image . convert ( ' RGB ' )
2021-04-27 18:29:14 +00:00
if unsafe :
2021-05-01 10:39:20 +00:00
#In unsafe mode we directly acceshow to send commands to running python processs the underlying PIL image array
2021-04-27 18:29:14 +00:00
#in cython, which is considered unsafe pointer accecss,
#however it's super fast and seems to work fine
#https://groups.google.com/forum/#!topic/cython-users/Dc1ft5W6KM4
img_width , img_height = image . size
2021-04-28 19:39:30 +00:00
2021-04-27 18:29:14 +00:00
self . matrix . SetPixelsPillow ( offset_x , offset_y , img_width , img_height , image )
else :
# First implementation of a SetImage(). OPTIMIZE_ME: A more native
# implementation that directly reads the buffer and calls the underlying
# C functions can certainly be faster.
img_width , img_height = image . size
pixels = image . load ( )
2021-06-09 18:13:48 +00:00
for y in range ( max ( 0 , - offset_y ) , min ( img_height , self . matrix . height - offset_y ) ) :
2021-07-06 20:18:54 +00:00
for x in range ( max ( 0 , - offset_x ) , min ( img_width , self . matrix . width - offset_x ) ) :
2021-07-14 17:02:54 +00:00
2021-06-08 20:16:08 +00:00
if min_x < = x + offset_x < = max_x and min_y < = y + offset_y < = max_y :
2021-07-06 20:18:54 +00:00
( r , g , b ) = pixels [ x , y ]
2021-06-08 20:16:08 +00:00
self . matrix . SetPixel ( x + offset_x , y + offset_y , r * self . brightness , g * self . brightness , b * self . brightness )
2021-07-06 20:18:54 +00:00
2021-07-27 17:33:02 +00:00
def scrollImage ( self , image , offset_x = 0 , offset_y = 0 , frame_skip = 10 , gif = False , pause_frames = 0 ) :
2021-04-27 18:59:25 +00:00
img_width , img_height = image . size
2021-07-26 19:50:51 +00:00
kill = False
2021-07-27 17:33:02 +00:00
while offset_x > - ( img_width + 1 ) :
2021-07-28 18:55:55 +00:00
if offset_x == 0 :
while pause_frames > 0 :
if pause_frames % frame_skip == 0 :
self . incrementGIF ( image )
pause_frames - = 1
if gif :
self . double_buffer . SetImage ( image . convert ( ' RGB ' ) , offset_x , offset_y )
else :
self . double_buffer . SetImage ( image , offset_x , offset_y )
for y in range ( self . matrix . height ) :
self . matrix . SetPixel ( offset_x + img_width + 1 , y , 0 , 0 , 0 )
self . matrix . SetPixel ( offset_x + img_width , y , 0 , 0 , 0 )
self . double_buffer = self . matrix . SwapOnVSync ( self . double_buffer )
time . sleep ( self . delay )
kill = self . checkKilled ( )
if kill : break
2021-07-26 19:50:51 +00:00
# for animation in gifs
if offset_x % frame_skip == 0 :
self . incrementGIF ( image )
#image = image.convert('RGB')
2021-04-27 18:59:25 +00:00
offset_x - = 1
2021-07-26 19:50:51 +00:00
#self.setImage(image.convert('RGB'), offset_x = offset_x, offset_y = offset_y)
if gif :
2021-07-27 17:33:02 +00:00
self . double_buffer . SetImage ( image . convert ( ' RGB ' ) , offset_x , offset_y )
2021-07-26 19:50:51 +00:00
else :
2021-07-27 17:33:02 +00:00
self . double_buffer . SetImage ( image , offset_x , offset_y )
2021-07-26 19:50:51 +00:00
buff = 0
2021-06-22 19:05:56 +00:00
# remove the ppixels behind the image, to stop trailing
2021-07-27 17:33:02 +00:00
self . double_buffer = self . matrix . SwapOnVSync ( self . double_buffer )
2021-07-26 19:50:51 +00:00
for y in range ( self . matrix . height ) :
self . matrix . SetPixel ( offset_x + img_width + 1 , y , 0 , 0 , 0 )
2021-07-27 17:33:02 +00:00
self . matrix . SetPixel ( offset_x + img_width , y , 0 , 0 , 0 )
2021-07-26 19:50:51 +00:00
time . sleep ( self . delay )
kill = self . checkKilled ( )
2021-07-27 17:33:02 +00:00
2021-07-28 18:55:55 +00:00
2021-07-27 17:33:02 +00:00
if kill : break
2021-07-26 19:50:51 +00:00
if kill : break
return kill
2021-07-27 17:33:02 +00:00
def scrollImageY ( self , image , direction = 1 , offset_x = 0 , offset_y = 0 , frame_skip = 10 , gif = False ) :
2021-07-26 19:50:51 +00:00
kill = False
while offset_y != 0 :
2021-05-31 11:22:56 +00:00
2021-07-26 19:50:51 +00:00
# for animation in gifs
if offset_y % frame_skip == 0 :
self . incrementGIF ( image )
offset_y + = direction
if gif :
2021-07-27 17:33:02 +00:00
self . double_buffer . SetImage ( image . convert ( ' RGB ' ) , offset_x , offset_y )
2021-07-26 19:50:51 +00:00
else :
2021-07-27 17:33:02 +00:00
self . double_buffer . SetImage ( image , offset_x , offset_y )
2021-05-31 11:22:56 +00:00
2021-07-27 17:33:02 +00:00
self . double_buffer = self . matrix . SwapOnVSync ( self . double_buffer )
2021-05-31 11:22:56 +00:00
2021-05-21 13:24:37 +00:00
time . sleep ( self . delay )
2021-07-26 19:50:51 +00:00
kill = self . checkKilled ( )
if kill : break
return kill
2021-05-23 09:34:06 +00:00
def scrollImageStacked ( self , image , offset_x = 0 , offset_y = 0 ) :
img_width , img_height = image . size
while offset_x > - img_width - 128 :
offset_x - = 1
self . setImage ( image , offset_x = offset_x + 128 , offset_y = offset_y )
2021-05-23 10:28:46 +00:00
self . setImage ( image , offset_x = offset_x , offset_y = offset_y + 20 )
2021-05-23 09:34:06 +00:00
2021-06-22 19:05:56 +00:00
kill = self . checkKilled ( )
2021-05-23 09:34:06 +00:00
time . sleep ( self . delay )
2021-06-22 19:05:56 +00:00
return kill
2021-04-27 18:59:25 +00:00
2021-06-22 19:05:56 +00:00
def updateMultiple ( self , options ) :
for option in options :
2021-07-08 18:42:21 +00:00
2021-07-15 18:49:53 +00:00
if option not in [ ' display_gif ' ] : # aving the gif like this kills the animation
2021-06-29 20:17:52 +00:00
img = self . functions [ option ] ( )
2021-06-30 21:00:14 +00:00
img . save ( ' ./display_images/ ' + option + ' .ppm ' )
2021-07-26 19:50:51 +00:00
def incrementGIF ( self , image ) :
try :
image . seek ( self . frame )
except EOFError :
self . frame = 0
image . seek ( self . frame )
self . frame + = 1
2021-06-29 20:17:52 +00:00
2021-06-22 19:05:56 +00:00
def checkKilled ( self ) :
kill = False
try :
msg = getInput ( )
if msg == ' K ' :
self . resetMatrix ( )
kill = True
self . process_msg ( msg )
except KeyboardInterrupt :
sys . stdout . flush ( )
pass
return kill
2021-07-27 17:33:02 +00:00
def scrollFunctionsAnimated ( self , options , animation = ' down ' ) :
2021-07-13 19:32:26 +00:00
2021-06-22 19:05:56 +00:00
# scrolls trhough all functions with animation. Updates functions and remakes images when each function not being dispplayed
2021-06-27 11:07:47 +00:00
2021-06-30 21:00:14 +00:00
self . updateMultiple ( [ options [ 0 ] ] )
2021-06-30 19:22:14 +00:00
2021-06-22 19:05:56 +00:00
kill = False
i = 0 # keep track of which image we are displaying
2021-07-27 17:33:02 +00:00
self . double_buffer = self . matrix . CreateFrameCanvas ( )
2021-06-22 19:05:56 +00:00
while True :
2021-05-23 09:34:06 +00:00
2021-06-27 11:07:47 +00:00
update_process = Process ( target = self . updateMultiple , args = ( [ options [ ( i + 1 ) % len ( options ) ] ] , ) )
2021-06-22 19:05:56 +00:00
update_process . start ( )
2021-06-30 19:22:14 +00:00
2021-07-15 18:49:53 +00:00
2021-07-14 17:02:54 +00:00
if options [ i % len ( options ) ] != ' display_gif ' :
2021-07-15 18:49:53 +00:00
image = self . openImage ( ' ./display_images/ ' + options [ i % len ( options ) ] + ' .ppm ' )
2021-07-14 17:02:54 +00:00
image = image . convert ( ' RGB ' )
2021-07-15 18:49:53 +00:00
else :
image = self . openImage ( ' ./display_images/user_gif.gif ' )
2021-07-14 17:02:54 +00:00
2021-06-22 19:05:56 +00:00
img_width , img_height = image . size
2021-07-14 17:02:54 +00:00
2021-06-22 19:05:56 +00:00
offset_x = 0
2021-07-08 18:42:21 +00:00
if animation == ' traditional ' :
2021-06-22 19:05:56 +00:00
offset_x = 128
2021-07-08 18:42:21 +00:00
elif animation == ' continuous ' :
offset_x = 0
2021-06-29 20:17:52 +00:00
elif animation in [ ' up ' , ' down ' ] :
offset_x = max ( 0 , 128 - img_width )
2021-06-22 19:05:56 +00:00
offset_y = 0
#first scroll image in from bottom
2021-07-27 17:33:02 +00:00
frame_skip = int ( ( 1 / 15 ) / self . delay ) #controls how fast gifs run
2021-07-26 19:50:51 +00:00
self . frame = 0
2021-06-29 20:17:52 +00:00
2021-06-30 19:22:14 +00:00
pause_frames = int ( 0.5 / self . delay )
2021-06-22 19:05:56 +00:00
if animation == ' up ' :
2021-06-27 11:07:47 +00:00
offset_y = 33
2021-07-26 19:50:51 +00:00
direction = - 1
2021-07-28 18:55:55 +00:00
self . scrollImageY ( image , direction = direction , offset_x = offset_x , offset_y = offset_y , frame_skip = frame_skip , gif = options [ i % len ( options ) ] == ' display_gif ' )
2021-06-22 19:05:56 +00:00
elif animation == ' down ' :
2021-07-26 19:50:51 +00:00
direction = 1
2021-06-27 11:07:47 +00:00
offset_y = - 33
2021-07-28 18:55:55 +00:00
self . scrollImageY ( image , direction = direction , offset_x = offset_x , offset_y = offset_y , frame_skip = frame_skip , gif = options [ i % len ( options ) ] == ' display_gif ' )
2021-07-13 19:32:26 +00:00
2021-07-28 18:55:55 +00:00
2021-07-26 19:50:51 +00:00
offset_y = 0
if animation in [ ' up ' , ' down ' ] :
2021-06-29 20:17:52 +00:00
while pause_frames > 0 :
2021-07-26 19:50:51 +00:00
if pause_frames % frame_skip == 0 :
self . incrementGIF ( image )
2021-06-22 19:05:56 +00:00
2021-06-29 20:17:52 +00:00
pause_frames - = 1
2021-07-14 17:02:54 +00:00
if options [ i % len ( options ) ] != ' display_gif ' :
2021-07-27 17:33:02 +00:00
self . double_buffer . SetImage ( image , offset_x , offset_y )
2021-07-14 17:02:54 +00:00
else :
2021-07-27 17:33:02 +00:00
self . double_buffer . SetImage ( image . convert ( ' RGB ' ) , offset_x , offset_y )
2021-07-13 19:32:26 +00:00
2021-07-27 17:33:02 +00:00
self . double_buffer = self . matrix . SwapOnVSync ( self . double_buffer )
2021-06-22 19:05:56 +00:00
2021-06-29 20:17:52 +00:00
time . sleep ( self . delay )
kill = self . checkKilled ( )
if kill : break
2021-07-13 19:32:26 +00:00
2021-06-22 19:05:56 +00:00
if kill : break
2021-07-26 19:50:51 +00:00
2021-06-22 19:05:56 +00:00
if kill : break
2021-07-27 17:33:02 +00:00
kill = self . scrollImage ( image , offset_x = offset_x , offset_y = offset_y , frame_skip = frame_skip , gif = options [ i % len ( options ) ] == ' display_gif ' )
2021-06-22 19:05:56 +00:00
2021-07-26 19:50:51 +00:00
if kill : break
2021-06-22 19:05:56 +00:00
update_process . join ( )
i + = 1
2021-07-27 17:33:02 +00:00
def scrollMultiple ( self , animation = ' down ' ) :
# scrolls trhough all functions with animation. Updates functions and remakes images when each function not being dispplayed
# read lines from csv
images = [ ]
delays = [ ]
kinds = [ ]
f = open ( ' csv/multiple.csv ' , ' r ' )
CSV = csv . reader ( f )
next ( CSV )
font = ImageFont . load ( " ./fonts/texgyre-27.pil " )
for row in CSV :
kind , content , delay = row
delays . append ( delay )
kinds . append ( kind )
print ( kind , content , delay )
if kind == ' text ' :
images . append ( self . textImage ( content , font , 255 , 255 , 0 , True , w_buff = 50 ) )
elif kind == ' image ' :
images . append ( self . openImage ( content ) . convert ( ' RGB ' ) )
elif kind == ' gif ' :
images . append ( self . openImage ( content ) )
f . close ( )
kill = False
i = 0 # keep track of which image we are displaying
self . double_buffer = self . matrix . CreateFrameCanvas ( )
while True :
image = images [ i % len ( images ) ]
delay = delays [ i % len ( images ) ]
kind = kinds [ i % len ( images ) ]
img_width , img_height = image . size
offset_x = 0
if animation == ' traditional ' :
offset_x = 128
elif animation == ' continuous ' :
offset_x = 0
elif animation in [ ' up ' , ' down ' ] :
offset_x = max ( 0 , 128 - img_width )
offset_y = 0
#first scroll image in from bottom
frame_skip = int ( ( 1 / 15 ) / self . delay ) #controls how fast gifs run
self . frame = 0
pause_frames = int ( float ( delay ) / self . delay )
if animation == ' up ' :
offset_y = 33
direction = - 1
2021-07-28 18:55:55 +00:00
self . scrollImageY ( image , direction = direction , offset_x = offset_x , offset_y = offset_y , frame_skip = frame_skip , gif = kind == ' gif ' )
2021-07-27 17:33:02 +00:00
elif animation == ' down ' :
direction = 1
offset_y = - 33
2021-07-28 18:55:55 +00:00
self . scrollImageY ( image , direction = direction , offset_x = offset_x , offset_y = offset_y , frame_skip = frame_skip , gif = kind == ' gif ' )
2021-07-27 17:33:02 +00:00
2021-07-28 18:55:55 +00:00
2021-07-27 17:33:02 +00:00
offset_y = 0
2021-06-22 19:05:56 +00:00
2021-07-27 17:33:02 +00:00
kill = self . scrollImage ( image , offset_x = offset_x , offset_y = offset_y , frame_skip = frame_skip , gif = kind == ' gif ' , pause_frames = pause_frames )
if kill : break
i + = 1
2021-06-27 11:07:47 +00:00
def textImage ( self , text , font , r = 255 , g = 255 , b = 255 , matrix_height = False , w_buff = 3 , h_buff = 3 ) :
2021-05-23 09:34:06 +00:00
'''
creates and returns a ppm image containing the text in the supplied font and colour
'''
width , height = self . get_text_dimensions ( text , font )
2021-05-23 10:28:46 +00:00
if matrix_height :
height = 32
2021-06-27 11:07:47 +00:00
img = Image . new ( ' RGB ' , ( width + w_buff , height + h_buff ) )
2021-05-23 09:34:06 +00:00
d = ImageDraw . Draw ( img )
2021-05-05 19:26:56 +00:00
2021-05-23 10:28:46 +00:00
d . text ( ( 0 , 0 ) , text , fill = ( r , g , b ) , font = font )
2021-05-23 09:34:06 +00:00
return img
2021-05-21 13:24:37 +00:00
2021-05-23 09:34:06 +00:00
2021-06-22 19:05:56 +00:00
def getUserText ( self ) :
2021-05-23 09:34:06 +00:00
'''
displays the text entered in the webpage by the user .
'''
2021-05-21 13:24:37 +00:00
2021-05-14 10:31:14 +00:00
f = open ( ' csv/scroll_text.csv ' , ' r ' )
CSV = csv . reader ( f )
text , r , g , b = next ( CSV )
f . close ( )
2021-06-30 19:22:14 +00:00
title_img = self . openImage ( ' feature_titles/message.png ' )
2021-05-14 10:31:14 +00:00
2021-05-31 12:06:57 +00:00
font = ImageFont . load ( " ./fonts/texgyre-27.pil " )
2021-05-14 10:31:14 +00:00
2021-06-29 20:17:52 +00:00
img = self . textImage ( text , font , int ( r ) , int ( g ) , int ( b ) , True , w_buff = 50 )
2021-06-30 19:22:14 +00:00
return self . stitchImage ( [ title_img , img ] )
2021-06-22 19:05:56 +00:00
2021-05-31 11:22:56 +00:00
def displayGIF ( self , gif ) :
# To iterate through the entire gif
i = 0
while True :
2021-05-21 10:20:39 +00:00
try :
2021-05-31 11:22:56 +00:00
gif . seek ( i )
except EOFError :
2021-07-08 18:42:21 +00:00
2021-05-31 11:22:56 +00:00
i = 0
gif . seek ( i )
# do something to im
self . setImage ( gif . convert ( ' RGB ' ) )
time . sleep ( 0.5 )
i + = 1
try :
msg = getInput ( )
if msg == ' K ' :
gif . close ( )
self . resetMatrix ( )
2021-06-02 15:37:31 +00:00
2021-05-31 11:22:56 +00:00
break
self . process_msg ( msg )
except KeyboardInterrupt :
sys . stdout . flush ( )
pass
2021-05-21 13:24:37 +00:00
2021-05-31 11:22:56 +00:00
def scrollGIF ( self , gif , offset_x = 0 , offset_y = 0 ) :
# To iterate through the entire gif
i = 0
img_width , img_height = gif . size
while offset_x > - img_width :
offset_x - = 1
try :
gif . seek ( i )
except EOFError :
2021-07-08 18:42:21 +00:00
2021-05-21 10:20:39 +00:00
i = 0
2021-05-31 11:22:56 +00:00
gif . seek ( i )
# do something to im
self . setImage ( gif . convert ( ' RGB ' ) , offset_x = offset_x )
time . sleep ( self . delay )
if offset_x % 20 == 0 :
i + = 1
for x in range ( offset_x + img_width , 128 ) :
for y in range ( self . matrix . height ) :
self . matrix . SetPixel ( x , y , 0 , 0 , 0 )
2021-07-06 19:15:05 +00:00
kill = self . checkKilled ( )
if kill :
break
return kill
2021-06-03 20:56:25 +00:00
2021-04-26 19:27:34 +00:00
#Using change between min and day price give appropriate arrow
#and set the overall change colour
2021-07-05 18:51:40 +00:00
def getArrow ( self , CHANGE , professional = False ) :
2021-04-26 19:27:34 +00:00
self . greenORred
2021-07-08 18:42:21 +00:00
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' stocks ' )
2021-04-26 19:27:34 +00:00
if ( CHANGE > 0 ) :
2021-05-04 16:39:16 +00:00
Arrow = Image . open ( os . path . join ( logos_path , ' up.png ' ) )
2021-04-26 19:27:34 +00:00
self . greenORred = ( 0 , 255 , 0 )
2021-07-05 18:51:40 +00:00
else :
Arrow = Image . open ( os . path . join ( logos_path , ' down.png ' ) )
self . greenORred = ( 255 , 0 , 0 )
CHANGE = ( CHANGE * - 1 )
if professional :
w , h = Arrow . size
Arrow = Arrow . resize ( ( int ( w / 2 ) , int ( h / 2 ) ) )
2021-04-26 18:51:21 +00:00
return Arrow , CHANGE
2021-04-26 19:27:34 +00:00
def get_text_dimensions ( self , text_string , font ) :
2021-05-14 10:31:14 +00:00
canvas = Image . new ( ' RGB ' , ( 10000 , 100 ) )
2021-04-26 19:27:34 +00:00
draw = ImageDraw . Draw ( canvas )
monospace = font
text = text_string
white = ( 255 , 255 , 255 )
2021-05-23 10:28:46 +00:00
draw . text ( ( 0 , 0 ) , text , font = monospace , fill = white )
2021-04-26 19:27:34 +00:00
bbox = canvas . getbbox ( )
width = bbox [ 2 ] - bbox [ 0 ]
height = bbox [ 3 ] - bbox [ 1 ]
return width , height
#Draw Ticker, current and change onto one image
2021-07-05 18:51:40 +00:00
def textToImage ( self , TICKER , CURRENT , CHANGE , ARROW , font = ImageFont . load ( " ./fonts/10x20.pil " ) ) :
2021-05-24 19:59:42 +00:00
text_width_current , text_height = self . get_text_dimensions ( CURRENT , font )
2021-06-22 19:05:56 +00:00
img = Image . new ( ' RGB ' , ( text_width_current + 100 , 32 ) )
2021-04-26 19:27:34 +00:00
d = ImageDraw . Draw ( img )
2021-04-28 19:39:30 +00:00
d . text ( ( 4 , 0 ) , TICKER , fill = ( 255 , 255 , 255 ) , font = font )
2021-05-03 10:39:31 +00:00
d . text ( ( 4 , 16 ) , CURRENT , fill = self . greenORred , font = font )
2021-04-26 19:27:34 +00:00
2021-05-24 19:59:42 +00:00
2021-04-26 19:27:34 +00:00
img . paste ( ARROW , ( ( text_width_current + 9 ) , 18 ) )
2021-05-03 10:39:31 +00:00
d . text ( ( ( text_width_current + 29 ) , 16 ) , CHANGE , fill = self . greenORred , font = font )
2021-04-26 19:27:34 +00:00
text_width_change , text_height = self . get_text_dimensions ( CHANGE , font )
2021-06-22 19:05:56 +00:00
newWidth = text_width_current + text_width_change + 30
2021-04-26 19:27:34 +00:00
2021-06-22 19:05:56 +00:00
img = img . crop ( ( 0 , 0 , newWidth , 32 ) )
2021-04-26 19:27:34 +00:00
return img
2021-07-05 18:51:40 +00:00
def textToImageProf ( self , TICKER , CURRENT , CHANGE , ARROW , font ) :
text_width_current , text_height = self . get_text_dimensions ( CURRENT , font )
img = Image . new ( ' RGB ' , ( text_width_current + 100 , 32 ) )
d = ImageDraw . Draw ( img )
d . text ( ( 4 , 0 ) , TICKER , fill = ( 255 , 255 , 255 ) , font = font )
d . text ( ( 4 , 8 ) , CURRENT , fill = self . greenORred , font = font )
img . paste ( ARROW , ( ( text_width_current + 7 ) , 10 ) )
d . text ( ( ( text_width_current + 18 ) , 8 ) , CHANGE , fill = self . greenORred , font = font )
text_width_change , text_height = self . get_text_dimensions ( CHANGE , font )
newWidth = text_width_current + text_width_change + 30
img = img . crop ( ( 0 , 0 , newWidth , 32 ) )
return img
2021-04-26 19:27:34 +00:00
#Stitch the logo & prices picture into one image
2021-05-03 10:39:31 +00:00
def stitchImage ( self , image_list ) :
widths , heights = zip ( * ( i . size for i in image_list ) )
2021-04-26 19:27:34 +00:00
total_width = sum ( widths )
max_height = max ( heights )
new_im = Image . new ( ' RGB ' , ( total_width , max_height ) )
x_offset = 0
2021-05-03 10:39:31 +00:00
for im in image_list :
2021-04-26 19:27:34 +00:00
new_im . paste ( im , ( x_offset , 0 ) )
x_offset + = im . size [ 0 ]
2021-05-14 10:31:14 +00:00
2021-04-26 19:27:34 +00:00
return new_im
2021-05-01 10:39:20 +00:00
def resetMatrix ( self ) :
for x in range ( self . matrix . width ) :
for y in range ( self . matrix . height ) :
self . matrix . SetPixel ( x , y , 0 , 0 , 0 )
2021-06-22 19:05:56 +00:00
def getCryptoImage ( self ) :
2021-06-30 19:22:14 +00:00
title_img = self . openImage ( ' feature_titles/crypto.png ' )
2021-06-22 19:05:56 +00:00
image_list = [ title_img ]
image_list . append ( self . blank )
2021-04-28 19:39:30 +00:00
2021-05-03 10:39:31 +00:00
start = time . time ( )
2021-06-22 19:05:56 +00:00
self . readCryptoCSV ( )
2021-05-14 12:02:22 +00:00
for i , coin in enumerate ( self . coins ) :
2021-06-22 19:05:56 +00:00
2021-05-14 12:02:22 +00:00
info = self . coin_info [ coin ]
2021-06-15 18:35:04 +00:00
2021-05-25 18:57:34 +00:00
change = float ( info [ 3 ] ) #TEXT
2021-05-24 19:59:42 +00:00
ticker = info [ 0 ] #TEXT
2021-05-25 18:57:34 +00:00
current = float ( info [ 2 ] ) #TEXT
base = info [ 1 ] . upper ( )
2021-05-14 12:02:22 +00:00
2021-05-25 18:57:34 +00:00
if self . points :
# convert percent to points
change = change / 100 * current
current = ' %.2f ' % current
2021-07-14 17:02:54 +00:00
2021-05-14 12:02:22 +00:00
arrow , change = self . getArrow ( change )
change = ' %.2f ' % change
2021-05-25 18:57:34 +00:00
midFrame = self . textToImage ( ticker + ' ( ' + base + ' ) ' , current , change , arrow ) #IMAGE THE TEXT
2021-05-14 12:02:22 +00:00
try :
2021-05-24 19:59:42 +00:00
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' crypto ' )
2021-05-14 12:06:19 +00:00
2021-05-14 12:02:22 +00:00
logo = Image . open ( os . path . join ( logos_path , ticker + ' .png ' ) )
stitchedStock = self . stitchImage ( [ logo , midFrame ] )
except :
2021-05-14 12:06:19 +00:00
2021-05-14 12:02:22 +00:00
stitchedStock = midFrame
2021-05-05 14:44:43 +00:00
image_list . append ( stitchedStock )
2021-06-09 18:06:21 +00:00
2021-06-22 19:05:56 +00:00
image_list . append ( self . blank )
2021-07-14 17:02:54 +00:00
2021-06-22 19:05:56 +00:00
finalDisplayImage = self . stitchImage ( image_list )
return finalDisplayImage
2021-07-05 18:51:40 +00:00
def getCryptoProfessional ( self ) :
2021-07-14 17:02:54 +00:00
title_img = self . openImage ( ' feature_titles/small_feature_titles/crypto.png ' )
2021-07-22 18:08:43 +00:00
self . blank = Image . new ( ' RGB ' , ( 0 , 16 ) )
image_list = [ title_img , Image . new ( ' RGB ' , ( 5 , 16 ) ) ]
2021-07-05 18:51:40 +00:00
start = time . time ( )
self . readCryptoCSV ( )
2021-07-22 18:08:43 +00:00
2021-07-05 18:51:40 +00:00
for i , coin in enumerate ( self . coins ) :
info = self . coin_info [ coin ]
change = float ( info [ 3 ] ) #TEXT
ticker = info [ 0 ] #TEXT
current = float ( info [ 2 ] ) #TEXT
base = info [ 1 ] . upper ( )
if self . points :
# convert percent to points
change = change / 100 * current
current = ' %.2f ' % current
2021-07-14 17:02:54 +00:00
2021-07-05 18:51:40 +00:00
arrow , change = self . getArrow ( change , professional = True )
change = ' %.2f ' % change
midFrame = self . textToImageProf ( ticker + ' ( ' + base + ' ) ' , current , change , arrow , font = ImageFont . load ( " ./fonts/6x10.pil " ) ) #IMAGE THE TEXT
2021-07-14 17:02:54 +00:00
2021-07-05 18:51:40 +00:00
try :
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' crypto ' )
logo = Image . open ( os . path . join ( logos_path , ticker + ' .png ' ) )
w , h = logo . size
logo = logo . resize ( ( int ( w / 2 ) , int ( h / 2 ) ) )
stitchedStock = self . stitchImage ( [ logo , midFrame ] )
except :
stitchedStock = midFrame
image_list . append ( stitchedStock )
image_list . append ( self . blank )
2021-07-14 17:02:54 +00:00
2021-07-05 18:51:40 +00:00
finalDisplayImage = self . stitchImage ( image_list )
self . blank = Image . new ( ' RGB ' , ( 10 , 32 ) )
return finalDisplayImage
2021-06-22 19:05:56 +00:00
def getForexImage ( self ) :
2021-06-30 19:22:14 +00:00
title_img = self . openImage ( ' feature_titles/forex.png ' )
2021-06-22 19:05:56 +00:00
image_list = [ title_img ]
image_list . append ( self . blank )
2021-06-09 18:06:21 +00:00
2021-06-22 19:05:56 +00:00
start = time . time ( )
2021-06-09 18:06:21 +00:00
base , currency_info = json . load ( open ( ' csv/currency.json ' , ' r ' ) )
2021-06-22 19:05:56 +00:00
currencies = [ ' AUD ' , ' CAD ' , ' CHF ' , ' EUR ' , ' GBP ' , ' JPY ' , ' NZD ' ]
2021-06-09 18:06:21 +00:00
2021-06-22 19:05:56 +00:00
for i , currency in enumerate ( currencies ) :
2021-06-09 18:06:21 +00:00
current , yesterday = currency_info [ currency ]
change = 1 / current - 1 / yesterday
2021-06-15 18:35:04 +00:00
2021-06-09 18:06:21 +00:00
current = 1 / current
2021-06-09 18:13:48 +00:00
current = ' %.3f ' % current
2021-07-14 17:02:54 +00:00
2021-06-09 18:06:21 +00:00
arrow , change = self . getArrow ( change )
2021-06-09 18:13:48 +00:00
change = ' %.6f ' % change
2021-06-09 18:06:21 +00:00
midFrame = self . textToImage ( currency + ' ( ' + base + ' ) ' , current , change , arrow ) #IMAGE THE TEXT
2021-07-14 17:02:54 +00:00
2021-06-09 18:06:21 +00:00
try :
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' currencies ' )
logo = Image . open ( os . path . join ( logos_path , currency . lower ( ) + ' .png ' ) )
bse = Image . open ( os . path . join ( logos_path , base . lower ( ) + ' .png ' ) )
2021-06-10 18:55:23 +00:00
new_im = Image . new ( ' RGB ' , ( 32 , 32 ) )
2021-06-09 18:06:21 +00:00
2021-06-22 19:05:56 +00:00
new_im . paste ( bse , ( 0 , 10 ) , bse . convert ( ' RGBA ' ) )
new_im . paste ( logo , ( 10 , 0 ) , logo . convert ( ' RGBA ' ) )
2021-06-09 18:06:21 +00:00
stitchedStock = self . stitchImage ( [ new_im , midFrame ] )
2021-06-22 19:05:56 +00:00
image_list . append ( new_im )
2021-07-14 17:02:54 +00:00
2021-06-22 19:05:56 +00:00
except Exception as e :
print ( e )
image_list . append ( midFrame )
image_list . append ( self . blank )
finalDisplayImage = self . stitchImage ( image_list )
2021-07-14 17:02:54 +00:00
2021-06-22 19:05:56 +00:00
return finalDisplayImage
2021-07-08 18:42:21 +00:00
def getForexProfessional ( self ) :
2021-07-14 17:02:54 +00:00
title_img = self . openImage ( ' feature_titles/small_feature_titles/forex.png ' )
2021-07-22 18:08:43 +00:00
self . blank = Image . new ( ' RGB ' , ( 0 , 16 ) )
image_list = [ title_img , Image . new ( ' RGB ' , ( 5 , 16 ) ) ]
2021-07-08 18:42:21 +00:00
base , currency_info = json . load ( open ( ' csv/currency.json ' , ' r ' ) )
currencies = [ ' AUD ' , ' CAD ' , ' CHF ' , ' EUR ' , ' GBP ' , ' JPY ' , ' NZD ' ]
2021-07-22 18:08:43 +00:00
2021-07-08 18:42:21 +00:00
for i , currency in enumerate ( currencies ) :
current , yesterday = currency_info [ currency ]
change = 1 / current - 1 / yesterday
current = 1 / current
current = ' %.3f ' % current
arrow , change = self . getArrow ( change , professional = True )
change = ' %.6f ' % change
midFrame = self . textToImageProf ( currency + ' ( ' + base + ' ) ' , current , change , arrow , font = ImageFont . load ( " ./fonts/6x10.pil " ) ) #IMAGE THE TEXT
try :
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' currencies ' )
logo = Image . open ( os . path . join ( logos_path , currency . lower ( ) + ' .png ' ) )
bse = Image . open ( os . path . join ( logos_path , base . lower ( ) + ' .png ' ) )
new_im = Image . new ( ' RGB ' , ( 32 , 32 ) )
new_im . paste ( bse , ( 0 , 10 ) , bse . convert ( ' RGBA ' ) )
new_im . paste ( logo , ( 10 , 0 ) , logo . convert ( ' RGBA ' ) )
width , height = new_im . size
new_im = new_im . resize ( ( int ( width / 2 ) , int ( height / 2 ) ) )
stitchedStock = self . stitchImage ( [ new_im , midFrame ] )
image_list . append ( new_im )
except Exception as e :
print ( e )
image_list . append ( midFrame )
image_list . append ( self . blank )
finalDisplayImage = self . stitchImage ( image_list )
self . blank = Image . new ( ' RGB ' , ( 10 , 32 ) )
return finalDisplayImage
2021-06-22 19:05:56 +00:00
def getStockImage ( self ) :
2021-06-30 19:22:14 +00:00
title_img = self . openImage ( ' feature_titles/stocks.png ' )
2021-06-22 19:05:56 +00:00
image_list = [ title_img ]
image_list . append ( self . blank )
start = time . time ( )
self . readStocksCSV ( )
for i , symbol in enumerate ( self . symbols ) :
info = self . stock_info [ symbol ]
change = float ( info [ 0 ] ) - float ( info [ 1 ] ) #TEXT
ticker = symbol #TEXT
current = ' %.2f ' % float ( info [ 0 ] ) #TEXT
arrow , change = self . getArrow ( change )
change = ' %.2f ' % change
midFrame = self . textToImage ( ticker , current , change , arrow ) #IMAGE THE TEXT
try :
2021-07-08 18:42:21 +00:00
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' stocks ' )
2021-06-22 19:05:56 +00:00
logo = Image . open ( os . path . join ( logos_path , ticker + ' .png ' ) )
stitchedStock = self . stitchImage ( [ logo , midFrame ] )
2021-06-09 18:06:21 +00:00
except :
2021-05-03 10:39:31 +00:00
2021-06-09 18:06:21 +00:00
stitchedStock = midFrame
image_list . append ( stitchedStock )
2021-06-22 19:05:56 +00:00
image_list . append ( self . blank )
2021-05-05 14:44:43 +00:00
finalDisplayImage = self . stitchImage ( image_list )
2021-05-06 18:23:17 +00:00
2021-06-22 19:05:56 +00:00
2021-06-21 16:39:44 +00:00
return finalDisplayImage
2021-05-05 14:44:43 +00:00
2021-07-05 18:51:40 +00:00
def getStockProfessional ( self ) :
2021-07-14 17:02:54 +00:00
title_img = self . openImage ( ' feature_titles/small_feature_titles/stocks.png ' )
2021-07-22 18:08:43 +00:00
image_list = [ title_img , Image . new ( ' RGB ' , ( 5 , 16 ) ) ]
2021-07-05 18:51:40 +00:00
self . readStocksCSV ( )
2021-07-08 18:42:21 +00:00
self . blank = Image . new ( ' RGB ' , ( 0 , 16 ) )
2021-07-05 18:51:40 +00:00
for i , symbol in enumerate ( self . symbols ) :
info = self . stock_info [ symbol ]
change = float ( info [ 0 ] ) - float ( info [ 1 ] ) #TEXT
ticker = symbol #TEXT
current = ' %.2f ' % float ( info [ 0 ] ) #TEXT
arrow , change = self . getArrow ( change , professional = True )
change = ' %.2f ' % change
midFrame = self . textToImageProf ( ticker , current , change , arrow , font = ImageFont . load ( " ./fonts/6x10.pil " ) ) #IMAGE THE TEXT
try :
2021-07-08 18:42:21 +00:00
try : #load the tiny logo
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' tiny_stocks ' )
logo = Image . open ( os . path . join ( logos_path , ticker + ' .png ' ) )
except : # load the big logo and scale it
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' stocks ' )
logo = Image . open ( os . path . join ( logos_path , ticker + ' .png ' ) )
# half the size of the logo
width , height = logo . size
logo = logo . resize ( ( int ( width / 2 ) , int ( height / 2 ) ) )
2021-07-05 18:51:40 +00:00
stitchedStock = self . stitchImage ( [ logo , midFrame ] )
except Exception as e :
stitchedStock = midFrame
image_list . append ( stitchedStock )
image_list . append ( self . blank )
finalDisplayImage = self . stitchImage ( image_list )
self . blank = Image . new ( ' RGB ' , ( 10 , 32 ) )
return finalDisplayImage
2021-06-27 11:07:47 +00:00
def getNewsImage ( self ) :
2021-06-30 19:22:14 +00:00
title_img = self . openImage ( ' feature_titles/news.png ' )
2021-07-14 17:02:54 +00:00
headline_font = ImageFont . load ( " ./fonts/6x13.pil " )
source_font = ImageFont . load ( " ./fonts/6x13.pil " )
2021-06-27 11:07:47 +00:00
image_list = [ title_img ]
headlines = [ ]
source_date_times = [ ]
2021-07-16 10:42:05 +00:00
sources = [ ]
2021-06-27 11:07:47 +00:00
f = open ( ' csv/news.csv ' , ' r ' )
CSV = csv . reader ( f )
next ( CSV )
for row in CSV :
headline , source , date , time = row
headlines . append ( headline )
source_date_times . append ( source + ' : ' + date + ' ' + time )
2021-07-16 10:42:05 +00:00
sources . append ( source )
2021-06-27 11:07:47 +00:00
f . close ( )
for i , headline in enumerate ( headlines ) :
2021-07-14 17:02:54 +00:00
2021-06-27 11:07:47 +00:00
headline = headline . replace ( " ^ " , " , " )
headline = headline . replace ( " ’ " , " ' " )
headline = headline . replace ( " ‘ " , " ' " )
headline = headline . replace ( ' “ ' , ' " ' )
headline = headline . replace ( ' ” ' , ' " ' )
2021-06-30 19:22:14 +00:00
headline = headline . replace ( ' — ' , ' - ' )
headline = headline . replace ( ' – ' , ' - ' )
2021-07-08 18:42:21 +00:00
headline = ' ' . join ( [ h for h in headline if ord ( h ) < 256 ] )
2021-06-27 11:07:47 +00:00
2021-07-14 17:02:54 +00:00
lst = headline . rsplit ( ' - ' , 1 ) #remove source name at end of headline
headline = lst [ 0 ]
2021-06-27 11:07:47 +00:00
headline_img = self . textImage ( headline , headline_font , matrix_height = True )
source_img = self . textImage ( source_date_times [ i ] , source_font , r = 255 , g = 255 , b = 0 , matrix_height = True )
2021-07-14 17:02:54 +00:00
2021-06-27 11:07:47 +00:00
try :
2021-07-22 18:08:43 +00:00
logo_name = sources [ i ] . lower ( ) . replace ( ' ' , ' - ' )
2021-06-27 11:07:47 +00:00
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' news_logos ' )
2021-07-22 18:08:43 +00:00
logo = Image . open ( os . path . join ( logos_path , logo_name + ' .png ' ) )
2021-06-27 11:07:47 +00:00
except Exception as e :
2021-07-22 18:08:43 +00:00
logo_name = ' default '
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' news_logos ' )
logo = Image . open ( os . path . join ( logos_path , logo_name + ' .png ' ) )
img = Image . new ( ' RGB ' , ( headline_img . size [ 0 ] , 32 ) )
img . paste ( headline_img , ( 2 , 0 ) )
img . paste ( source_img , ( 2 , 16 ) )
img = self . stitchImage ( [ logo , img ] )
2021-07-16 10:42:05 +00:00
2021-07-08 18:42:21 +00:00
image_list . append ( img )
2021-07-14 17:02:54 +00:00
image_list . append ( self . blank )
2021-07-08 18:42:21 +00:00
news_image = self . stitchImage ( image_list )
return news_image
def getNewsProfessional ( self ) :
headline_font = ImageFont . load ( " ./fonts/6x10.pil " )
source_font = ImageFont . load ( " ./fonts/6x10.pil " )
2021-07-14 17:02:54 +00:00
title_img = self . openImage ( ' feature_titles/small_feature_titles/news.png ' )
2021-07-22 18:08:43 +00:00
image_list = [ title_img , Image . new ( ' RGB ' , ( 5 , 16 ) ) ]
2021-07-08 18:42:21 +00:00
headlines = [ ]
sources = [ ]
f = open ( ' csv/news.csv ' , ' r ' )
CSV = csv . reader ( f )
next ( CSV )
for row in CSV :
headline , source , date , time = row
headlines . append ( headline )
2021-07-16 11:01:41 +00:00
sources . append ( source )
2021-07-08 18:42:21 +00:00
f . close ( )
2021-07-14 17:02:54 +00:00
blank = Image . new ( ' RGB ' , ( 0 , 16 ) )
2021-07-08 18:42:21 +00:00
for i , headline in enumerate ( headlines ) :
headline = headline . replace ( " ^ " , " , " )
headline = headline . replace ( " ’ " , " ' " )
headline = headline . replace ( " ‘ " , " ' " )
headline = headline . replace ( ' “ ' , ' " ' )
headline = headline . replace ( ' ” ' , ' " ' )
headline = headline . replace ( ' — ' , ' - ' )
headline = headline . replace ( ' – ' , ' - ' )
headline = ' ' . join ( [ h for h in headline if ord ( h ) < 256 ] )
2021-07-14 17:02:54 +00:00
lst = headline . rsplit ( ' - ' , 1 ) #remove source name at end of headline
headline = lst [ 0 ]
2021-07-08 18:42:21 +00:00
headline_img = self . textImage ( headline , headline_font , matrix_height = True )
2021-07-16 11:01:41 +00:00
source_img = self . textImage ( sources [ i ] + ' : ' , source_font , r = 255 , g = 255 , b = 0 , matrix_height = True )
2021-07-08 18:42:21 +00:00
try :
2021-07-22 18:08:43 +00:00
logo_name = sources [ i ] . lower ( ) . replace ( ' ' , ' - ' )
2021-07-08 18:42:21 +00:00
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' news_logos ' )
2021-07-22 18:08:43 +00:00
logo = Image . open ( os . path . join ( logos_path , logo_name + ' .png ' ) )
2021-07-08 18:42:21 +00:00
except Exception as e :
2021-07-22 18:08:43 +00:00
logo_name = ' default '
logos_path = os . path . join ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' logos ' ) , ' news_logos ' )
logo = Image . open ( os . path . join ( logos_path , logo_name + ' .png ' ) )
width , height = logo . size
2021-07-16 11:01:41 +00:00
2021-07-22 18:08:43 +00:00
logo = logo . resize ( ( int ( width / 2 ) , int ( height / 2 ) ) )
img = Image . new ( ' RGB ' , ( headline_img . size [ 0 ] + source_img . size [ 0 ] + logo . size [ 0 ] + 5 , 32 ) )
img . paste ( headline_img , ( source_img . size [ 0 ] + logo . size [ 0 ] - 5 , 3 ) )
img . paste ( source_img , ( 2 , 3 ) )
img = self . stitchImage ( [ logo , img ] )
2021-06-27 11:07:47 +00:00
2021-07-16 11:01:41 +00:00
2021-06-27 11:07:47 +00:00
image_list . append ( img )
2021-07-14 17:02:54 +00:00
image_list . append ( blank )
2021-06-27 11:07:47 +00:00
news_image = self . stitchImage ( image_list )
return news_image
def getLeagueImage ( self , league = False , time = ' past ' ) :
if not league :
f = open ( " csv/league.txt " , ' r ' )
league = f . read ( ) . replace ( ' \n ' , ' ' )
f . close ( )
2021-06-15 18:35:04 +00:00
img = Image . new ( ' RGB ' , ( 10000 , 32 ) )
2021-06-17 19:06:23 +00:00
league_info = json . load ( open ( ' csv/sports/ {} / {} _games.json ' . format ( league , time ) , ' r ' ) )
2021-06-27 11:07:47 +00:00
2021-07-05 18:51:40 +00:00
2021-06-27 11:07:47 +00:00
2021-06-15 18:35:04 +00:00
small_font = ImageFont . load ( " ./fonts/5x7.pil " )
2021-06-19 09:53:09 +00:00
med_font = ImageFont . load ( " ./fonts/7x14B.pil " )
2021-06-21 16:39:44 +00:00
large_font = ImageFont . load ( " ./fonts/9x18B.pil " )
2021-06-15 18:35:04 +00:00
2021-06-21 16:39:44 +00:00
sports_info = self . readSportsCSV ( league )
2021-06-21 16:41:18 +00:00
2021-06-17 19:06:23 +00:00
2021-06-21 16:39:44 +00:00
buff_size = 25
2021-06-15 18:35:04 +00:00
x_offset = 0
2021-07-08 18:42:21 +00:00
2021-06-15 18:35:04 +00:00
for match in league_info [ - 15 : ] :
home_team = match [ ' home_team ' ]
away_team = match [ ' away_team ' ]
home_score = match [ ' home_score ' ]
away_score = match [ ' away_score ' ]
2021-06-19 09:53:09 +00:00
date = match [ ' date ' ] . replace ( ' - ' , ' . ' )
2021-06-15 18:35:04 +00:00
2021-06-19 09:53:09 +00:00
#rond = match['round']
2021-06-15 18:35:04 +00:00
try :
2021-06-21 16:39:44 +00:00
home_logo = Image . open ( ' logos/sports/ {} / {} ' . format ( league , sports_info [ home_team ] [ ' logo ' ] ) )
except Exception as e :
2021-06-15 18:35:04 +00:00
home_logo = self . textImage ( home_team . replace ( ' ' , ' \n ' ) , small_font , r = 255 , g = 255 , b = 255 )
2021-07-08 18:42:21 +00:00
2021-06-15 18:35:04 +00:00
try :
2021-06-21 16:39:44 +00:00
away_logo = Image . open ( ' logos/sports/ {} / {} ' . format ( league , sports_info [ away_team ] [ ' logo ' ] ) )
except Exception as e :
2021-06-15 18:35:04 +00:00
away_logo = self . textImage ( away_team . replace ( ' ' , ' \n ' ) , small_font , r = 255 , g = 255 , b = 255 )
2021-07-08 18:42:21 +00:00
2021-06-27 11:07:47 +00:00
2021-06-21 16:39:44 +00:00
date_timage = self . textImage ( date , small_font , r = 255 , g = 255 , b = 255 )
2021-06-15 18:35:04 +00:00
img . paste ( home_logo , ( x_offset , 0 ) )
x_offset + = home_logo . size [ 0 ] + 2
2021-06-21 16:39:44 +00:00
2021-06-19 09:53:09 +00:00
if time == ' future ' :
2021-06-21 16:39:44 +00:00
img . paste ( date_timage , ( x_offset + 5 , 0 ) )
h_colour = mcolors . to_rgb ( sports_info [ home_team ] [ ' colour ' ] . replace ( ' ' , ' ' ) )
a_colour = mcolors . to_rgb ( sports_info [ away_team ] [ ' colour ' ] . replace ( ' ' , ' ' ) )
2021-06-22 19:05:56 +00:00
hc_timage = self . textImage ( sports_info [ home_team ] [ ' code ' ] , med_font , r = int ( h_colour [ 0 ] * 255 ) , g = int ( h_colour [ 1 ] * 255 ) , b = int ( h_colour [ 2 ] * 255 ) )
ac_timage = self . textImage ( sports_info [ away_team ] [ ' code ' ] , med_font , r = int ( a_colour [ 0 ] * 255 ) , g = int ( a_colour [ 1 ] * 255 ) , b = int ( a_colour [ 2 ] * 255 ) )
2021-07-05 18:51:40 +00:00
vs_timage = self . textImage ( ' vs ' , med_font , r = 255 , g = 255 , b = 255 , h_buff = 5 )
2021-06-21 16:39:44 +00:00
img . paste ( hc_timage , ( x_offset , 9 ) )
img . paste ( vs_timage , ( x_offset + hc_timage . size [ 0 ] , 9 ) )
img . paste ( ac_timage , ( x_offset + hc_timage . size [ 0 ] + vs_timage . size [ 0 ] , 9 ) )
2021-06-22 19:05:56 +00:00
x_offset + = max ( date_timage . size [ 0 ] , hc_timage . size [ 0 ] + vs_timage . size [ 0 ] + ac_timage . size [ 0 ] )
2021-06-19 09:53:09 +00:00
else :
2021-06-27 11:07:47 +00:00
score_image = self . textImage ( home_score + ' - ' + away_score , large_font , h_buff = 5 , r = 255 , g = 255 , b = 255 )
2021-06-21 16:39:44 +00:00
#vs_timage = self.textImage(sports_info[home_team]['code'] + 'vs' + sports_info[away_team]['code'], small_font, r = 255, g = 255, b = 255)
h_colour = mcolors . to_rgb ( sports_info [ home_team ] [ ' colour ' ] . replace ( ' ' , ' ' ) )
a_colour = mcolors . to_rgb ( sports_info [ away_team ] [ ' colour ' ] . replace ( ' ' , ' ' ) )
2021-06-22 19:05:56 +00:00
hc_timage = self . textImage ( sports_info [ home_team ] [ ' code ' ] , small_font , r = int ( h_colour [ 0 ] * 255 ) , g = int ( h_colour [ 1 ] * 255 ) , b = int ( h_colour [ 2 ] * 255 ) )
2021-06-21 16:39:44 +00:00
ac_timage = self . textImage ( sports_info [ away_team ] [ ' code ' ] , small_font , r = int ( a_colour [ 0 ] * 255 ) , g = int ( a_colour [ 1 ] * 255 ) , b = int ( a_colour [ 2 ] * 255 ) )
vs_timage = self . textImage ( ' vs ' , small_font , r = 255 , g = 255 , b = 255 )
2021-06-22 19:05:56 +00:00
if date_timage . size [ 0 ] > score_image . size [ 0 ] :
img . paste ( date_timage , ( x_offset + 2 , 0 ) )
img . paste ( hc_timage , ( x_offset + 6 , 9 ) )
img . paste ( vs_timage , ( x_offset + 5 + hc_timage . size [ 0 ] , 9 ) )
img . paste ( ac_timage , ( x_offset + 6 + hc_timage . size [ 0 ] + vs_timage . size [ 0 ] , 9 ) )
img . paste ( score_image , ( x_offset + 2 + int ( ( date_timage . size [ 0 ] - score_image . size [ 0 ] ) / 2 ) , 15 ) )
else :
img . paste ( date_timage , ( x_offset + 1 + int ( ( score_image . size [ 0 ] - date_timage . size [ 0 ] ) / 2 ) , 0 ) )
vs_size = hc_timage . size [ 0 ] + vs_timage . size [ 0 ] + ac_timage . size [ 0 ]
img . paste ( hc_timage , ( x_offset + 1 + int ( ( score_image . size [ 0 ] - vs_size ) / 2 ) , 9 ) )
img . paste ( vs_timage , ( x_offset + int ( ( score_image . size [ 0 ] - vs_size ) / 2 ) + hc_timage . size [ 0 ] , 9 ) )
img . paste ( ac_timage , ( x_offset + 1 + int ( ( score_image . size [ 0 ] - vs_size ) / 2 ) + hc_timage . size [ 0 ] + vs_timage . size [ 0 ] , 9 ) )
img . paste ( score_image , ( x_offset + 1 , 15 ) )
2021-06-21 16:39:44 +00:00
2021-06-22 19:05:56 +00:00
x_offset + = max ( date_timage . size [ 0 ] + 4 , hc_timage . size [ 0 ] + vs_timage . size [ 0 ] + ac_timage . size [ 0 ] + 4 , 2 + int ( score_image . size [ 0 ] ) )
2021-06-21 16:39:44 +00:00
#img.paste(vs_timage, (x_offset+4, 9))
2021-06-15 18:35:04 +00:00
2021-06-17 19:06:23 +00:00
#if league == 'NHL':
2021-06-19 09:53:09 +00:00
#
2021-06-17 19:06:23 +00:00
2021-06-19 09:53:09 +00:00
#img.paste(round_timage, (x_offset+ 7, 8))
2021-06-17 19:06:23 +00:00
2021-06-15 18:35:04 +00:00
#x_offset += max(home_timage.size[0], away_timage.size[0], date_timage.size[0], round_timage.size[0], score_image.size[0])
2021-06-22 19:05:56 +00:00
2021-06-21 16:39:44 +00:00
2021-06-15 18:35:04 +00:00
2021-06-22 19:05:56 +00:00
img . paste ( away_logo , ( x_offset , 0 ) )
2021-06-15 18:35:04 +00:00
2021-06-21 16:39:44 +00:00
x_offset + = away_logo . size [ 0 ]
2021-06-15 18:35:04 +00:00
x_offset + = buff_size
img = img . crop ( ( 0 , 0 , x_offset , 32 ) )
2021-06-27 11:07:47 +00:00
font = ImageFont . load ( " ./fonts/texgyre-27.pil " )
title_img = self . textImage ( time . upper ( ) + ' GAMES ' , font , matrix_height = True )
return self . stitchImage ( [ title_img , img ] )
2021-06-15 18:35:04 +00:00
2021-06-27 11:07:47 +00:00
def getLeagueTableImage ( self , league = False ) :
2021-06-17 19:06:23 +00:00
2021-06-27 11:07:47 +00:00
if not league :
f = open ( " csv/table_league.txt " , ' r ' )
league = f . read ( ) . replace ( ' \n ' , ' ' )
f . close ( )
2021-06-15 18:35:04 +00:00
img = Image . new ( ' RGB ' , ( 10000 , 32 ) )
2021-06-17 19:06:23 +00:00
team_info = json . load ( open ( ' csv/sports/ {} /team_stats.json ' . format ( league ) , ' r ' ) )
2021-06-15 18:35:04 +00:00
small_font = ImageFont . load ( " ./fonts/5x7.pil " )
2021-06-19 09:53:09 +00:00
med_font = ImageFont . load ( " ./fonts/8x13B.pil " )
2021-06-15 18:35:04 +00:00
large_font = ImageFont . load ( " ./fonts/10x20.pil " )
2021-06-17 19:06:23 +00:00
if league == ' NHL ' : # read the NHl info from the csv, prem will need this as well
sports_info = self . readSportsCSV ( league )
2021-06-15 18:35:04 +00:00
buff_size = 20
x_offset = 0
for team in team_info :
2021-06-17 19:06:23 +00:00
2021-06-15 18:35:04 +00:00
try :
2021-06-17 19:06:23 +00:00
if league == ' NHL ' :
logo = Image . open ( ' logos/sports/ {} / {} ' . format ( league , sports_info [ team [ ' name ' ] ] [ ' logo ' ] ) )
elif league == ' premier_league ' :
logo = Image . open ( ' logos/sports/ {} / {} .png ' . format ( league , team [ ' name ' ] ) )
2021-06-15 18:35:04 +00:00
img . paste ( logo , ( x_offset , 0 ) )
x_offset + = logo . size [ 0 ] + 2
2021-06-17 19:06:23 +00:00
except Exception as e :
2021-06-15 18:35:04 +00:00
print ( ' no logo for: ' , team [ ' name ' ] )
2021-07-08 18:42:21 +00:00
2021-06-15 18:35:04 +00:00
name_timage = self . textImage ( team [ ' name ' ] , med_font , r = 255 , g = 255 , b = 0 )
wins_timage = self . textImage ( ' Wins: ' + team [ ' wins ' ] , small_font , r = 0 , g = 255 , b = 0 )
loss_timage = self . textImage ( ' Losses: ' + team [ ' loss ' ] , small_font , r = 255 , g = 0 , b = 0 )
draw_timage = self . textImage ( ' Draws: ' + team [ ' draw ' ] , small_font , r = 0 , g = 0 , b = 255 )
points_timage = self . textImage ( ' Points: ' + team [ ' points ' ] , small_font , r = 255 , g = 255 , b = 255 )
standing_timage = self . textImage ( ' Standing: ' + team [ ' standing ' ] , small_font , r = 255 , g = 255 , b = 255 )
2021-06-19 09:53:09 +00:00
img . paste ( name_timage , ( x_offset , - 1 ) )
img . paste ( wins_timage , ( x_offset , 12 ) )
img . paste ( loss_timage , ( x_offset , 19 ) )
img . paste ( draw_timage , ( x_offset , 26 ) )
2021-06-15 18:35:04 +00:00
x_offset + = max ( wins_timage . size [ 0 ] , loss_timage . size [ 0 ] , draw_timage . size [ 0 ] )
img . paste ( points_timage , ( x_offset , 14 ) )
img . paste ( standing_timage , ( x_offset , 22 ) )
x_offset + = max ( points_timage . size [ 0 ] , standing_timage . size [ 0 ] ) + buff_size
img = img . crop ( ( 0 , 0 , x_offset , 32 ) )
2021-06-27 11:07:47 +00:00
font = ImageFont . load ( " ./fonts/texgyre-27.pil " )
title_img = self . textImage ( ' LEAGUE TABLE ' , font , matrix_height = True )
return self . stitchImage ( [ title_img , img ] )
2021-06-19 09:53:09 +00:00
2021-06-07 20:03:03 +00:00
def getTodayWeatherImage ( self ) :
2021-06-09 18:06:21 +00:00
f = open ( " csv/weather_location.txt " , ' r ' )
2021-06-28 19:36:29 +00:00
line = next ( f )
locations = line . split ( ' , ' )
2021-06-09 18:06:21 +00:00
f . close ( )
2021-06-15 18:35:04 +00:00
2021-06-03 20:56:25 +00:00
2021-06-30 19:22:14 +00:00
title_img = self . openImage ( ' feature_titles/weather.png ' )
2021-07-15 18:49:53 +00:00
imgs = [ title_img , self . blank ]
2021-07-06 19:15:05 +00:00
current_weathers = json . load ( open ( ' csv/current_weather.json ' , ' r ' ) )
for i , location in enumerate ( locations ) :
2021-07-22 18:08:43 +00:00
img = Image . new ( ' RGB ' , ( 203 , 32 ) )
2021-06-28 19:36:29 +00:00
2021-07-06 19:15:05 +00:00
current_weather = current_weathers [ i ]
2021-06-28 19:36:29 +00:00
small_font = ImageFont . load ( " ./fonts/5x7.pil " )
large_font = ImageFont . load ( " ./fonts/10x20.pil " )
2021-07-08 16:48:03 +00:00
location_img = self . textImage ( location . upper ( ) , small_font , r = 255 , g = 255 , b = 0 )
2021-06-28 19:36:29 +00:00
img . paste ( location_img , ( 5 , 0 ) )
main = current_weather [ ' main_weather ' ]
if main == ' Clouds ' :
main = current_weather [ ' description ' ]
weather_ids = { ' Clear ' : ' 01 ' , ' few clouds ' : ' 02 ' , ' scattered clouds ' : ' 03 ' , ' broken clouds ' : ' 04 ' , ' overcast clouds ' : ' 04 ' , ' Drizzle ' : ' 09 ' ,
' Rain ' : ' 10 ' , ' Thunderstorm ' : ' 11 ' , ' Snow ' : ' 13 ' , ' Mist ' : ' 50 ' , ' Smoke ' : ' 50 ' , ' Haze ' : ' 50 ' , ' Dust ' : ' 50 ' , ' Fog ' : ' 50 ' ,
' Sand ' : ' 50 ' , ' Ash ' : ' 50 ' , ' Squall ' : ' 50 ' , ' Tornado ' : ' 50 ' }
weather_dir = ' ./logos/weather_icons '
weather_img = Image . open ( weather_dir + ' /weather_type_icons/ ' + weather_ids [ main ] + ' .png ' )
img . paste ( weather_img , ( 5 , 9 ) )
temp_img = self . textImage ( str ( " {0:.0f} " . format ( current_weather [ ' temp ' ] ) ) , large_font )
2021-07-15 18:49:53 +00:00
img . paste ( temp_img , ( 39 , 9 ) )
2021-06-28 19:36:29 +00:00
deg_img = self . textImage ( ' o ' , small_font )
2021-06-08 20:16:08 +00:00
2021-07-15 18:49:53 +00:00
img . paste ( deg_img , ( 59 , 8 ) )
2021-06-28 19:36:29 +00:00
main = current_weather [ ' main_weather ' ]
2021-07-08 16:48:03 +00:00
main_img = self . textImage ( main . upper ( ) , small_font )
2021-07-15 18:49:53 +00:00
img . paste ( main_img , ( 35 , 26 ) )
2021-06-28 19:36:29 +00:00
2021-07-08 16:48:03 +00:00
feels_img = self . textImage ( ' Feels like: ' . upper ( ) + str ( " {0:.0f} " . format ( current_weather [ ' feels_like ' ] ) ) , small_font )
2021-06-28 19:36:29 +00:00
img . paste ( feels_img , ( location_img . size [ 0 ] + 10 , 0 ) )
min_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' min_temp ' ] ) , small_font , r = 0 , g = 0 , b = 255 )
img . paste ( min_img , ( 66 , 12 ) )
max_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' max_temp ' ] ) , small_font , r = 255 , g = 0 , b = 0 )
img . paste ( max_img , ( 66 , 21 ) )
hum_img = Image . open ( weather_dir + ' /humidity.png ' )
img . paste ( hum_img , ( 82 , 8 ) )
htext_img = self . textImage ( str ( current_weather [ ' humidity ' ] ) + ' % ' , small_font )
img . paste ( htext_img , ( 95 , 10 ) )
uv_img = Image . open ( weather_dir + ' /uv.png ' )
img . paste ( uv_img , ( 82 , 22 ) )
2021-07-16 10:00:37 +00:00
utext_img = self . textImage ( str ( round ( current_weather [ ' uv ' ] , 1 ) ) , small_font )
2021-06-28 19:36:29 +00:00
img . paste ( utext_img , ( 95 , 23 ) )
weekdays = [ ' Mon ' , ' Tue ' , ' Wed ' , ' Thu ' , ' Fri ' , ' Sat ' , ' Sun ' ]
months = [ ' Jan ' , ' Feb ' , ' Mar ' , ' Apr ' , ' May ' , ' Jun ' , ' Jul ' , ' Aug ' , ' Sep ' , ' Oct ' , ' Nov ' , ' Dec ' ]
2021-07-16 10:00:37 +00:00
month = months [ int ( datetime . now ( ) . strftime ( ' % m ' ) ) - 1 ]
2021-06-28 19:36:29 +00:00
date = str ( int ( datetime . now ( ) . strftime ( ' %d ' ) ) )
weekday = weekdays [ datetime . today ( ) . weekday ( ) ]
2021-07-08 16:48:03 +00:00
date_img = self . textImage ( ( month + ' ' + date + ' , ' + weekday ) . upper ( ) , small_font )
2021-06-28 19:36:29 +00:00
img . paste ( date_img , ( 132 , 0 ) )
rain_img = Image . open ( weather_dir + ' /rain-chance.png ' )
img . paste ( rain_img , ( 118 , 8 ) )
rtext_img = self . textImage ( str ( int ( current_weather [ ' rain_chance ' ] * 100 ) ) + ' % ' , small_font )
img . paste ( rtext_img , ( 131 , 10 ) )
cloud_img = Image . open ( weather_dir + ' /clouds.png ' )
img . paste ( cloud_img , ( 118 , 20 ) )
ctext_img = self . textImage ( str ( current_weather [ ' clouds ' ] ) + ' % ' , small_font )
img . paste ( ctext_img , ( 131 , 22 ) )
wind_img = Image . open ( weather_dir + ' /wind.png ' )
img . paste ( wind_img , ( 154 , 8 ) )
2021-07-14 17:02:54 +00:00
wtext_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' wind_speed ' ] ) + ' m/s ' . upper ( ) , small_font )
2021-06-28 19:36:29 +00:00
img . paste ( wtext_img , ( 168 , 10 ) )
2021-07-08 16:48:03 +00:00
wdir_img = self . textImage ( self . degreesToCompass ( current_weather [ ' wind_direction ' ] ) . upper ( ) , small_font )
2021-07-22 18:08:43 +00:00
img . paste ( wdir_img , ( 191 , 10 ) )
2021-06-28 19:36:29 +00:00
vis_img = Image . open ( weather_dir + ' /visibility.png ' )
img . paste ( vis_img , ( 154 , 20 ) )
2021-07-22 18:08:43 +00:00
vtext_img = self . textImage ( str ( round ( current_weather [ ' visibility ' ] / 1000 , 1 ) ) + ' km ' . upper ( ) , small_font )
2021-06-28 19:36:29 +00:00
img . paste ( vtext_img , ( 168 , 22 ) )
imgs . append ( img )
2021-07-15 18:49:53 +00:00
imgs . append ( self . blank )
2021-06-30 19:22:14 +00:00
2021-06-27 11:07:47 +00:00
2021-06-30 19:22:14 +00:00
return self . stitchImage ( imgs )
2021-07-08 18:42:21 +00:00
def getTodayWeatherProfessional ( self ) :
f = open ( " csv/weather_location.txt " , ' r ' )
line = next ( f )
locations = line . split ( ' , ' )
f . close ( )
2021-07-14 17:02:54 +00:00
title_img = self . openImage ( ' feature_titles/small_feature_titles/weather.png ' )
2021-07-22 18:08:43 +00:00
image_list = [ title_img , Image . new ( ' RGB ' , ( 3 , 16 ) ) ]
2021-07-14 17:02:54 +00:00
2021-07-08 18:42:21 +00:00
current_weathers = json . load ( open ( ' csv/current_weather.json ' , ' r ' ) )
weekdays = [ ' Mon ' , ' Tue ' , ' Wed ' , ' Thu ' , ' Fri ' , ' Sat ' , ' Sun ' ]
months = [ ' Jan ' , ' Feb ' , ' Mar ' , ' Apr ' , ' May ' , ' Jun ' , ' Jul ' , ' Aug ' , ' Sep ' , ' Oct ' , ' Nov ' , ' Dec ' ]
2021-07-16 10:00:37 +00:00
month = months [ int ( datetime . now ( ) . strftime ( ' % m ' ) ) - 1 ]
2021-07-08 18:42:21 +00:00
date = str ( int ( datetime . now ( ) . strftime ( ' %d ' ) ) )
weekday = weekdays [ datetime . today ( ) . weekday ( ) ]
for i , location in enumerate ( locations ) :
img = Image . new ( ' RGB ' , ( 1000 , 32 ) )
current_weather = current_weathers [ i ]
small_font = ImageFont . load ( " ./fonts/4x6.pil " )
font = ImageFont . load ( " ./fonts/6x10.pil " )
large_font = ImageFont . load ( " ./fonts/10x20.pil " )
main = current_weather [ ' main_weather ' ]
if main == ' Clouds ' :
main = current_weather [ ' description ' ]
weather_ids = { ' Clear ' : ' 01 ' , ' few clouds ' : ' 02 ' , ' scattered clouds ' : ' 03 ' , ' broken clouds ' : ' 04 ' , ' overcast clouds ' : ' 04 ' , ' Drizzle ' : ' 09 ' ,
' Rain ' : ' 10 ' , ' Thunderstorm ' : ' 11 ' , ' Snow ' : ' 13 ' , ' Mist ' : ' 50 ' , ' Smoke ' : ' 50 ' , ' Haze ' : ' 50 ' , ' Dust ' : ' 50 ' , ' Fog ' : ' 50 ' ,
' Sand ' : ' 50 ' , ' Ash ' : ' 50 ' , ' Squall ' : ' 50 ' , ' Tornado ' : ' 50 ' }
weather_dir = ' ./logos/weather_icons '
location_img = self . textImage ( location . upper ( ) , font , r = 255 , g = 255 , b = 0 )
img . paste ( location_img , ( 5 , 3 ) )
x_offset = location_img . size [ 0 ] + 8
date_img = self . textImage ( ( month + ' ' + date + ' , ' + weekday ) . upper ( ) , font )
img . paste ( date_img , ( x_offset , 3 ) )
x_offset + = date_img . size [ 0 ] + 2
weather_img = Image . open ( weather_dir + ' /weather_type_icons/ ' + weather_ids [ main ] + ' .png ' )
w , h = weather_img . size
weather_img = weather_img . resize ( ( int ( w / 2 ) , int ( h / 2 ) ) )
main = current_weather [ ' main_weather ' ]
main_img = self . textImage ( main . upper ( ) , font )
img . paste ( main_img , ( x_offset , 3 ) )
x_offset + = main_img . size [ 0 ] + 2
img . paste ( weather_img , ( x_offset , 3 ) )
x_offset + = weather_img . size [ 0 ] + 2
temp_img = self . textImage ( str ( " {0:.0f} " . format ( current_weather [ ' temp ' ] ) ) , font )
img . paste ( temp_img , ( x_offset , 3 ) )
x_offset + = temp_img . size [ 0 ] - 3
deg_img = self . textImage ( ' o ' , small_font )
2021-07-14 17:02:54 +00:00
img . paste ( deg_img , ( x_offset + 1 , 1 ) )
2021-07-08 18:42:21 +00:00
x_offset + = deg_img . size [ 0 ] - 2
min_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' min_temp ' ] ) , small_font , r = 0 , g = 0 , b = 255 )
2021-07-14 17:02:54 +00:00
img . paste ( min_img , ( x_offset + 2 , 2 ) )
2021-07-08 18:42:21 +00:00
max_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' max_temp ' ] ) , small_font , r = 255 , g = 0 , b = 0 )
2021-07-14 17:02:54 +00:00
img . paste ( max_img , ( x_offset + 2 , 8 ) )
2021-07-08 18:42:21 +00:00
x_offset + = max_img . size [ 0 ] + 2
hum_img = Image . open ( weather_dir + ' /humidity.png ' )
htext_img = self . textImage ( str ( current_weather [ ' humidity ' ] ) + ' % ' , font )
uv_img = Image . open ( weather_dir + ' /uv.png ' )
2021-07-16 10:00:37 +00:00
utext_img = self . textImage ( str ( round ( current_weather [ ' uv ' ] , 1 ) ) , font )
2021-07-08 18:42:21 +00:00
rain_img = Image . open ( weather_dir + ' /rain-chance.png ' )
rtext_img = self . textImage ( str ( int ( current_weather [ ' rain_chance ' ] * 100 ) ) + ' % ' , font )
cloud_img = Image . open ( weather_dir + ' /clouds.png ' )
ctext_img = self . textImage ( str ( current_weather [ ' clouds ' ] ) + ' % ' , font )
wind_img = Image . open ( weather_dir + ' /wind.png ' )
wtext_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' wind_speed ' ] ) + ' m/s ' , font )
wdir_img = self . textImage ( self . degreesToCompass ( current_weather [ ' wind_direction ' ] ) . upper ( ) , font )
vis_img = Image . open ( weather_dir + ' /visibility.png ' )
vtext_img = self . textImage ( str ( current_weather [ ' visibility ' ] / 1000 ) + ' km ' , font )
for image in [ hum_img , htext_img , uv_img , utext_img , rain_img , rtext_img , cloud_img , ctext_img , wind_img , wtext_img , wdir_img , vis_img , vtext_img ] :
img . paste ( image , ( x_offset , 3 ) )
x_offset + = image . size [ 0 ] + 2
img = img . crop ( ( 0 , 0 , x_offset + image . size [ 0 ] , 16 ) )
2021-07-14 17:02:54 +00:00
image_list . append ( img )
return self . stitchImage ( image_list )
2021-06-03 20:56:25 +00:00
2021-06-10 18:55:23 +00:00
def getDailyWeatherImageAlt ( self ) :
2021-06-07 20:03:03 +00:00
2021-06-09 18:06:21 +00:00
f = open ( " csv/weather_location.txt " , ' r ' )
location = f . read ( )
f . close ( )
2021-06-08 20:16:08 +00:00
img = Image . new ( ' RGB ' , ( 128 , 32 ) )
current_weather = json . load ( open ( ' csv/current_weather.json ' , ' r ' ) )
2021-06-07 20:03:03 +00:00
small_font = ImageFont . load ( " ./fonts/5x7.pil " )
2021-06-08 20:16:08 +00:00
extra_small_font = ImageFont . load ( " ./fonts/4x6.pil " )
2021-06-07 20:03:03 +00:00
large_font = ImageFont . load ( " ./fonts/10x20.pil " )
2021-06-09 18:06:21 +00:00
location_img = self . textImage ( location , extra_small_font , r = 255 , g = 255 , b = 0 )
2021-06-08 20:16:08 +00:00
main = current_weather [ ' main_weather ' ]
if main == ' Clouds ' :
main = current_weather [ ' description ' ]
weather_ids = { ' Clear ' : ' 01 ' , ' few clouds ' : ' 02 ' , ' scattered clouds ' : ' 03 ' , ' broken clouds ' : ' 04 ' , ' overcast clouds ' : ' 04 ' , ' Drizzle ' : ' 09 ' ,
' Rain ' : ' 10 ' , ' Thunderstorm ' : ' 11 ' , ' Snow ' : ' 13 ' , ' Mist ' : ' 50 ' , ' Smoke ' : ' 50 ' , ' Haze ' : ' 50 ' , ' Dust ' : ' 50 ' , ' Fog ' : ' 50 ' ,
' Sand ' : ' 50 ' , ' Ash ' : ' 50 ' , ' Squall ' : ' 50 ' , ' Tornado ' : ' 50 ' }
weather_dir = ' ./logos/weather_icons '
weather_img = Image . open ( weather_dir + ' /weather_type_icons/ ' + weather_ids [ main ] + ' .png ' )
temp_img = self . textImage ( str ( " {0:.0f} " . format ( current_weather [ ' temp ' ] ) ) , large_font )
deg_img = self . textImage ( ' o ' , small_font )
2021-06-07 20:03:03 +00:00
2021-06-08 20:16:08 +00:00
min_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' min_temp ' ] ) , small_font , r = 0 , g = 0 , b = 255 )
max_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' max_temp ' ] ) , small_font , r = 255 , g = 0 , b = 0 )
main = current_weather [ ' main_weather ' ]
main_img = self . textImage ( main , small_font )
2021-06-07 20:03:03 +00:00
weekdays = [ ' Mon ' , ' Tue ' , ' Wed ' , ' Thu ' , ' Fri ' , ' Sat ' , ' Sun ' ]
months = [ ' Jan ' , ' Feb ' , ' Mar ' , ' Apr ' , ' May ' , ' Jun ' , ' Jul ' , ' Aug ' , ' Sep ' , ' Oct ' , ' Nov ' , ' Dec ' ]
month = months [ int ( datetime . now ( ) . strftime ( ' % m ' ) ) ]
date = str ( int ( datetime . now ( ) . strftime ( ' %d ' ) ) )
weekday = weekdays [ datetime . today ( ) . weekday ( ) ]
2021-06-08 20:16:08 +00:00
date_img = self . textImage ( month + ' ' + date + ' , ' + weekday , extra_small_font )
rain_img = Image . open ( weather_dir + ' /rain-chance.png ' )
2021-06-07 20:03:03 +00:00
2021-06-09 18:39:04 +00:00
rtext_img = self . textImage ( str ( int ( current_weather [ ' rain_chance ' ] * 100 ) ) + ' % ' , extra_small_font )
2021-05-14 12:06:19 +00:00
2021-06-07 20:03:03 +00:00
2021-06-08 20:16:08 +00:00
hum_img = Image . open ( weather_dir + ' /humidity.png ' )
htext_img = self . textImage ( str ( current_weather [ ' humidity ' ] ) + ' % ' , extra_small_font )
uv_img = Image . open ( weather_dir + ' /uv.png ' )
2021-06-07 20:03:03 +00:00
2021-06-08 20:16:08 +00:00
utext_img = self . textImage ( str ( current_weather [ ' uv ' ] ) , extra_small_font )
2021-06-07 20:03:03 +00:00
2021-06-08 20:16:08 +00:00
wind_img = Image . open ( weather_dir + ' /wind.png ' )
wtext_img = self . textImage ( str ( current_weather [ ' wind_speed ' ] ) + ' m/s ' , extra_small_font )
2021-06-15 18:35:04 +00:00
2021-06-08 20:16:08 +00:00
img . paste ( location_img , ( 0 , 0 ) )
img . paste ( weather_img , ( 0 , 12 ) )
img . paste ( temp_img , ( 30 , 9 ) )
img . paste ( deg_img , ( 50 , 8 ) )
2021-06-08 20:30:48 +00:00
img . paste ( min_img , ( 55 , 10 ) )
2021-06-08 20:16:08 +00:00
img . paste ( main_img , ( 30 , 26 ) )
2021-06-14 18:19:52 +00:00
img . paste ( max_img , ( 55 , 19 ) )
2021-06-08 20:16:08 +00:00
img . paste ( date_img , ( location_img . size [ 0 ] , 1 ) )
img . paste ( rain_img , ( 75 , 0 ) )
img . paste ( rtext_img , ( 88 , 1 ) )
img . paste ( hum_img , ( 102 , 0 ) )
img . paste ( htext_img , ( 113 , 1 ) )
#img.paste(uv_img, ( 96, 0))
#img.paste(utext_img, (109, 0))
#img.paste(wind_img, (96,0))
#img.paste(wtext_img, (109,0))
img0 = img
img = Image . new ( ' RGB ' , ( 1000 , 32 ) )
daily_weather = json . load ( open ( ' csv/daily_weather.json ' , ' r ' ) )
#img.paste(date_img, (70, 0))
x_offset = 64
for i in range ( 0 , len ( daily_weather ) - 1 ) :
weekday = weekdays [ ( datetime . today ( ) . weekday ( ) + i ) % 7 ]
day_img = self . textImage ( weekday , small_font )
2021-06-07 20:03:03 +00:00
weather = daily_weather [ i ]
main = weather [ ' main_weather ' ]
if main == ' Clouds ' :
main = weather [ ' description ' ]
2021-06-08 20:16:08 +00:00
weather_img = Image . open ( weather_dir + ' /small_icons/ ' + weather_ids [ main ] + ' .png ' )
2021-06-07 20:03:03 +00:00
min_img = self . textImage ( " {0:.0f} " . format ( weather [ ' min_temp ' ] ) , small_font , r = 0 , g = 0 , b = 255 )
max_img = self . textImage ( " {0:.0f} " . format ( weather [ ' max_temp ' ] ) , small_font , r = 255 , g = 0 , b = 0 )
2021-06-08 20:16:08 +00:00
img . paste ( day_img , ( x_offset + 5 , 9 ) )
img . paste ( weather_img , ( x_offset + 5 , 16 ) )
img . paste ( min_img , ( x_offset + 25 , 10 ) )
2021-06-14 18:19:52 +00:00
img . paste ( max_img , ( x_offset + 25 , 20 ) )
2021-06-07 20:03:03 +00:00
2021-06-08 20:16:08 +00:00
x_offset + = 35
2021-06-07 20:03:03 +00:00
2021-06-08 20:16:08 +00:00
img1 = img . crop ( ( 64 , 0 , x_offset , 32 ) )
2021-06-07 20:03:03 +00:00
2021-06-22 19:05:56 +00:00
img1 . save ( ' display_images/weather.ppm ' )
2021-06-08 20:16:08 +00:00
return img0 , img1
2021-06-07 20:03:03 +00:00
2021-06-10 18:55:23 +00:00
def getDailyWeatherImage ( self ) :
f = open ( " csv/weather_location.txt " , ' r ' )
2021-06-28 19:36:29 +00:00
line = next ( f )
locations = line . split ( ' , ' )
2021-06-10 18:55:23 +00:00
f . close ( )
2021-07-16 10:42:05 +00:00
title_img = self . openImage ( ' feature_titles/forecast.png ' )
2021-07-15 18:49:53 +00:00
imgs = [ title_img , self . blank ]
2021-06-10 18:55:23 +00:00
2021-07-06 19:15:05 +00:00
current_weathers = json . load ( open ( ' csv/current_weather.json ' , ' r ' ) )
daily_weathers = json . load ( open ( ' csv/daily_weather.json ' , ' r ' ) )
for i , location in enumerate ( locations ) :
2021-06-28 19:36:29 +00:00
img = Image . new ( ' RGB ' , ( 1000 , 32 ) )
2021-07-06 19:15:05 +00:00
current_weather = current_weathers [ i ]
daily_weather = daily_weathers [ i ]
2021-06-28 19:36:29 +00:00
small_font = ImageFont . load ( " ./fonts/5x7.pil " )
extra_small_font = ImageFont . load ( " ./fonts/4x6.pil " )
large_font = ImageFont . load ( " ./fonts/10x20.pil " )
2021-07-08 16:48:03 +00:00
location_img = self . textImage ( location . upper ( ) , extra_small_font , r = 255 , g = 255 , b = 0 )
2021-06-28 19:36:29 +00:00
main = current_weather [ ' main_weather ' ]
if main == ' Clouds ' :
main = current_weather [ ' description ' ]
weather_ids = { ' Clear ' : ' 01 ' , ' few clouds ' : ' 02 ' , ' scattered clouds ' : ' 03 ' , ' broken clouds ' : ' 04 ' , ' overcast clouds ' : ' 04 ' , ' Drizzle ' : ' 09 ' ,
' Rain ' : ' 10 ' , ' Thunderstorm ' : ' 11 ' , ' Snow ' : ' 13 ' , ' Mist ' : ' 50 ' , ' Smoke ' : ' 50 ' , ' Haze ' : ' 50 ' , ' Dust ' : ' 50 ' , ' Fog ' : ' 50 ' ,
' Sand ' : ' 50 ' , ' Ash ' : ' 50 ' , ' Squall ' : ' 50 ' , ' Tornado ' : ' 50 ' }
weather_dir = ' ./logos/weather_icons '
weather_img = Image . open ( weather_dir + ' /weather_type_icons/ ' + weather_ids [ main ] + ' .png ' )
temp_img = self . textImage ( str ( " {0:.0f} " . format ( current_weather [ ' temp ' ] ) ) , large_font )
deg_img = self . textImage ( ' o ' , small_font )
min_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' min_temp ' ] ) , small_font , r = 0 , g = 0 , b = 255 )
max_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' max_temp ' ] ) , small_font , r = 255 , g = 0 , b = 0 )
main = current_weather [ ' main_weather ' ]
2021-07-08 16:48:03 +00:00
main_img = self . textImage ( main . upper ( ) , small_font )
2021-06-28 19:36:29 +00:00
weekdays = [ ' Mon ' , ' Tue ' , ' Wed ' , ' Thu ' , ' Fri ' , ' Sat ' , ' Sun ' ]
months = [ ' Jan ' , ' Feb ' , ' Mar ' , ' Apr ' , ' May ' , ' Jun ' , ' Jul ' , ' Aug ' , ' Sep ' , ' Oct ' , ' Nov ' , ' Dec ' ]
2021-07-14 17:02:54 +00:00
2021-07-16 10:00:37 +00:00
month = months [ int ( datetime . now ( ) . strftime ( ' % m ' ) ) - 1 ]
2021-06-28 19:36:29 +00:00
date = str ( int ( datetime . now ( ) . strftime ( ' %d ' ) ) )
weekday = weekdays [ datetime . today ( ) . weekday ( ) ]
2021-07-08 16:48:03 +00:00
date_img = self . textImage ( ( month + ' ' + date + ' , ' + weekday ) . upper ( ) , extra_small_font )
2021-06-28 19:36:29 +00:00
rain_img = Image . open ( weather_dir + ' /rain-chance.png ' )
rtext_img = self . textImage ( str ( int ( current_weather [ ' rain_chance ' ] * 100 ) ) + ' % ' , extra_small_font )
2021-07-14 17:02:54 +00:00
hum_img = Image . open ( weather_dir + ' /humidity.png ' )
2021-06-28 19:36:29 +00:00
htext_img = self . textImage ( str ( current_weather [ ' humidity ' ] ) + ' % ' , extra_small_font )
wind_img = Image . open ( weather_dir + ' /wind.png ' )
2021-07-14 17:02:54 +00:00
wtext_img = self . textImage ( str ( current_weather [ ' wind_speed ' ] ) + ' m/s ' . upper ( ) , extra_small_font )
2021-06-28 19:36:29 +00:00
uv_img = Image . open ( weather_dir + ' /uv.png ' )
2021-07-16 11:18:38 +00:00
utext_img = self . textImage ( str ( round ( current_weather [ ' uv ' ] , 1 ) ) , small_font )
2021-06-28 19:36:29 +00:00
cloud_img = Image . open ( weather_dir + ' /clouds.png ' )
ctext_img = self . textImage ( str ( current_weather [ ' clouds ' ] ) + ' % ' , small_font )
wind_img = Image . open ( weather_dir + ' /wind.png ' )
2021-07-14 17:02:54 +00:00
wtext_img = self . textImage ( " {0:.0f} " . format ( current_weather [ ' wind_speed ' ] ) + ' m/s ' . upper ( ) , small_font )
2021-06-28 19:36:29 +00:00
wdir_img = self . textImage ( self . degreesToCompass ( current_weather [ ' wind_direction ' ] ) , small_font )
vis_img = Image . open ( weather_dir + ' /visibility.png ' )
2021-07-22 18:08:43 +00:00
vtext_img = self . textImage ( str ( round ( current_weather [ ' visibility ' ] / 1000 , 1 ) ) + ' km ' . upper ( ) , small_font )
2021-06-28 19:36:29 +00:00
img . paste ( location_img , ( 0 , 0 ) )
2021-07-14 17:02:54 +00:00
x_offset = location_img . size [ 0 ] + 2
img . paste ( weather_img , ( 0 , 12 ) )
img . paste ( temp_img , ( 34 , 9 ) )
img . paste ( deg_img , ( 55 , 8 ) )
img . paste ( min_img , ( 61 , 10 ) )
img . paste ( main_img , ( 31 , 26 ) )
img . paste ( max_img , ( 61 , 18 ) )
img . paste ( date_img , ( x_offset , 1 ) )
x_offset + = date_img . size [ 0 ] + 2
img . paste ( rain_img , ( x_offset , 0 ) )
x_offset + = rain_img . size [ 0 ] + 2
img . paste ( rtext_img , ( x_offset , 1 ) )
x_offset + = rtext_img . size [ 0 ] + 2
img . paste ( hum_img , ( x_offset , 0 ) )
x_offset + = hum_img . size [ 0 ] + 2
img . paste ( htext_img , ( x_offset , 1 ) )
x_offset + = htext_img . size [ 0 ] + 2
img . paste ( uv_img , ( x_offset , 0 ) )
x_offset + = uv_img . size [ 0 ] + 2
img . paste ( utext_img , ( x_offset , 1 ) )
x_offset + = utext_img . size [ 0 ] + 2
img . paste ( cloud_img , ( x_offset , 0 ) )
x_offset + = cloud_img . size [ 0 ] + 2
img . paste ( ctext_img , ( x_offset , 1 ) )
x_offset + = ctext_img . size [ 0 ] + 2
img . paste ( wind_img , ( x_offset , 0 ) )
x_offset + = wind_img . size [ 0 ] + 2
img . paste ( wtext_img , ( x_offset , 1 ) )
x_offset + = wtext_img . size [ 0 ] + 2
img . paste ( wdir_img , ( x_offset , 1 ) )
x_offset + = wdir_img . size [ 0 ] + 2
img . paste ( vis_img , ( x_offset , 0 ) )
x_offset + = vis_img . size [ 0 ] + 2
img . paste ( vtext_img , ( x_offset , 1 ) )
x_offset + = vtext_img . size [ 0 ] + 2
2021-06-28 19:36:29 +00:00
#img.paste(uv_img, ( 96, 0))
#img.paste(utext_img, (109, 0))
#img.paste(wind_img, (96,0))
#img.paste(wtext_img, (109,0))
#img.paste(date_img, (70, 0))
x_offset = 70
2021-06-10 18:55:23 +00:00
2021-06-28 19:36:29 +00:00
for i in range ( 1 , len ( daily_weather ) - 1 ) :
weekday = weekdays [ ( datetime . today ( ) . weekday ( ) + i ) % 7 ]
2021-07-08 16:48:03 +00:00
day_img = self . textImage ( weekday . upper ( ) , small_font )
2021-06-28 19:36:29 +00:00
weather = daily_weather [ i ]
main = weather [ ' main_weather ' ]
if main == ' Clouds ' :
main = weather [ ' description ' ]
weather_img = Image . open ( weather_dir + ' /small_icons/ ' + weather_ids [ main ] + ' .png ' )
min_img = self . textImage ( " {0:.0f} " . format ( weather [ ' min_temp ' ] ) , small_font , r = 0 , g = 0 , b = 255 )
max_img = self . textImage ( " {0:.0f} " . format ( weather [ ' max_temp ' ] ) , small_font , r = 255 , g = 0 , b = 0 )
img . paste ( day_img , ( x_offset + 5 , 9 ) )
img . paste ( weather_img , ( x_offset + 5 , 16 ) )
img . paste ( min_img , ( x_offset + 25 , 10 ) )
2021-07-14 17:02:54 +00:00
img . paste ( max_img , ( x_offset + 25 , 18 ) )
2021-06-28 19:36:29 +00:00
x_offset + = 40
img1 = img . crop ( ( 0 , 0 , x_offset , 32 ) )
imgs . append ( img1 )
2021-07-15 18:49:53 +00:00
imgs . append ( self . blank )
2021-06-28 19:36:29 +00:00
# add the image text
2021-06-10 18:55:23 +00:00
2021-06-30 19:22:14 +00:00
return self . stitchImage ( imgs )
2021-05-21 13:24:37 +00:00
2021-05-05 14:44:43 +00:00
#Retrieve symbols and stock info from the csv file
2021-06-22 19:05:56 +00:00
def readStocksCSV ( self ) :
2021-04-26 18:51:21 +00:00
2021-04-26 19:27:34 +00:00
self . symbols = [ ]
2021-05-05 14:44:43 +00:00
self . stock_info = { }
f = open ( ' csv/tickers.csv ' , ' r ' )
CSV = csv . reader ( f )
2021-05-06 19:59:27 +00:00
next ( CSV )
2021-04-26 19:27:34 +00:00
for row in CSV :
2021-05-14 12:55:43 +00:00
2021-05-05 14:44:43 +00:00
try :
symbol , current_price , opening_price = row
self . symbols . append ( symbol )
self . stock_info [ symbol ] = [ current_price , opening_price ]
except :
2021-05-25 18:57:34 +00:00
pass # we dont want to include incomplete information
2021-05-05 14:44:43 +00:00
f . close ( )
2021-05-14 12:02:22 +00:00
2021-06-22 19:05:56 +00:00
def readCryptoCSV ( self ) :
2021-05-14 12:02:22 +00:00
self . coins = [ ]
self . coin_info = { }
f = open ( ' csv/crypto.csv ' , ' r ' )
CSV = csv . reader ( f )
next ( CSV )
for row in CSV :
2021-05-14 12:55:43 +00:00
2021-05-14 12:02:22 +00:00
try :
2021-05-25 18:57:34 +00:00
symbol , coin , base , current_price , day_change = row
2021-05-14 12:02:22 +00:00
self . coins . append ( coin )
2021-05-25 18:57:34 +00:00
self . coin_info [ coin ] = [ symbol , base , current_price , day_change ]
2021-05-14 12:02:22 +00:00
except :
2021-05-25 18:57:34 +00:00
pass
2021-05-14 12:02:22 +00:00
f . close ( )
2021-05-24 19:59:42 +00:00
2021-06-17 19:06:23 +00:00
def readSportsCSV ( self , league ) :
team_info = { }
f = open ( ' csv/sports/ {} /team_info.csv ' . format ( league ) , ' r ' )
CSV = csv . reader ( f )
next ( CSV )
for row in CSV :
team_info [ row [ 0 ] ] = { }
team_info [ row [ 0 ] ] [ ' id ' ] = row [ 1 ]
team_info [ row [ 0 ] ] [ ' code ' ] = row [ 2 ]
2021-06-21 16:39:44 +00:00
team_info [ row [ 0 ] ] [ ' logo ' ] = row [ 4 ]
team_info [ row [ 0 ] ] [ ' colour ' ] = row [ 3 ]
2021-06-17 19:06:23 +00:00
return team_info
2021-06-10 18:55:23 +00:00
def displayDailyWeatherAlt ( self ) :
img0 , img1 = self . getDailyWeatherImageAlt ( )
2021-06-08 20:16:08 +00:00
#img = stock_ticker.getTodayWeatherImage()
while True :
self . setImage ( img0 , offset_x = 0 , offset_y = 0 )
image = img1
img_width , img_height = image . size
offset_x = 64
offset_y = 0
while offset_x > 64 - img_width :
offset_x - = 1
self . setImage ( image , offset_x = offset_x , offset_y = offset_y , min_x = 64 , min_y = 9 )
if offset_x + img_width < self . matrix . width : # if the image is ending
self . setImage ( image , offset_x = offset_x + img_width , offset_y = offset_y , min_x = 64 , min_y = 9 )
try :
msg = getInput ( )
if msg == ' K ' :
self . resetMatrix ( )
return True
self . process_msg ( msg )
except KeyboardInterrupt :
sys . stdout . flush ( )
pass
2021-06-08 20:30:48 +00:00
time . sleep ( self . delay * 1.1 )
2021-06-08 20:16:08 +00:00
2021-06-29 20:17:52 +00:00
def getUserImage ( self ) :
2021-06-30 19:22:14 +00:00
title_img = self . openImage ( ' feature_titles/images.png ' )
2021-06-30 21:00:14 +00:00
image = self . openImage ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' display_images/user_image.ppm ' ) )
2021-06-30 19:22:14 +00:00
return self . stitchImage ( [ title_img , image ] )
2021-06-29 20:17:52 +00:00
def getUserGIF ( self ) :
2021-07-14 17:02:54 +00:00
2021-07-15 18:49:53 +00:00
gif = Image . open ( os . path . join ( os . path . dirname ( os . path . abspath ( __file__ ) ) , ' display_images/user_gif.gif ' ) )
2021-06-29 20:17:52 +00:00
return gif
2021-06-15 18:35:04 +00:00
def displayStocks ( self ) :
self . scrollImageTransition ( [ ' final.ppm ' , ' final.ppm ' ] , offset_x = 0 , offset_y = 0 )
2021-07-14 17:02:54 +00:00
def displayProfessional ( self ) :
forex = self . getForexProfessional ( )
crypto = self . getCryptoProfessional ( )
news = self . getNewsProfessional ( )
stock = self . getStockProfessional ( )
weather = self . getTodayWeatherProfessional ( )
x_offset = 0
news . paste ( weather , ( x_offset , 16 ) )
x_offset + = weather . size [ 0 ]
news . paste ( crypto , ( x_offset , 16 ) )
x_offset + = crypto . size [ 0 ]
news . paste ( stock , ( x_offset , 16 ) )
x_offset + = stock . size [ 0 ]
news . paste ( forex , ( x_offset , 16 ) )
x_offset + = forex . size [ 0 ]
while True :
kill = stock_ticker . scrollImage ( news , offset_x = 128 )
if kill :
break
2021-07-28 19:18:38 +00:00
2021-06-15 18:35:04 +00:00
2021-05-05 15:22:01 +00:00
def process_msg ( self , msg ) :
2021-05-21 10:20:39 +00:00
if msg == ' S ' : # stocks
2021-07-16 10:00:37 +00:00
self . scrollFunctionsAnimated ( [ ' stocks ' , ' stocks ' ] , animation = ' traditional ' )
2021-05-05 15:22:01 +00:00
2021-07-06 19:15:05 +00:00
elif msg == ' C ' : # crypto
2021-07-16 10:00:37 +00:00
self . scrollFunctionsAnimated ( [ ' crypto ' , ' crypto ' ] , animation = ' traditional ' )
2021-07-06 19:15:05 +00:00
2021-07-08 16:48:03 +00:00
elif msg == ' F ' : # forex
2021-07-16 10:00:37 +00:00
self . scrollFunctionsAnimated ( [ ' forex ' , ' forex ' ] , animation = ' traditional ' )
2021-07-06 19:15:05 +00:00
2021-05-21 13:24:37 +00:00
elif msg == ' N ' : #news
2021-07-16 10:00:37 +00:00
self . scrollFunctionsAnimated ( [ ' news ' , ' news ' ] , animation = ' traditional ' )
2021-06-22 19:05:56 +00:00
2021-05-21 10:20:39 +00:00
# speed settings
2021-05-05 15:22:01 +00:00
elif msg == ' s ' :
self . delay = 0.03
elif msg == ' m ' :
2021-07-08 19:12:18 +00:00
self . delay = 0.02
2021-05-05 15:22:01 +00:00
elif msg == ' f ' :
2021-07-08 19:12:18 +00:00
self . delay = 0.01
2021-05-05 15:22:01 +00:00
2021-05-21 10:20:39 +00:00
elif msg in [ ' 0 ' , ' 1 ' , ' 2 ' , ' 3 ' , ' 4 ' , ' 5 ' , ' 6 ' , ' 7 ' , ' 8 ' , ' 9 ' ] : # birghtness ettings
2021-05-05 15:22:01 +00:00
self . brightness = min ( 1.0 , float ( msg ) / 10 + 0.1 )
2021-05-21 10:20:39 +00:00
elif msg == ' T ' : # text
2021-07-14 17:02:54 +00:00
self . scrollFunctionsAnimated ( [ ' text ' , ' text ' ] , animation = ' traditional ' )
2021-05-21 10:20:39 +00:00
elif msg == ' I ' : # image
2021-07-14 17:02:54 +00:00
self . scrollFunctionsAnimated ( [ ' display_image ' , ' display_image ' ] , animation = ' traditional ' )
2021-05-21 10:20:39 +00:00
elif msg == ' G ' : # gif
2021-07-15 18:49:53 +00:00
image = self . openImage ( ' ./display_images/user_gif.gif ' )
#self.displayGIF(image)
2021-07-14 17:02:54 +00:00
self . scrollFunctionsAnimated ( [ ' display_gif ' , ' display_gif ' ] , animation = ' traditional ' )
2021-06-07 20:03:03 +00:00
elif msg == ' W ' : # weather
2021-07-14 17:02:54 +00:00
self . scrollFunctionsAnimated ( [ ' today_weather ' , ' today_weather ' ] , animation = ' traditional ' )
2021-05-21 10:20:39 +00:00
2021-06-07 20:03:03 +00:00
elif msg == ' D ' : # daily weather
2021-07-14 17:02:54 +00:00
self . scrollFunctionsAnimated ( [ ' daily_weather ' , ' daily_weather ' ] , animation = ' traditional ' )
2021-06-10 18:55:23 +00:00
2021-06-19 09:53:09 +00:00
elif msg == ' P ' : # past league
2021-06-22 19:05:56 +00:00
img = self . getLeagueImage ( ' NBA ' , ' past ' )
img . save ( ' display_images/league.ppm ' )
2021-06-19 09:53:09 +00:00
2021-06-22 19:05:56 +00:00
stock_ticker . scrollImageTransition ( [ ' display_images/league.ppm ' , ' display_images/league.ppm ' ] , stocks = False )
2021-06-19 09:53:09 +00:00
2021-07-08 16:48:03 +00:00
elif msg == ' l ' : # future league
2021-06-22 19:05:56 +00:00
img = self . getLeagueImage ( ' NHL ' , ' future ' )
img . save ( ' display_images/league.ppm ' )
2021-06-15 18:35:04 +00:00
2021-06-22 19:05:56 +00:00
stock_ticker . scrollImageTransition ( [ ' display_images/league.ppm ' , ' display_images/league.ppm ' ] , stocks = False )
2021-06-15 18:35:04 +00:00
2021-06-19 09:53:09 +00:00
elif msg == ' L ' : # live game
2021-06-21 16:39:44 +00:00
img = self . getLeagueImage ( ' NBA ' , ' live ' )
2021-06-22 19:05:56 +00:00
img . save ( ' display_images/league.ppm ' )
2021-06-19 09:53:09 +00:00
2021-06-22 19:05:56 +00:00
stock_ticker . scrollImageTransition ( [ ' display_images/league.ppm ' , ' display_images/league.ppm ' ] , stocks = False )
2021-06-19 09:53:09 +00:00
2021-06-27 11:07:47 +00:00
elif msg == ' t ' : #legue tble
img = self . getLeagueTableImage ( ' premier_league ' )
2021-06-22 19:05:56 +00:00
img . save ( ' display_images/teams.ppm ' )
2021-06-15 18:35:04 +00:00
2021-06-22 19:05:56 +00:00
stock_ticker . scrollImageTransition ( [ ' display_images/teams.ppm ' , ' display_images/teams.ppm ' ] , stocks = False )
2021-06-15 18:35:04 +00:00
2021-06-21 16:39:44 +00:00
elif msg == ' A ' : #everything
2021-07-26 19:50:51 +00:00
2021-06-29 20:17:52 +00:00
userSettings = [ ' display_gif ' , ' text ' , ' display_image ' , ' stocks ' , ' crypto ' , ' forex ' , ' today_weather ' , ' daily_weather ' , ' league_table ' , ' league_games ' , ' news ' ] # these wil be read from csv, just for demo
2021-07-06 19:15:05 +00:00
#userSettings = [ 'daily_weather']
2021-07-05 18:51:40 +00:00
#userSettings = ['crypto', 'stocks'] # these wil be read from csv, just for demo
2021-06-30 21:00:14 +00:00
#userSettings = [ 'display_image', 'news'] # these wil be read from csv, just for demo
2021-06-22 19:05:56 +00:00
self . scrollFunctionsAnimated ( userSettings , animation = ' down ' )
2021-05-21 13:24:37 +00:00
2021-07-14 17:02:54 +00:00
elif msg == ' b ' :
2021-07-26 19:50:51 +00:00
userSettings = [ ' stocks_prof ' , ' crypto_prof ' , ' forex_prof ' , ' today_weather_prof ' ]
self . scrollFunctionsAnimatedProf ( userSettings )
2021-07-27 17:33:02 +00:00
elif msg == ' + ' :
stock_ticker . scrollMultiple ( )
2021-07-14 17:02:54 +00:00
2021-05-21 10:20:39 +00:00
elif msg == ' K ' : # kill
self . resetMatrix ( )
2021-05-01 10:39:20 +00:00
if __name__ == ' __main__ ' :
2021-06-15 18:35:04 +00:00
2021-05-31 11:22:56 +00:00
with open ( ' log.txt ' , " w " ) as log :
try :
2021-06-21 16:41:18 +00:00
stock_ticker = StockTicker ( )
2021-07-27 17:33:02 +00:00
2021-07-28 19:18:38 +00:00
start_image = Image . open ( ' ./logos/startup_logo.png ' )
stock_ticker . setImage ( start_image )
time . sleep ( 10 )
stock_ticker . resetMatrix ( )
2021-07-08 18:42:21 +00:00
2021-07-06 20:18:54 +00:00
#
2021-07-16 11:01:41 +00:00
#stock_ticker.process_msg('b')
2021-06-29 20:17:52 +00:00
#stock_ticker.process_msg('G')
2021-06-30 19:22:14 +00:00
#stock_ticker.process_msg('f')
2021-07-08 16:48:03 +00:00
#stock_ticker.process_msg('W')
2021-06-22 19:05:56 +00:00
2021-05-31 11:22:56 +00:00
while True :
msg = getInput ( )
stock_ticker . process_msg ( msg )
except Exception as e :
2021-06-03 20:56:25 +00:00
2021-05-31 11:22:56 +00:00
exc_type , exc_obj , exc_tb = sys . exc_info ( )
fname = os . path . split ( exc_tb . tb_frame . f_code . co_filename ) [ 1 ]
log . write ( str ( e ) )
log . write ( ' . file: ' + fname )
log . write ( ' . line: ' + str ( exc_tb . tb_lineno ) )
log . write ( ' . type: ' + str ( exc_type ) )
2021-06-02 15:37:31 +00:00
log . write ( ' \n ' + " " . join ( traceback . format_exception ( sys . exc_info ( ) [ 0 ] , sys . exc_info ( ) [ 1 ] , sys . exc_info ( ) [ 2 ] ) ) )
2021-06-03 20:56:25 +00:00
raise ( e )
2021-05-01 10:39:20 +00:00