com3dian commited on
Commit
26c213f
·
1 Parent(s): ceb3736

remove reader

Browse files
Files changed (1) hide show
  1. app.py +0 -10
app.py CHANGED
@@ -19,13 +19,3 @@ if uploaded_file is not None:
19
  bytes_data = uploaded_file.getvalue()
20
  st.write(len(bytes_data), "bytes")
21
  saved_file_path = save_uploaded_file(uploaded_file)
22
-
23
-
24
- monkeyReader = grobidmonkey.reader.MonkeyReader('monkey')
25
- outline = monkeyReader.readOutline(saved_file_path)
26
-
27
- for pre, fill, node in outline:
28
- st.write("%s%s" % (pre, node.name))
29
-
30
- # read paper content
31
- essay = monkeyReader.readEssay(saved_file_path)
 
19
  bytes_data = uploaded_file.getvalue()
20
  st.write(len(bytes_data), "bytes")
21
  saved_file_path = save_uploaded_file(uploaded_file)