Skip to content

Latest commit

 

History

History
25 lines (12 loc) · 403 Bytes

File metadata and controls

25 lines (12 loc) · 403 Bytes

Python Streamlit

alt text

Links :

Github @streamlit

Installation in python 3.6+ :

$ pip install streamlit


Hello world in streamlit :

import streamlit as st
st.markdown('Hello streamlit **_really_ cool**.')

save as hello.py

$ streamlit run hello.py