스트림릿과 판다스를 사용하기 위해 import 해줍니다.
import streamlit as st
from PIL import Image
img = Image.open('이미지 경로와 이름.확장자명')
st.set_page_config(page_title='Machine Learning',page_icon=img,layout='wide',initial_sidebar_state='collapsed')
def main():
pass
if __name__ == '__main__':
main()
해당 위에 아이콘과 이름을 변경할 수 있습니다.
'Streamlit' 카테고리의 다른 글
python(파이썬)의 streamlit(스트림릿)에서 여러 파일 업로드 (0) | 2022.01.10 |
---|---|
python(파이썬)의 streamlit(스트림릿)에서 파일 업로드 하기 (0) | 2022.01.10 |
python(파이썬)의 streamlit(스트림릿) 다양한 input 함수들 (0) | 2022.01.04 |
python(파이썬)의 streamlit(스트림릿) 이미지, 비디오, 오디오 출력하기 (0) | 2022.01.03 |
python(파이썬)의 streamlit(스트림릿) button, radio, checkbox, selectbox, multiselect, slider 사용하기 (0) | 2022.01.03 |