Gforce-ML commited on
Commit
a5ec936
1 Parent(s): 89338fe
Files changed (1) hide show
  1. app.py +0 -29
app.py DELETED
@@ -1,29 +0,0 @@
1
- import streamlit as st
2
- import numpy as np
3
- import pandas as pd
4
- import io
5
- import yfinance as yf
6
- import streamlit.components.v1 as components
7
-
8
- components.html(
9
- """
10
- <a href="https://git.io/typing-svg"><img src="https://readme-typing-svg.herokuapp.com?font=Fira+Code&pause=1000&width=435&lines=Маруся+не+отвечает+на+реплики" alt="Typing SVG" /></a>
11
- <a href="https://git.io/typing-svg"><img src="https://readme-typing-svg.herokuapp.com?font=Fira+Code&pause=1000&width=435&lines=из+телевизора" alt="Typing SVG" /></a>
12
- """
13
- )
14
-
15
- with open("D:\dev\VK_Marusya\image.jpg", "rb") as f:
16
- st.image(f.read(), use_column_width=True)
17
-
18
-
19
- st.write("""
20
- # Simple ap
21
- Dokf kfgdlfg kfg;flgk f;gdlfgk
22
- """)
23
-
24
- tickerSymbol = 'GOOGL'
25
- tickerData = yf.Ticker(tickerSymbol)
26
- tickerDf = tickerData.history(period='1d', start='2010-5-31', end='2020-5-31')
27
-
28
- st.line_chart(tickerDf.Close)
29
- st.line_chart(tickerDf.Volume)