Code Monkey home page Code Monkey logo

monster's Introduction

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.

monster's People

Contributors

whatamithinking avatar

Stargazers

Tomas Laurinavicius avatar  avatar todun avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.