Yenaldooshi / pages /Loading_Screens.py
Abhinav
feat: Edit header and cleanup
8916dd4 unverified
raw
history blame
534 Bytes
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'<img src="{screen.image.url}" style="height:75%; width:75%;"/>',
unsafe_allow_html=True,
)
rarity = screen.rarity.title()
st.header(rarity)
st.divider()