import streamlit as st from utils.wolvesville import Wolvesville from utils.models import LoadingScreen from utils.helper import getTitle from typing import List api = Wolvesville() screens: List[LoadingScreen] = api.getScreens() st.markdown(getTitle("Loading Screens"), unsafe_allow_html=True) for screen in screens[:5]: st.markdown( f'', unsafe_allow_html=True, ) rarity = screen.rarity.title() st.header(rarity) st.divider() st.toast("Loaded screens", icon="🌌")