Skip to content

Commit 77b464c

Browse files
authored
Update Newsapp.py
1 parent 4c34216 commit 77b464c

File tree

1 file changed

+2
-18
lines changed

1 file changed

+2
-18
lines changed

News_App/Newsapp.py

+2-18
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,10 @@
1212

1313
def News(symbol):
1414
get_Data = yf.Ticker(symbol)
15-
# msft.news
16-
15+
1716
#news section
1817
try:
1918
NEWS = get_Data.news
20-
# sr.Markdown(f"{NEWS}")
2119
sr.Markdown(f"# News of {v.value} :")
2220
for i in range(len(NEWS)):
2321
sr.Markdown("\n********************************\n")
@@ -36,7 +34,7 @@ def News(symbol):
3634
except Exception as e:
3735
sr.Markdown(e)
3836
sr.Markdown("No news available")
39-
# News(select)
37+
4038

4139

4240

@@ -48,26 +46,12 @@ def Page():
4846
with sr.Column() as main:
4947
with sr.Sidebar():
5048
sr.Markdown("## **stock Analysis**")
51-
# sr.SliderInt(label="Ideal for placing controls")
52-
# sr.header("**srock Analysis**")
5349
sr.Select("Select stock",value=v,values=company)
5450

5551
select=Company_Name.get(v.value)
5652

5753

58-
# sr.Text(select_company)
59-
# sr.Info("I'm in the main content area, put your main content here")
60-
6154
News(select)
6255

63-
# sr.FigurePlotly(qs.plots.daily_returns(ITC,benchmark="US"))
6456
return main
6557

66-
67-
68-
# @app.route("/")
69-
# def hello_world():
70-
# return "<p>Hello, World!</p>"
71-
72-
# if __name__=="__main__":
73-
# app.run(debug=False)

0 commit comments

Comments
 (0)