I have the following file structure:
dashboard
└── streamlit_app.py
└── site
├── __init__.py
└── app.py
# streamlit_app.py
from site.app import start
if __name__ == '__main__':
start()
# app.py
import streamlit as st
import database as db
def start():
st.set_page_config(
page_title='henos',
page_icon='https://imgur.com/a/urHOoK3',
initial_sidebar_state='collapsed',
)
st.text('This website is under development, please wait until complete')
but when i run streamlit_app.py i get this error:

any help would be great
siteis from python standard library, but not the package. You can printsite.__file__to check this.