Skip to content

Commit

Permalink
enh: linkedin company logo (#141)
Browse files Browse the repository at this point in the history
  • Loading branch information
cullenwatson authored Apr 30, 2024
1 parent 8dd08ed commit bf73c06
Show file tree
Hide file tree
Showing 6 changed files with 1,073 additions and 970 deletions.
2 changes: 1 addition & 1 deletion examples/JobSpy_AllSites.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@
# jobs.to_xlsx('jobs.xlsx', index=False)

# 4: display in Jupyter Notebook (1. pip install jupyter 2. jupyter notebook)
# display(jobs)
# display(jobs)
7 changes: 4 additions & 3 deletions examples/JobSpy_LongScrape.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,18 @@
search_term="software engineer",
# New York, NY
# Dallas, TX

# Los Angeles, CA
location="Los Angeles, CA",
results_wanted=min(results_in_each_iteration, results_wanted - len(all_jobs)),
results_wanted=min(
results_in_each_iteration, results_wanted - len(all_jobs)
),
country_indeed="USA",
offset=offset,
# proxy="http://jobspy:[email protected]:20001",
)

# Add the scraped jobs to the list
all_jobs.extend(jobs.to_dict('records'))
all_jobs.extend(jobs.to_dict("records"))

# Increment the offset for the next page of results
offset += results_in_each_iteration
Expand Down
Loading

0 comments on commit bf73c06

Please sign in to comment.