ledmosaic / streamlit_app.py
j-silv's picture
Add HF space/streamlit stuff
ff29d2e
raw
history blame contribute delete
257 Bytes
import streamlit as st
import random
"""
# LED Mosaic
### Create mosaic images made of 7-segment LED display digits
"""
def server():
st.image("https://www.justin-silver.com/assets/img/ledmosaic/result.png")
if __name__ == "__main__":
server()