fission6 / python-indeed

light wrapper for indeed.com api

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

light wrapper for indeed.com api


Languages

Language:Python 100.0%