Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jdockerty/pyjob
Python abstraction for the Reed API, job finding through code.
https://github.com/jdockerty/pyjob
jobsearch python python3 reed
Last synced: about 1 month ago
JSON representation
Python abstraction for the Reed API, job finding through code.
- Host: GitHub
- URL: https://github.com/jdockerty/pyjob
- Owner: jdockerty
- License: mit
- Created: 2021-02-21T21:50:08.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-03-03T16:35:26.000Z (over 3 years ago)
- Last Synced: 2024-09-23T09:15:53.214Z (about 2 months ago)
- Topics: jobsearch, python, python3, reed
- Language: Python
- Homepage:
- Size: 29.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PyJob
PyJob is an abstraction around the [Reed](https://reed.co.uk) API for job searching.
After providing an API key you can interact with the API for finding jobs that have been posted to Reed, either by companies or agencies, as well as the various other functionality that they provide.
You can:
* **Search** for jobs
* Find **details** of particular jobs using their IDs, this is used to grab an *extended* description of the job.## Installation
pip install pyjob-jdockerty
You will also need to register for a [Reed API](https://www.reed.co.uk/developers/jobseeker) key and export this, e.g.
export REED_API_KEY=
## CLI Usage
A simple search can be conducted using the command
pyjob search --term "software engineer" --max-results 3
This displays results for jobs which match the term `software engineer` according to Reed's API, displaying the first 3 results to you.
To view available flags, use the `--help` flag
pyjob search --help
This provides a greater list of options to pass into the CLI.
## TODO
* ~~Finish **Search** class for API interaction.~~
* Add CI pipeline.
* Add custom exceptions for raising errors, currently just exiting on error and printing a log message with `sys.exit`. Instead will raise exception and move the current logging message to the raised exception.
* ~~Build out a **Detail** class for finding more information around a job with the ID. [Response is similar, just with extended description, using this for now.~~
* ~~Create CLI wrapper for this API for job searches on the command line.~~