agency / app.py
Zai
starting the class
eba1125
raw
history blame contribute delete
No virus
293 Bytes
import streamlit as st
from agency import Agency
def main():
agency = Agency()
st.title("Agency xD")
feature = st.sidebar.radio(
"Select feature:",
(
"Feature One",
"Feature Two",
),
)
if __name__ == "__main__":
main()