nlpblogs commited on
Commit
6f05fcc
·
verified ·
1 Parent(s): 2504be4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -7
app.py CHANGED
@@ -52,13 +52,10 @@ if uploaded_files:
52
  if all_data:
53
  df = pd.DataFrame(all_data)
54
  st.dataframe(df)
55
-
56
- txt = st.text_area("Job description")
57
- data1 = pd.Series(txt, index = ["Job Description"])
58
-
59
- result = pd.concat([df, data1], axis=1, ignore_index=True)
60
- st.dataframe(result)
61
-
62
 
63
 
64
 
 
52
  if all_data:
53
  df = pd.DataFrame(all_data)
54
  st.dataframe(df)
55
+ txt = st.text_area("Job description")
56
+ data1 = pd.Series(txt, index = ["Job Description"])
57
+ result = pd.concat([df, data1], axis=1, ignore_index=True)
58
+ st.dataframe(result)
 
 
 
59
 
60
 
61