ashcodes commited on
Commit
a5a6fbc
1 Parent(s): 5cdf055

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -53,7 +53,7 @@ def show_pdf(file_path):
53
  if input_pdf is not None:
54
  table = camelot.read_pdf('input.pdf', flavor='stream',split_text = True,layout_kwargs={'detect_vertical':True},backend='poppler')
55
  df = table[0].df
56
- df = df.dropna(axis=1, thresh=int(len(df)*0.7),inplace=True)
57
  for i in df.index:
58
  if df['Alerted'][i]=='o':
59
  df['Alerted'][i]='NO'
 
53
  if input_pdf is not None:
54
  table = camelot.read_pdf('input.pdf', flavor='stream',split_text = True,layout_kwargs={'detect_vertical':True},backend='poppler')
55
  df = table[0].df
56
+ #df = df.dropna(axis=1, thresh=int(len(df)*0.7),inplace=True)
57
  for i in df.index:
58
  if df['Alerted'][i]=='o':
59
  df['Alerted'][i]='NO'