We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2aed23 commit b91fd26Copy full SHA for b91fd26
main.py
@@ -5,23 +5,12 @@
5
from typing import List
6
7
import requests
8
-import streamlit as st
9
from dotenv import load_dotenv
10
from tqdm import tqdm
11
12
from classes import Table, Text, read_tables_from_list, read_texts_from_list
13
from utility import dump_excel, load_json, merge_text_table, timeit
14
15
-st.set_page_config(
16
- layout="centered", page_icon="🖱️", page_title="Interactive table app"
17
-)
18
-st.title("🖱️ Interactive table app")
19
-st.write(
20
- """This app shows how you can use the [streamlit-aggrid](STREAMLIT_AGGRID_URL)
21
- Streamlit component in an interactive way so as to display additional content
22
- based on user click."""
23
24
-
25
# load env var
26
load_dotenv()
27
TABLE_DETECTION_PORT = env["TABLE_DETECTION_PORT"]
0 commit comments