Bdjobs Fixed (#280)

This commit is contained in:
itsShrizon
2025-07-28 21:05:10 +06:00
committed by GitHub
parent 53b3b41385
commit ae2b1ea42c
6 changed files with 432 additions and 2 deletions

View File

@@ -68,6 +68,7 @@ class Country(Enum):
AUSTRALIA = ("australia", "au", "com.au")
AUSTRIA = ("austria", "at", "at")
BAHRAIN = ("bahrain", "bh")
BANGLADESH = ("bangladesh", "bd") # Added Bangladesh
BELGIUM = ("belgium", "be", "fr:be")
BULGARIA = ("bulgaria", "bg")
BRAZIL = ("brazil", "br", "com.br")
@@ -291,6 +292,7 @@ class Site(Enum):
GOOGLE = "google"
BAYT = "bayt"
NAUKRI = "naukri"
BDJOBS = "bdjobs" # Add this line
class SalarySource(Enum):
@@ -314,6 +316,8 @@ class ScraperInput(BaseModel):
linkedin_company_ids: list[int] | None = None
description_format: DescriptionFormat | None = DescriptionFormat.MARKDOWN
request_timeout: int = 60
results_wanted: int = 15
hours_old: int | None = None