tbdsux / job-scraper

Job Scraper for jobs from the Philippines from various job posting websites as a python library.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

job-scraper

Job Scraper for jobs from the Philippines from various job posting websites as a python library.

Install

python3 -m pip install phjob-scraper

Available websites

  • Jora

    • Usage

      from job_scraper import Jora
      
      src = Jora()
      results = src.search("quality assurance", location="manila")
      
      for i in results:
          print(i["title"])
  • Indeed

    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)
  • Kalibrr

    Note: job description is currently not available / cannot be scraped and custom location param cannot be set in .search() function

    Different 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

About

Job Scraper for jobs from the Philippines from various job posting websites as a python library.


Languages

Language:Python 100.0%