redfernstech commited on
Commit
f8c6783
·
verified ·
1 Parent(s): a00bbd2

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -8,7 +8,7 @@ from nbconvert import HTMLExporter
8
  from wordcloud import WordCloud
9
 
10
  # Load the CSV data
11
- file_path = 'category upwork jobs.csv'
12
  jobs_df = pd.read_csv(file_path)
13
 
14
  # Adjust column names as per the CSV
@@ -35,7 +35,7 @@ if option == "Home":
35
 
36
  # Display filtered jobs with additional columns
37
  st.write(f"Showing jobs in category: **{selected_category}**")
38
- st.dataframe(filtered_jobs[['title','key','description','date']])
39
 
40
  # Optional: Show a count of jobs in the selected category
41
  st.write(f"Total jobs in this category: {len(filtered_jobs)}")
 
8
  from wordcloud import WordCloud
9
 
10
  # Load the CSV data
11
+ file_path = 'category upwork jobs (1).csv'
12
  jobs_df = pd.read_csv(file_path)
13
 
14
  # Adjust column names as per the CSV
 
35
 
36
  # Display filtered jobs with additional columns
37
  st.write(f"Showing jobs in category: **{selected_category}**")
38
+ st.dataframe(filtered_jobs[['title','key','description','date','extracted_budget']])
39
 
40
  # Optional: Show a count of jobs in the selected category
41
  st.write(f"Total jobs in this category: {len(filtered_jobs)}")