Py.Cafe

maartenbreddels/

streamlit-data-insights

Data Insights with Streamlit and Pandas

DocsPricing
  • app.py
  • requirements.txt
app.py
1
2
3
4
5
6
7
8
9
import streamlit as st
import numpy as np
import pandas as pd


print("\x1b[1;92mStreamlit script running...\x1b[0m")

st.title("Hi there")
requirements.txt
1
2
3
4
5
6

streamlit==1.27.2  # currently pinned to this version
numpy
altair
pandas