Compare commits

...

2 Commits

Author SHA1 Message Date
Cullen Watson
6bb7d81ba8 change linkedin ep (#185) 2024-08-14 02:39:43 -05:00
Cullen Watson
0e046432d1 fix:variable bug (#181) 2024-08-05 12:47:55 -05:00
3 changed files with 5 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "python-jobspy" name = "python-jobspy"
version = "1.1.62" version = "1.1.64"
description = "Job scraper for LinkedIn, Indeed, Glassdoor & ZipRecruiter" description = "Job scraper for LinkedIn, Indeed, Glassdoor & ZipRecruiter"
authors = ["Zachary Hampton <zachary@bunsly.com>", "Cullen Watson <cullen@bunsly.com>"] authors = ["Zachary Hampton <zachary@bunsly.com>", "Cullen Watson <cullen@bunsly.com>"]
homepage = "https://github.com/Bunsly/JobSpy" homepage = "https://github.com/Bunsly/JobSpy"

View File

@@ -236,7 +236,7 @@ class LinkedInScraper(Scraper):
""" """
try: try:
response = self.session.get( response = self.session.get(
f"{self.base_url}/jobs-guest/jobs/api/jobPosting/{job_id}", timeout=5 f"{self.base_url}/jobs/view/{job_id}", timeout=5
) )
response.raise_for_status() response.raise_for_status()
except: except:

View File

@@ -198,6 +198,7 @@ def extract_salary(
if not salary_str: if not salary_str:
return None, None, None, None return None, None, None, None
annual_max_salary = None
min_max_pattern = r"\$(\d+(?:,\d+)?(?:\.\d+)?)([kK]?)\s*[-—–]\s*(?:\$)?(\d+(?:,\d+)?(?:\.\d+)?)([kK]?)" min_max_pattern = r"\$(\d+(?:,\d+)?(?:\.\d+)?)([kK]?)\s*[-—–]\s*(?:\$)?(\d+(?:,\d+)?(?:\.\d+)?)([kK]?)"
def to_int(s): def to_int(s):
@@ -238,6 +239,8 @@ def extract_salary(
annual_max_salary = max_salary annual_max_salary = max_salary
# Ensure salary range is within specified limits # Ensure salary range is within specified limits
if not annual_max_salary:
return None, None, None, None
if ( if (
lower_limit <= annual_min_salary <= upper_limit lower_limit <= annual_min_salary <= upper_limit
and lower_limit <= annual_max_salary <= upper_limit and lower_limit <= annual_max_salary <= upper_limit