mirror of
https://github.com/Bunsly/JobSpy.git
synced 2026-03-04 19:44:30 -08:00
Compare commits
2 Commits
d4d52d05f5
...
61205bcc77
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
61205bcc77 | ||
|
|
f1602eca70 |
@@ -3,7 +3,7 @@ from __future__ import annotations
|
|||||||
import math
|
import math
|
||||||
import random
|
import random
|
||||||
import time
|
import time
|
||||||
from datetime import datetime, date
|
from datetime import datetime, date, timedelta
|
||||||
from typing import Optional
|
from typing import Optional
|
||||||
|
|
||||||
import regex as re
|
import regex as re
|
||||||
@@ -277,7 +277,7 @@ class Naukri(Scraper):
|
|||||||
match = re.search(r"(\d+)\s*day", label)
|
match = re.search(r"(\d+)\s*day", label)
|
||||||
if match:
|
if match:
|
||||||
days = int(match.group(1))
|
days = int(match.group(1))
|
||||||
parsed_date = today.replace(day=today.day - days).date()
|
parsed_date = (today - timedelta(days = days)).date()
|
||||||
log.debug(f"Date parsed: {days} days ago -> {parsed_date}")
|
log.debug(f"Date parsed: {days} days ago -> {parsed_date}")
|
||||||
return parsed_date
|
return parsed_date
|
||||||
elif created_date:
|
elif created_date:
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
|
|||||||
|
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "python-jobspy"
|
name = "python-jobspy"
|
||||||
version = "1.1.79"
|
version = "1.1.80"
|
||||||
description = "Job scraper for LinkedIn, Indeed, Glassdoor, ZipRecruiter & Bayt"
|
description = "Job scraper for LinkedIn, Indeed, Glassdoor, ZipRecruiter & Bayt"
|
||||||
authors = ["Cullen Watson <cullen@cullenwatson.com>", "Zachary Hampton <zachary@zacharysproducts.com>"]
|
authors = ["Cullen Watson <cullen@cullenwatson.com>", "Zachary Hampton <zachary@zacharysproducts.com>"]
|
||||||
homepage = "https://github.com/cullenwatson/JobSpy"
|
homepage = "https://github.com/cullenwatson/JobSpy"
|
||||||
|
|||||||
Reference in New Issue
Block a user