GetDailyStock/GetDaily.py

15 lines
279 B
Python

#Get stock symbols in a file
#Get daily quote at end of day
#Send email, see Jupyter thing on other laptop for sending email
import yfinance as yf
#Yfinance tests
#https://pypi.org/project/yfinance/
data2 = yf.download(" CRSR VTI VOO DIS", period="1d")
print(data2.tail())