Py.Cafe

snowpro_engineer/

dividend-heroes-analysis

Dividend Heroes Analysis

DocsPricing
  • DIVIDEND_HEROES_from_TradingView2.csv
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# Import python packages
import pandas as pd  
import streamlit as st    

# -------------- PAGE AND OTHER SETTINGS --------------
page_title = 'Dividend Heroes'
# Emojis: https://www.webfx.com/tools/emoji-cheat-sheet/
#page_icon = ':money_with_wings:'
#page_icon = ':christmas_tree:' 
layout = 'wide' # 'centered'

st.set_page_config(page_title=page_title, layout=layout)
#st.title(page_title + " " + page_icon)
#st.title(page_icon + " " + page_title + " " + page_icon)
st.title(page_title)

# -----------------------------------------------------

# Create dataframe  
df = pd.read_csv("DIVIDEND_HEROES_from_TradingView2.csv")  

# output dataframe 
df