Streamlit 3

[Streamlit] Secrets Management

# Secrets Management Streamlit 이용 시 비밀번호, 키 또는 저장소에 저장하지 않고 앱으로 전달해야 하는 모든 것을 안전하게 저장하는 간단한 방법을 제공한다. # 로컬 환경에서 secrets 설정하기 최상단 경로에 폴더 및 파일 생성: ~/.streamlit/secrets.toml ## .streamlit/secrets.toml API_KEY = '~~~' .gitignore 파일에 .streamlit/ 추가 및 git push ## .gitignore ... # Streamlit .streamlit/ git add .gitignore git commit -m "[commit log]" git push # 앱 배포 및 secrets 설정하기 http://share.streamlit..

Streamlit 2024.02.01

[Streamlit] st.write

# st.write Streamlit 라이브러리에서 제공되는 함수 간단한 방식으로 텍스트나 데이터를 웹 애플리케이션에 표시한다. 텍스트, 숫자, 차트, 이미지 등 다양한 종류의 콘텐츠를 쉽게 표시할 수 있다. # Markdown-formatted text(input: string) 파이썬 파일 생성 후 코드 입력 ## write.py import streamlit as st st.write('Hello, *World!* :sunglasses:') 파일 실행 streamlit run [파일이름].py URL 접속 # data formats such as numbers, data frames, styled data frames, and assorted objects ## write.py import stre..

Streamlit 2024.01.29
728x90