import requests import streamlit as st from st_pages import Page, Section, show_pages, add_page_title from streamlit_echarts import st_echarts # Either this or add_indentation() MUST be called on each page in your # app to add indendation in the sidebar add_page_title() # Specify what pages shouldj, be shown in the sidebar, and what their titles and icons # should be show_pages( [ Page("streamlit_app.py", "ไธป้กต", "๐Ÿ "), Page("other_pages/page2.py", "ๅŸบ้‡‘็ฎก็†", "๐Ÿ’ผ"), Page("other_pages/page3.py", "ๅŸบ้‡‘้ข„ๆต‹", "๐ŸŒŸ"), # Page("other_pages/page4.py", "้ข„ๆต‹ๆจกๅž‹", "๐Ÿ“ˆ"), Page("other_pages/page5.py", "ๅŸบ้‡‘ๆŽจ่", "๐Ÿ†"), # Section("ๆ•ฐๆฎ็ฎก็†", "๐Ÿ“Š"), Page("other_pages/page6.py", "ๆจกๅž‹่ฎญ็ปƒๆ•ฐๆฎ", "๐Ÿ“‘"), Page("other_pages/pre_processing.py", "ๆ•ฐๆฎ้ข„ๅค„็†", "๐Ÿ“ˆ"), Page("other_pages/correlation_graph.py", "็›ธๅ…ณๆ€งๅฏ่ง†ๅŒ–", "๐Ÿ“Š"), Page("other_pages/page7.py", "ๆถˆๆฏ้€š็Ÿฅ", "๐Ÿ””"), # Section("My section", icon="๐ŸŽˆ๏ธ"), # Pages after a section will be indented # Page("Another page", icon="๐Ÿ’ช"), # Unless you explicitly say in_section=False # Page("Not in a section", in_section=False) ] )