From 57436b8e96664d22d8dc1e25c932f96b8415f6f7 Mon Sep 17 00:00:00 2001 From: Maxim Marshak Date: Sat, 10 Sep 2022 17:06:27 +0600 Subject: [PATCH 1/3] Add HeadHunter, Huntflow and FriendWork job services API --- README.md | 39 +++++++++++++++++++++------------------ 1 file changed, 21 insertions(+), 18 deletions(-) diff --git a/README.md b/README.md index f7348891..cad4ba15 100644 --- a/README.md +++ b/README.md @@ -1135,24 +1135,27 @@ API | Description | Auth | HTTPS | CORS | **[⬆ Back to Index](#index)** ### Jobs API | Description | Auth | HTTPS | CORS | -|---|---|---|---|---| -| [Adzuna](https://developer.adzuna.com/overview) | Job board aggregator | `apiKey` | Yes | Unknown | -| [Arbeitnow](https://documenter.getpostman.com/view/18545278/UVJbJdKh) | API for Job board aggregator in Europe / Remote | No | Yes | Yes | -| [Arbeitsamt](https://jobsuche.api.bund.dev/) | API for the "Arbeitsamt", which is a german Job board aggregator | `OAuth` | Yes | Unknown | -| [Careerjet](https://www.careerjet.com/partners/api/) | Job search engine | `apiKey` | No | Unknown | -| [DevITjobs UK](https://devitjobs.uk/job_feed.xml) | Jobs with GraphQL | No | Yes | Yes | -| [Findwork](https://findwork.dev/developers/) | Job board | `apiKey` | Yes | Unknown | -| [GraphQL Jobs](https://graphql.jobs/docs/api/) | Jobs with GraphQL | No | Yes | Yes | -| [Jobs2Careers](http://api.jobs2careers.com/api/spec.pdf) | Job aggregator | `apiKey` | Yes | Unknown | -| [Jooble](https://jooble.org/api/about) | Job search engine | `apiKey` | Yes | Unknown | -| [Juju](http://www.juju.com/publisher/spec/) | Job search engine | `apiKey` | No | Unknown | -| [Open Skills](https://github.com/workforce-data-initiative/skills-api/wiki/API-Overview) | Job titles, skills and related jobs data | No | No | Unknown | -| [Reed](https://www.reed.co.uk/developers) | Job board aggregator | `apiKey` | Yes | Unknown | -| [The Muse](https://www.themuse.com/developers/api/v2) | Job board and company profiles | `apiKey` | Yes | Unknown | -| [Upwork](https://developers.upwork.com/) | Freelance job board and management system | `OAuth` | Yes | Unknown | -| [USAJOBS](https://developer.usajobs.gov/) | US government job board | `apiKey` | Yes | Unknown | -| [WhatJobs](https://www.whatjobs.com/affiliates) | Job search engine | `apiKey` | Yes | Unknown | -| [ZipRecruiter](https://www.ziprecruiter.com/publishers) | Job search app and website | `apiKey` | Yes | Unknown | +|---|--|---|------|---| +| [Adzuna](https://developer.adzuna.com/overview) | Job board aggregator | `apiKey` | Yes | Unknown | +| [Arbeitnow](https://documenter.getpostman.com/view/18545278/UVJbJdKh) | API for Job board aggregator in Europe / Remote | No | Yes | Yes | +| [Arbeitsamt](https://jobsuche.api.bund.dev/) | API for the "Arbeitsamt", which is a german Job board aggregator | `OAuth` | Yes | Unknown | +| [Careerjet](https://www.careerjet.com/partners/api/) | Job search engine | `apiKey` | No | Unknown | +| [DevITjobs UK](https://devitjobs.uk/job_feed.xml) | Jobs with GraphQL | No | Yes | Yes | +| [Findwork](https://findwork.dev/developers/) | Application Tracking System | `apiKey` | Yes | Unknown | +| [FriendWork](https://friend.work/) | Job board | `apiKey` | Yes | Unknown | +| [GraphQL Jobs](https://graphql.jobs/docs/api/) | Jobs with GraphQL | No | Yes | Yes | +| [HeadHunter](https://dev.hh.ru/) | Job board | `apiKey` | Yes | Yes | +| [Huntflow](https://huntflow.ru/api) | Application Tracking System | `apiKey` | Yes | Yes | +| [Jobs2Careers](http://api.jobs2careers.com/api/spec.pdf) | Job aggregator | `apiKey` | Yes | Unknown | +| [Jooble](https://jooble.org/api/about) | Job search engine | `apiKey` | Yes | Unknown | +| [Juju](http://www.juju.com/publisher/spec/) | Job search engine | `apiKey` | No | Unknown | +| [Open Skills](https://github.com/workforce-data-initiative/skills-api/wiki/API-Overview) | Job titles, skills and related jobs data | No | No | Unknown | +| [Reed](https://www.reed.co.uk/developers) | Job board aggregator | `apiKey` | Yes | Unknown | +| [The Muse](https://www.themuse.com/developers/api/v2) | Job board and company profiles | `apiKey` | Yes | Unknown | +| [Upwork](https://developers.upwork.com/) | Freelance job board and management system | `OAuth` | Yes | Unknown | +| [USAJOBS](https://developer.usajobs.gov/) | US government job board | `apiKey` | Yes | Unknown | +| [WhatJobs](https://www.whatjobs.com/affiliates) | Job search engine | `apiKey` | Yes | Unknown | +| [ZipRecruiter](https://www.ziprecruiter.com/publishers) | Job search app and website | `apiKey` | Yes | Unknown | **[⬆ Back to Index](#index)** ### Machine Learning From 3f405ca999cacc33d99af03c6994b2a5479441b8 Mon Sep 17 00:00:00 2001 From: Maxim Marshak Date: Sat, 10 Sep 2022 17:09:16 +0600 Subject: [PATCH 2/3] Update .gitignore --- .gitignore | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index bdca81ea..c7adce1a 100644 --- a/.gitignore +++ b/.gitignore @@ -103,6 +103,7 @@ celerybeat.pid *.sage.py # Environments +.idea .env .venv env/ @@ -127,4 +128,7 @@ venv.bak/ dmypy.json # Pyre type checker -.pyre/ \ No newline at end of file +.pyre/ + +# MacOS ssyetem +.DS_Store \ No newline at end of file From cfa50875a8732ddff9424af89227469bea9f7ecc Mon Sep 17 00:00:00 2001 From: Maxim Marshak Date: Sat, 10 Sep 2022 17:11:50 +0600 Subject: [PATCH 3/3] Fix typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cad4ba15..8e304b54 100644 --- a/README.md +++ b/README.md @@ -1141,8 +1141,8 @@ API | Description | Auth | HTTPS | CORS | | [Arbeitsamt](https://jobsuche.api.bund.dev/) | API for the "Arbeitsamt", which is a german Job board aggregator | `OAuth` | Yes | Unknown | | [Careerjet](https://www.careerjet.com/partners/api/) | Job search engine | `apiKey` | No | Unknown | | [DevITjobs UK](https://devitjobs.uk/job_feed.xml) | Jobs with GraphQL | No | Yes | Yes | -| [Findwork](https://findwork.dev/developers/) | Application Tracking System | `apiKey` | Yes | Unknown | -| [FriendWork](https://friend.work/) | Job board | `apiKey` | Yes | Unknown | +| [Findwork](https://findwork.dev/developers/) | Job board | `apiKey` | Yes | Unknown | +| [FriendWork](https://friend.work/) | Application Tracking System | `apiKey` | Yes | Unknown | | [GraphQL Jobs](https://graphql.jobs/docs/api/) | Jobs with GraphQL | No | Yes | Yes | | [HeadHunter](https://dev.hh.ru/) | Job board | `apiKey` | Yes | Yes | | [Huntflow](https://huntflow.ru/api) | Application Tracking System | `apiKey` | Yes | Yes |