#hh #headhunter #hh-ru

app headhunter-cli

Headhunter (https://hh.ru) 的工具,可以自动更新简历

1 个不稳定版本

0.1.0 2023年2月4日

#3#hh

MIT 许可协议

27KB
408

bump-my-resume

Build Status Latest Version Documentation

Headhunter 的工具,可以自动更新简历

现在您只需在 https://dev.hh.ru/admin 上注册应用程序,并使用 Selenium 一次性获取访问令牌。此工具将模拟求职网站上的活动,并保持您的简历在顶部。

要求

安装

# run ChromeDriver on the another thread (it should use port 9515)
chromedriver &

# pass authorization, this requires a ChromeDriver
cargo build --release
# replace it with your data
./target/release/headhunter-cli auth \
  "client_id" \
  "client_secret" \
  "login" \
  "password"

# credentials are written to response.json
cat response.json

# you can now use the CLI to update the latest date on your resume
./target/release/headhunter-cli bump

在 Linux 上构建静态链接的二进制文件

我发现这在远程机器上运行很有用。您需要添加一些包和 musl 目标才能做到这一点。

# add musl-gcc command
sudo apt install musl-tools

# add linux musl target
rustup target add x86_64-unknown-linux-musl

# build statically linked binary
cargo build --release --target x86_64-unknown-linux-musl

# note: it's available in bit different directory
./target/x86_64-unknown-linux-musl/release/headhunter-cli --help

服务器配置

  1. response.json./target/release/headhunter-cli 放在同一个目录中,例如 /root/bump-my-resume
  2. 运行 crontab -e
  3. 添加以下行: 0 */1 * * * cd /root/bump-my-resume && ./target/release/headhunter-cli bump >> out.txt 2>&1

依赖

~15–29MB
~456K SLoC