Skip to content
This repository has been archived by the owner on Dec 9, 2019. It is now read-only.
/ monster Public archive

An unofficial headless monster api for applying to jobs,login, and search!

License

Notifications You must be signed in to change notification settings

whatamithinking/monster

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Monster.com Unofficial API

A simple unofficial api for Monster.com job board.

Completely headless. Everything runs on python requests.

Methods

  • login : Login to Monster.com with your email and password.
  • search : search for jobs. returns a list of search results named tuples with ApplyLink ( quick apply job link ) and DetailsLink ( link to job desciption and other job details ). generator. The following filters are supported:
    • keywords
    • posted x days ago
    • type ( full-time, internship, temporary )
  • apply : apply to the job at the given url ( ApplyLink ) returned from search
  • batchApply : apply to a bunch of jobs at once. progress bar.
  • getJobDetails : get details on a given job from the DetailsLink of the search result returned from search. This method will also accept a job id or the apply url and will lookup the job details.

Installation

pip install git+git://github.com/ConnorSMaynes/monster

Usage

from monster import Monster

# LOGIN
m = Monster()
if m.login( USERNAME, PASSWORD ):

      # BATCH APPLY TO JOBS
      z.batchApply( m.search( quantity=5, keywords='developer' ) ) # apply to a bunch of jobs with progress bar.

      # APPLY TO JOBS AND GET DETAILS
      Jobs = z.search( quantity=5, keywords='developer' )
      for Job in Jobs:                                            # apply to jobs and do some other stuff
          JobDetails = z.getJobDetails( Job )                       
          AppResult = z.apply( Job )
          if AppResult:
              print( JobDetails )

Similar Projects

This project was inspired by others:

License

Copyright © 2018, ConnorSMaynes. Released under the MIT.

About

An unofficial headless monster api for applying to jobs,login, and search!

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages