Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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)}")
|