streamlit
-
Python: 간단한 streamlit 앱 만들면서 배운 점컴퓨터/파이썬 2021. 9. 19. 14:34
streamlit 만든 것 데이터 앱을 쉽고 예쁘게 만들 수 있는 streamlit, mongoDB 필터링 기능도 익힐 겸 아래의 값들에 따라 필터링을 해서 테이블을 업데이트한다. (자동으로 공지들을 db에 저장하고 있다.) 구조 처음에 st.slider, st.multiselect 와 같은 위젯들 on_change에 callback 함수를 추가해서 그 함수에서 값들을 받고, 필터를 만들고, global 테이블을 업데이트했다. st.title("title") my_table = st.empty() def update_notice(): global my_table global categories my_table.empty() filter = {} try: # whenever I change category..
-
Python: Streamlit으로 간단 구글 번역기 GUI컴퓨터/파이썬 2020. 10. 24. 23:38
Streamlit Streamlit — The fastest way to create data apps Streamlit is an open-source app framework for Machine Learning and Data Science teams. Create beautiful data apps in hours, not weeks. All in pure Python. All for free. www.streamlit.io 1. 소개 streamlit 이란 파이썬으로 쉽게 웹 앱을 만들 수 있게 해주는 라이브러리이다. 주로 이렇게 쓰일 수 있다. 링크 streamlit 공식 소개 영상 Click to copy Copied 설치법 pip install streamlit streamlit hello..