Scrapes job boards and scores listings against your profile — skills, experience, and salary
Project description
auto-job-scraper
A CLI tool that scrapes job boards and scores listings against your personal profile — skills, experience, and salary expectations — so the best matches rise to the top.
Currently supports Workable. More job boards coming in future releases.
Results are exported to a formatted Excel file with colour-coded scores and clickable job links.
Features
- Searches multiple job title keywords in one run
- Scores each job across up to five dimensions: skill match, salary, experience, remote accessibility, and company recognition
- Optional remote-only mode — when disabled, the remote weight is redistributed to the other dimensions
- Hard-filters jobs that exceed your experience level (optional)
- Exports results to Excel with per-job scores and a summary sheet
- Clickable job links in the terminal (top 5 matches after each run)
- Profile stored in a simple TOML config file you can edit any time
Requirements
- Python 3.11 or higher
- A Chromium browser for scraping (installed separately — see below)
Installation
pip install auto-job-scraper
Installing the browser (one-time step)
This tool uses Playwright to automate a headless browser. After installing the package, you need to download the Chromium browser binary once:
playwright install chromium
This downloads Chromium to a local cache folder (~/.cache/ms-playwright on macOS/Linux, %USERPROFILE%\AppData\Local\ms-playwright on Windows). It does not install anything system-wide and does not require admin rights.
You only need to do this once per machine. If you skip this step, the scraper will tell you with a clear error message when you first run it.
Setup
Before scraping, the tool needs to know your profile (skills, experience, salary, etc.). There are three ways to set it up:
Option 1 — Import from your CV (recommended)
auto-job-scraper --cv path/to/your-cv.pdf
The tool will extract your name, years of experience, and tech skills from the file, show you what it found, and save a profile config. If anything couldn't be detected, it will ask you a few questions or let you edit the file yourself.
Supported formats: .pdf, .txt, .md
Option 2 — Generate a template and fill it in
auto-job-scraper --init
Creates a pre-filled profile.toml with sample data and opens the folder so you can edit it directly. Fill in your details, then run the scraper.
Option 3 — Answer questions interactively
auto-job-scraper
If no profile is found, the tool offers to walk you through a short setup wizard.
Running the scraper
Once your profile is set up:
auto-job-scraper
The tool will:
- Load your profile
- Search for each keyword in your config
- Score every listing it finds
- Export the results to an Excel file in your current directory
- Print the top 5 matches in the terminal with clickable links
Profile config
Your profile is stored at:
| Platform | Location |
|---|---|
| macOS / Linux | ~/.auto-job-scraper/profile.toml |
| Windows | C:\Users\<you>\.auto-job-scraper\profile.toml |
You can open the file directly from the terminal:
auto-job-scraper --profile-path
The config file looks like this:
[profile]
name = "Jane Doe"
experience_years = 4.0
[skills]
# Matched against job descriptions to compute your profile score.
list = [
"typescript",
"react",
"node.js",
"postgresql",
]
[salary]
# All salary figures are treated as USD regardless of the currency symbol in the job post.
target_usd = 55000
[search]
keywords = [
"frontend developer",
"fullstack developer",
]
max_jobs_per_keyword = 20
max_scan_per_keyword = 100
min_score = 5.0
[filters]
# Set to true to score jobs on how remote-friendly they are.
# Set to false if you have no location preference — remote scoring is skipped
# and its weight is redistributed equally across the other four dimensions.
remote_only = true
# Hard-filter jobs that require more experience than you have (plus the gap).
strict_experience = true
experience_gap = 0.5
Scoring system
Each job is scored on up to five dimensions, then combined into a final weighted score (0–10):
| Dimension | Weight | How it works |
|---|---|---|
| Profile match | 30% | % of the job's required skills that match yours |
| Salary | 25% | How close the listed salary is to your target (treated as USD) |
| Experience | 20% | How your years of experience compare to what the job requires |
| Remote | 15% | How remote-friendly the role is (only when remote_only = true) |
| Company | 10% | Bonus for well-known tech companies |
When remote_only = false, the Remote dimension is skipped and its 15% weight is distributed equally (+3.75% each) across the other four dimensions.
Jobs below min_score (default 5.0) are discarded. If strict_experience is enabled, jobs requiring more years than your profile (plus experience_gap) are hard-filtered before scoring.
CLI reference
auto-job-scraper Run the scraper using your saved profile
auto-job-scraper --cv FILE Parse a CV and create/update your profile, then exit
auto-job-scraper --init Create a template profile.toml and exit
auto-job-scraper --profile-path Show the location of your profile config file
auto-job-scraper --remove-profile Delete your profile config file
Updating your profile
To update your profile after getting a new CV:
auto-job-scraper --cv path/to/updated-cv.pdf
This merges the new CV data into your existing profile, preserving your search keywords and filter settings.
To edit the file directly at any time:
auto-job-scraper --profile-path # shows the file location (clickable)
License
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file auto_job_scraper-1.0.0.tar.gz.
File metadata
- Download URL: auto_job_scraper-1.0.0.tar.gz
- Upload date:
- Size: 24.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4f2914cb6a4f375a0337a9dd018ea2a1a4635fb044fffdd6b0112be03c2dd81c
|
|
| MD5 |
c607e0456abf825489a738ff20991b83
|
|
| BLAKE2b-256 |
4a73041c03da91837f8ec8f4469c671dba8e29bb45e97a459b031f61354b54d2
|
Provenance
The following attestation bundles were made for auto_job_scraper-1.0.0.tar.gz:
Publisher:
publish.yml on Lordkaito/auto-job-scraper
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
auto_job_scraper-1.0.0.tar.gz -
Subject digest:
4f2914cb6a4f375a0337a9dd018ea2a1a4635fb044fffdd6b0112be03c2dd81c - Sigstore transparency entry: 1238286596
- Sigstore integration time:
-
Permalink:
Lordkaito/auto-job-scraper@2972db0ca28d569853cd80e9380abc9a77a97a2f -
Branch / Tag:
refs/tags/1.0.3 - Owner: https://github.com/Lordkaito
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2972db0ca28d569853cd80e9380abc9a77a97a2f -
Trigger Event:
release
-
Statement type:
File details
Details for the file auto_job_scraper-1.0.0-py3-none-any.whl.
File metadata
- Download URL: auto_job_scraper-1.0.0-py3-none-any.whl
- Upload date:
- Size: 28.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
86877598c5c778427c690203077d96647b81b6b15ed47f96dd9056d93d287237
|
|
| MD5 |
9e55ad7074c128f2454cadc4daee4634
|
|
| BLAKE2b-256 |
2ef00cf86eef0da6f4091b0bf7c7ae3b0738823d4e0c34bdc6ac9a725f588c92
|
Provenance
The following attestation bundles were made for auto_job_scraper-1.0.0-py3-none-any.whl:
Publisher:
publish.yml on Lordkaito/auto-job-scraper
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
auto_job_scraper-1.0.0-py3-none-any.whl -
Subject digest:
86877598c5c778427c690203077d96647b81b6b15ed47f96dd9056d93d287237 - Sigstore transparency entry: 1238286597
- Sigstore integration time:
-
Permalink:
Lordkaito/auto-job-scraper@2972db0ca28d569853cd80e9380abc9a77a97a2f -
Branch / Tag:
refs/tags/1.0.3 - Owner: https://github.com/Lordkaito
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@2972db0ca28d569853cd80e9380abc9a77a97a2f -
Trigger Event:
release
-
Statement type: