/hhru

HH.ru API library for Python.

Primary LanguagePythonMIT LicenseMIT

hh.ru

HH.ru API library for Python.

Install

pip install hhru

Example usage.

import hhru
# List first page of Python remote vacancies, sorted by new. (See API docs)
vacancies = hhru.Client().search_vacancies( # search_vacancies_over_pages for generator that search's over all pages.
  text="Python",
  search_field="name",
  order_by="publication_time",
  schedule="remote",
)

API documentation.