Job Scraper for jobs from the Philippines from various job posting websites as a python library.
python3 -m pip install phjob-scraper
-
-
Usage
from job_scraper import Jora src = Jora() results = src.search("quality assurance", location="manila") for i in results: print(i["title"])
-
-
Note: frequent usage within a few duration of time might raise CloudflareError from
cloudscraper
-
Usage
from job_scraper import Indeed src = Indeed() results = src.search("developer", location="baguio") print(results)
-
-
Note: job
description
is currently not available / cannot be scraped and customlocation
param cannot be set in.search()
functionDifferent json
company
// company structure "company": { "name": "name of company", "verified": true // true / false }
-
Usage
from job_scraper import Kalibrr src = Kalibrr() results = src.search("developer") print(results)
-
@tbdsux | © 2023