niyaa commited on
Commit
3eac012
·
1 Parent(s): a177a52

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -3
app.py CHANGED
@@ -26,9 +26,7 @@ tickerSymbol = st.sidebar.selectbox('Stock ticker', ticker_list) # Select ticker
26
  tickerData = yf.Ticker(tickerSymbol) # Get ticker data
27
  tickerDf = tickerData.history(period='1d', start=start_date, end=end_date) #get the historical prices for this ticker
28
 
29
- # Ticker information
30
- string_logo = '<img src=%s>' % tickerData.info['logo_url']
31
- st.markdown(string_logo, unsafe_allow_html=True)
32
 
33
  string_name = tickerData.info['longName']
34
  st.header('**%s**' % string_name)
 
26
  tickerData = yf.Ticker(tickerSymbol) # Get ticker data
27
  tickerDf = tickerData.history(period='1d', start=start_date, end=end_date) #get the historical prices for this ticker
28
 
29
+
 
 
30
 
31
  string_name = tickerData.info['longName']
32
  st.header('**%s**' % string_name)