import streamlit as st from utils.wolvesville import Wolvesville from utils.models import ProfileIcons from typing import List from utils.helper import getTitle api = Wolvesville() css_example = """ """ st.write(css_example, unsafe_allow_html=True) st.title("Profile Icons") 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()