Skip to content

Streamlit — The fastest way to build data apps in Python

License

Notifications You must be signed in to change notification settings

jav-rojas/streamlit

Repository files navigation

Streamlit

Streamlit is a magical frontend for data science and machine learning. Here is an example of how to use it:

Installation

Install with:

pip install streamlit

Static Example

Copy and paste this example and it should work:

import streamlit as st
import numpy as np
import time

st.title('Streamlit Example')
st.write('Hello, World!')
st.write(np.random.randn(200, 200))

st.subheader('A Progress Bar')
bar = st.progress(0)
for i in range(100):
  bar.progress(i + 1)
  time.sleep(0.1)

More Help

For more help and a complete API documentation, please run:

streamlit help

About

Streamlit — The fastest way to build data apps in Python

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 51.5%
  • TypeScript 42.9%
  • SCSS 3.8%
  • CSS 0.8%
  • Makefile 0.4%
  • JavaScript 0.3%
  • Other 0.3%