hhru
HH.ru wrapper library for Python.
There is providers for API and Web (Currently, not implemented)
For authentication, there is Anonymous
mode, along with other authentications (currently, also not implemented)
Features
- Anonymous vacancies searches via API
(There is currently boilerplates / not finished features for using authentication / web provider)
How to install
pip install hhru
Example usage
import hhru
client = hhru.Client()
vacancies = client.search_vacancies_over_pages(
text="Python",
search_field="name",
order_by="publication_time",
schedule="remote",
)
Using web provider or custom authentication
client = hhru.Client(
backend=hhru.BackendWebProvider(
auth=DirectAuthProvider(
login="login",
password="password"
)
)
)
References