Metadata-Version: 2.1
Name: hhru
Version: 0.1.0
Summary: HH.ru API library for Python.
License: MIT
Keywords: hhru,hh.ru,hh api,headhunter
Author: Kirill Zhosul
Author-email: kirillzhosul@yandex.com
Requires-Python: >=3.7,<4.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests (>=2.28.1,<3.0.0)
Description-Content-Type: text/markdown

# hh.ru

HH.ru API library for Python.

### Install

```
pip install hhru
```

### Example usage.

```python
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.

- https://github.com/hhru/api
- https://api.hh.ru/openapi/redoc

