import streamlit as st from utils.wolvesville import Wolvesville from utils.models import ProfileIcons from typing import List api = Wolvesville() css_example = """ """ st.write(css_example, unsafe_allow_html=True) icons: List[ProfileIcons] = api.getProfileIcons() for item in icons: rarity = item.rarity.title() HTML = f'
{rarity}
' st.write(HTML, unsafe_allow_html=True) st.divider()