20 lines
397 B
Python
20 lines
397 B
Python
from twelvedata import TDClient
|
|
import sys
|
|
import os
|
|
import threading
|
|
from PIL import Image, ImageDraw, ImageFont
|
|
import time
|
|
import csv
|
|
|
|
from rgbmatrix import RGBMatrix, RGBMatrixOptions
|
|
from stockTicker import StockTicker
|
|
|
|
|
|
if __name__ == '__main__':
|
|
stock_ticker = StockTicker()
|
|
|
|
|
|
stock_ticker.ScrollImageTransition(['final.ppm', 'final.ppm'], offset_x = 0, offset_y = 0, delay = 0.005)
|
|
|
|
|