Data Science Dojo portfolio available through Streamlit application
python -m venv venv
.\venv\Scripts\activate
pip install -r requirements.txt
streamlit run Portfolio.py
create new .py file in pages catalog. New web page will appear automatically.
every page must contain the following as the first lines:
from render_project import render_project
from find_project import find_project
from initialize_page import initialize_page
initialize_page()
streamlit_project = find_project("ProjectName")
render_project(streamlit_project)
Streamlit allows for some basic styling.
The config for it is .streamlit/config.toml
.
To apply that theme, select it in the top-right menu of the app.
Additional styling can be done for example in style/style.css
\
/images
-> main images catalog \