From 822a55783e3e4f297be54e7255844a323c9f9f33 Mon Sep 17 00:00:00 2001 From: Cullen Watson Date: Thu, 7 Sep 2023 11:35:14 -0500 Subject: [PATCH] docs: temp update --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 21c8f1b..26da763 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ - Scrapes job postings from **LinkedIn**, **Indeed** & **ZipRecruiter** simultaneously - 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 jobs: pd.DataFrame = scrape_jobs( - site_name=["indeed", "linkedin", "zip_recruiter"], - search_term="software engineer", - location="Dallas, TX", + site_name=['indeed', 'linkedin', 'zip_recruiter'], + search_term='software engineer', + location='Dallas, TX', results_wanted=10, 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 print(jobs) -print(errors) #2 display in Jupyter Notebook #display(jobs)