Python client drawn from Figure Eight's API docs
$ pip install figure-eight-client
Replace <figure-eight-api-token>
with a token from https://make.figure-eight.com/account/api
>>> from figure_eight_client import FigureEightClient
>>> client = FigureEightClient("<figure-eight-api-token>")
copy_job(job_id, all_units=True) |
copy_job_without_rows(job_id) |
add_tag_to_job(job_id, tag) |
upload_csv_to_job(job_id, data) |
launch_job(job_id, units_count, channel='on_demand') |
get_jobs(exclude_instructions=False, pages=1) |
get_job_rows(job_id, pages=-1) |
find_jobs_by_support_email(support_email, team_id=None) |
get_judgements_by_job_id(job_id) |
get_json_results_by_job_id(job_id) |
set_job_price_in_cents_per_page(job_id, price_in_cents) |
set_job_title(job_id, title) |
Consider making a pull request if you have an idea or discover a bug.
Big thanks to Density for sponsoring the development of figure-eight-python-client.