mirror of https://github.com/Bunsly/JobSpy
chore: version number
parent
1b56fd971d
commit
6db8da20dc
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "python-jobspy"
|
name = "python-jobspy"
|
||||||
version = "1.1.26"
|
version = "1.1.27"
|
||||||
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"
|
||||||
|
|
|
@ -143,7 +143,7 @@ class LinkedInScraper(Scraper):
|
||||||
salary_values = [currency_parser(value) for value in salary_text.split('-')]
|
salary_values = [currency_parser(value) for value in salary_text.split('-')]
|
||||||
salary_min = salary_values[0]
|
salary_min = salary_values[0]
|
||||||
salary_max = salary_values[1]
|
salary_max = salary_values[1]
|
||||||
currency = salary_text[0]
|
currency = salary_text[0] if salary_text[0] != '$' else 'USD'
|
||||||
|
|
||||||
compensation = Compensation(
|
compensation = Compensation(
|
||||||
min_amount=int(salary_min),
|
min_amount=int(salary_min),
|
||||||
|
|
Loading…
Reference in New Issue