README

October 18, 2011 ยท View on GitHub

Simple wrapper for indeed api.

go to indeed.com - register for api publisher token

example

from indeed import IndeedApi

token = 'your token' api = IndeedApi(token)

json_results = api.search('job keywords')

print json_results

json_details = api.job_details([json_results['results'][0]['jobkey']])

print json_details