nlpblogs commited on
Commit
5bd0747
·
verified ·
1 Parent(s): 04acd31

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -16,8 +16,8 @@ for uploaded_file in uploaded_files:
16
  text_data+= page.extract_text()
17
 
18
 
19
- for text in text_data:
20
- data = pd.Series(text, index = ["Resume"])
21
  st.dataframe(data) # view the text data
22
 
23
 
 
16
  text_data+= page.extract_text()
17
 
18
 
19
+
20
+ data = pd.Series(text_data, index = ["Resume"])
21
  st.dataframe(data) # view the text data
22
 
23