scrambled-snake / app.py
sotirios-slv's picture
Synced repo using 'sync_with_huggingface' Github Action
07c7fb5 verified
raw
history blame
245 Bytes
import streamlit as st
import pandas as pd
import dataset_wrangler
st.write(
"Scrambled Images from [https://www.slv.vic.gov.au/images](https://www.slv.vic.gov.au/images)"
)
df = dataset_wrangler.clean_df()
st.dataframe(df.head(10))