docs: temp update

pull/51/head
Cullen Watson 2023-09-07 11:35:14 -05:00 committed by GitHub
parent 59f739018a
commit 822a55783e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 5 deletions

View File

@ -7,7 +7,7 @@
- Scrapes job postings from **LinkedIn**, **Indeed** & **ZipRecruiter** simultaneously - Scrapes job postings from **LinkedIn**, **Indeed** & **ZipRecruiter** simultaneously
- Aggregates the job postings in a Pandas DataFrame - Aggregates the job postings in a Pandas DataFrame
[Video Guide for JobSpy](https://www.youtube.com/watch?v=-yS3mgI5H-4) [Video Guide for JobSpy](https://www.youtube.com/watch?v=-yS3mgI5H-4) (outdated, updating within couple hours)
@ -27,9 +27,9 @@ from jobspy import scrape_jobs
import pandas as pd import pandas as pd
jobs: pd.DataFrame = scrape_jobs( jobs: pd.DataFrame = scrape_jobs(
site_name=["indeed", "linkedin", "zip_recruiter"], site_name=['indeed', 'linkedin', 'zip_recruiter'],
search_term="software engineer", search_term='software engineer',
location="Dallas, TX", location='Dallas, TX',
results_wanted=10, results_wanted=10,
country_indeed='USA' # only needed for indeed country_indeed='USA' # only needed for indeed
@ -47,7 +47,6 @@ pd.set_option('display.max_colwidth', 50) # set to 0 to see full job url / desc
#1 output #1 output
print(jobs) print(jobs)
print(errors)
#2 display in Jupyter Notebook #2 display in Jupyter Notebook
#display(jobs) #display(jobs)