zoetrope69 / units4u

:+1::performing_arts::-1: a university unit recommender system based on natural language (sentiment)
http://units4u.herokuapp.com
1 stars 3 forks source link

Job data gathering #2

Closed zoetrope69 closed 8 years ago

zoetrope69 commented 8 years ago

:briefcase:

Options available: Amount of results, Country, name of location, job keywords.

  1. Sends a request to the Indeed API with out options
  2. Receive data and process for what we need
  3. Receive a list of jobs with titles and descriptions
jobs.search({
  amount: 1000,
  country: 'gb',
  location: 'London, UK',
  keywords: ['php', 'developer', 'html', 'css']
}, (err, results) => {
  if (err) {
    return console.log(err);
  }

  console.log(results);
});