Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 

readme.md

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