DataAnalysis / Home.py
udaykiranbandi's picture
Create Home.py
8abea46 verified
raw
history blame contribute delete
663 Bytes
import streamlit as st
import requests
from streamlit_lottie import st_lottie
st.title("DATA ANALYSIS WITH PYTHON ")
def load_lottieurl(url: str):
r = requests.get(url)
if r.status_code != 200:
return None
return r.json()
lottie_data_analysis = load_lottieurl("https://lottie.host/1e166d5f-bd9a-4eb5-8ae5-82420d846f67/nUol6Qn5zQ.json")
st_lottie(lottie_data_analysis, height=150, key="data_analysis")
st.subheader(''':red[About the Web application]''')
st.markdown("""
Welcome to the **Dr_Analyst 🕵️‍♂️** app! This platform i s designed to help you learn, revise, and master data analysis concepts using Python.""")