1. streamlit이란?
데이터사이언스/ML 프로젝트를 간단하게 배포할 수 있는 웹어플리케이션이다.
1.1 사용 목적
1.2 장점
- 웹개발을 몰라도 된다
- 전달력이 매우 좋다
- 간단한 파이썬 코드로 앱을 빌드할 수 있으며 별도의 FE작업이 필요없다
- 캐싱을 통해 앱 재빌드시 시간 단축이 가능하다
Streamlit은 조직 내부적으로 탐색적 데이터 분석(EDA) 결과를 공유하거나, 간단한 ML 모델을 배포하고 테스트를 하는 용도에 부합하는 툴로 많이 사용되지만 나는 간단한 홈페이지 제작에 사용할 것이다.
2. 간단한 사용법
pip install streamlit
import streamlit as st
st.title('내 홈페이지')
3. 간단한 UI 구상
4. 참고할 공식 문서
Streamlit Docs
Join the community Streamlit is more than just a way to make data apps, it's also a community of creators that share their apps and ideas and help each other make their work better. Please come join us on the community forum. We love to hear your questions
docs.streamlit.io
'파이썬 > streamlit' 카테고리의 다른 글
[python] streamlit으로 홈페이지 제작[1] (0) | 2023.11.07 |
---|