table / app.py
ytaek-oh's picture
add files
c26c770
raw
history blame contribute delete
187 Bytes
import ast
import json
import os
import pandas as pd
import streamlit as st
# Streamlit app
def main():
st.title("Tables")
if __name__ == "__main__":
main()