fix:variable bug (#181)

pull/185/head v1.1.63
Cullen Watson 2024-08-05 12:47:55 -05:00 committed by GitHub
parent 209e0e65b6
commit 0e046432d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 1 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "python-jobspy" name = "python-jobspy"
version = "1.1.62" version = "1.1.63"
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

@ -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