The job hunter's toolkit. Helps search job postings for hundreds of companies.
👩🏽💻 To get started, check out the interactive tutorial.
$ go get -u -v github.com/job-hunter-toolkit/job-hunter-toolkit
...
$ job-hunter-toolkit help
Usage:
job-hunter-toolkit [command]
Available Commands:
help Help about any command
job-postings Find job postings from various companies
job-sources List the various companies available from job-postings
Flags:
-h, --help help for job-hunter-toolkit
Use "job-hunter-toolkit [command] --help" for more information about a command.
$ job-hunter-toolkit job-postings
company: ... title: ... location: ... url: ...
company: ... title: ... location: ... url: ...
...
Output as newline separated JSON:
$ job-hunter-toolkit job-postings --json
{"company":"...","title":"...","location":"...","url":"..."}
{"company":"...","title":"...","location":"...","url":"..."}
...
Output as CSV (with no headers):
$ job-hunter-toolkit job-postings --csv
company,title,location,url
company,title,location,url
company,title,location,url
...