stcoats commited on
Commit
56677fa
·
1 Parent(s): a5de086

Add application file

Browse files
Files changed (1) hide show
  1. app.py +8 -7
app.py CHANGED
@@ -42,13 +42,13 @@ query = st.text_input("Search text (case-insensitive, exact substring match)", "
42
 
43
  # Build query
44
  if query:
45
- sql = """
46
  SELECT id, channel, video_id, speaker, start_time, end_time, upload_date, text, pos_tags, audio
47
  FROM data
48
- WHERE LOWER(text) LIKE LOWER(?)
49
  LIMIT 100
50
  """
51
- df = con.execute(sql, [f"%{query}%"]).df()
52
  else:
53
  df = con.execute("""
54
  SELECT id, channel, video_id, speaker, start_time, end_time, upload_date, text, pos_tags, audio
@@ -84,16 +84,16 @@ else:
84
  <table border='1' style='border-collapse:collapse;width:100%;font-size:13px;'>
85
  <thead>
86
  <tr>
87
- <th style='width:6em;'>id</th>
88
  <th style='width:6em;'>channel</th>
89
  <th style='width:6em;'>video_id</th>
90
  <th style='width:6em;'>speaker</th>
91
  <th style='width:6em;'>start_time</th>
92
  <th style='width:6em;'>end_time</th>
93
  <th style='width:6em;'>upload_date</th>
94
- <th style='width:25em;'>text</th>
95
- <th style='width:10em;'>pos_tags</th>
96
- <th style='width:10em;'>Audio</th>
97
  </tr>
98
  </thead>
99
  <tbody>
@@ -108,3 +108,4 @@ else:
108
 
109
  st.markdown("### Results Table (Sortable with Audio Column)")
110
  html(display_table_with_audio(df), height=900, scrolling=True)
 
 
42
 
43
  # Build query
44
  if query:
45
+ sql = f"""
46
  SELECT id, channel, video_id, speaker, start_time, end_time, upload_date, text, pos_tags, audio
47
  FROM data
48
+ WHERE LOWER(text) LIKE LOWER('%{query}%')
49
  LIMIT 100
50
  """
51
+ df = con.execute(sql).df()
52
  else:
53
  df = con.execute("""
54
  SELECT id, channel, video_id, speaker, start_time, end_time, upload_date, text, pos_tags, audio
 
84
  <table border='1' style='border-collapse:collapse;width:100%;font-size:13px;'>
85
  <thead>
86
  <tr>
87
+ <th style='width:5em;'>id</th>
88
  <th style='width:6em;'>channel</th>
89
  <th style='width:6em;'>video_id</th>
90
  <th style='width:6em;'>speaker</th>
91
  <th style='width:6em;'>start_time</th>
92
  <th style='width:6em;'>end_time</th>
93
  <th style='width:6em;'>upload_date</th>
94
+ <th style='width:20em;'>text</th>
95
+ <th style='width:8em;'>pos_tags</th>
96
+ <th style='width:12em;'>Audio</th>
97
  </tr>
98
  </thead>
99
  <tbody>
 
108
 
109
  st.markdown("### Results Table (Sortable with Audio Column)")
110
  html(display_table_with_audio(df), height=900, scrolling=True)
111
+