Skip to content

tbdsux/job-scraper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.

Topics

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages