Learn practical skills, build real-world projects, and advance your career
from urllib.request import urlretrieve
helpers="https://raw.githubusercontent.com/EvanMarie/helpers/main/helpers.py"
urlretrieve(helpers, "helpers.py")
from helpers import *
# imports pandas, numpy, matplotlib, yfinance, et al.
import_all(); import ipywidgets as widgets 
import_all()
microsoft = pd.read_csv('./data/MSFT.csv', 
						index_col = "Date", 
						parse_dates=['Date'], 
						usecols = ["Date", "Close"] )