gopiashokan commited on
Commit
f836257
·
verified ·
1 Parent(s): 54bf828

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -290,7 +290,8 @@ class linkedin_scraper:
290
  # Display the Data in User Interface
291
  add_vertical_space(1)
292
  for i in range(0, len(df_final)):
293
-
 
294
  st.write(f"Company Name : {df_final.iloc[i,0]}")
295
  st.write(f"Job Title : {df_final.iloc[i,1]}")
296
  st.write(f"Location : {df_final.iloc[i,2]}")
 
290
  # Display the Data in User Interface
291
  add_vertical_space(1)
292
  for i in range(0, len(df_final)):
293
+
294
+ st.markdown(f'<h3 style="text-align: center;">Job Posting Details : {i+1}</h3>', unsafe_allow_html=True)
295
  st.write(f"Company Name : {df_final.iloc[i,0]}")
296
  st.write(f"Job Title : {df_final.iloc[i,1]}")
297
  st.write(f"Location : {df_final.iloc[i,2]}")