Python

streamlit - python으로 간단하게 웹사이트를 만들어주는 라이브러리

DevHam94 2024. 12. 23. 22:40

https://streamlit.io/

 

Streamlit • A faster way to build and share data apps

Streamlit is an open-source Python framework for data scientists and AI/ML engineers to deliver interactive data apps – in only a few lines of code.

streamlit.io

 

예제:

import streamlit as st

st.title('Uber pickups in NYC')

 

 

실행 명령어

터미널에 아래의 명령어를 적어준다. 

python -m streamlit run .\(해당 파이썬파일).py

 

 

이 사이트에서 데이트베이스의 데이터를 표형태로 출력하게 해줄수있다.