A clean Python client for Apple's career job listings. No API key, no headless browser, no scraping service.
Project description
apple-jobs
A lightweight Python client for Apple job listings on jobs.apple.com. No API key, no browser automation.
Install
# From GitHub (recommended for now)
pip install git+https://github.com/Mikedan37/apple-jobs.git
# Or clone and install locally
git clone https://github.com/Mikedan37/apple-jobs.git
cd apple-jobs
pip install -e .
Requires Python 3.10+ and httpx.
Quick example
from apple_jobs import AppleJobsClient
client = AppleJobsClient()
for job in client.search(query="iOS engineer", limit=5):
print(f"{job.title} — {job.team.name}")
print(f" {job.location} · {job.posting_date}")
print(f" {job.url}")
print()
client.close()
CLI
~6,000+ live positions across Apple teams and locations.
apple-jobs count # total open positions
apple-jobs search "Swift" # search by keyword
apple-jobs search --team "Software" # filter by team
apple-jobs search "iOS" --location "US" # combine filters
apple-jobs page 5 # fetch a specific page
apple-jobs dump > jobs.jsonl # all jobs as JSON lines
Or via module: python -m apple_jobs count
Why this exists
Apple does not provide a public jobs API.
This package gives you a clean, stable interface over the public job listings so you can:
- search roles programmatically
- build job matching pipelines
- automate job discovery workflows
One dependency (httpx). No Selenium. No API key.
What this does
- Fetches Apple job listings from
jobs.apple.com - Parses structured job data from server-rendered HTML (no headless browser)
- Returns typed Python models (
AppleJob,AppleJobsPage) - Handles pagination, retries, and rate limiting
- Provides a small CLI for quick lookups and bulk export
What this does NOT do
- Does not apply to jobs on your behalf
- Does not bypass authentication or access controls
- Does not scrape aggressively or circumvent rate limits
- Does not cover job boards other than Apple
- Does not enrich, score, or rank jobs
Responsible use
This library parses data already served to standard browser requests. Built-in safeguards:
- 0.5s default delay between page requests. Do not set it to zero.
- 3 retries max on transient failures. No infinite loops.
- Honest User-Agent with a project URL. Do not spoof it.
If Apple changes their site structure or blocks automated access, this library will stop working. That is their right. File an issue and we will adapt.
API reference
AppleJobsClient
client = AppleJobsClient(delay=0.5, retries=3, timeout=30.0)
| Method | Returns | Description |
|---|---|---|
search(query=, location=, team=, limit=) |
list[AppleJob] |
Search with client-side filtering |
search_page(page=1) |
AppleJobsPage |
Fetch a single page (20 jobs) |
iter_jobs(max_pages=300) |
Iterator[AppleJob] |
Auto-paginate all jobs |
get_total_count() |
int |
Total open positions |
close() |
— | Close HTTP client |
Supports context manager: with AppleJobsClient() as client: ...
AppleJob
| Field | Type | Description |
|---|---|---|
position_id |
str |
Apple's unique position ID |
title |
str |
Job title |
summary |
str |
2-3 paragraph description |
url |
str |
Direct link to posting |
posted_at |
datetime? |
UTC timestamp |
posting_date |
str |
Human-readable date |
team |
AppleJobTeam |
Department (name, code) |
locations |
list[AppleJobLocation] |
One or more locations |
home_office |
bool |
Remote-eligible |
weekly_hours |
int |
40 = full-time |
Properties: location (primary as string), is_remote, is_part_time
AppleJobsPage
| Field | Type | Description |
|---|---|---|
jobs |
list[AppleJob] |
Up to 20 jobs |
total_records |
int |
Total matching jobs |
page |
int |
Current page (1-indexed) |
Properties: total_pages, has_next
Development
git clone https://github.com/Mikedan37/apple-jobs.git
cd apple-jobs
pip install -e ".[dev]"
pytest tests/ -v # 32 tests, ~0.5s, fully offline
Tests parse saved HTML fixtures. No network calls. If Apple changes their site and tests break, re-capture:
curl -s "https://jobs.apple.com/en-us/search?page=1" \
-H "user-agent: apple-jobs-python-client/0.1" \
-o tests/fixtures/search_page_1.html
Limitations
- Client-side filtering. Apple's search page does not support server-side text queries via URL params.
search()fetches pages and filters locally. - Summaries only. The
summaryfield is from the search listing (2-3 paragraphs). Full detail pages exist at eachurlbut are not fetched. - HTML parsing is inherently fragile. If Apple redesigns their career site, the parser will break. File an issue.
Maintained by
Maintained by Danylchuk Studios, LLC.
Originally built as part of Seeker, a job discovery and matching platform.
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 apple_jobs-0.1.0.tar.gz.
File metadata
- Download URL: apple_jobs-0.1.0.tar.gz
- Upload date:
- Size: 16.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
11062fa48110e9a2f52d93966f53d5abf757db211a5a2204bef45a1736602c67
|
|
| MD5 |
cad3c05b7c34ad925ce702699fe71395
|
|
| BLAKE2b-256 |
10c2400bdba18961a0f797ec6648298fdacb2551e754dd5bea4463c810d35a47
|
File details
Details for the file apple_jobs-0.1.0-py3-none-any.whl.
File metadata
- Download URL: apple_jobs-0.1.0-py3-none-any.whl
- Upload date:
- Size: 15.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.9.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4cdc89a666142b024834395aad15872c5e754f02a280be314089145bfc64cffe
|
|
| MD5 |
db8fb94c411a95e2110f8ccd1c0ef9d3
|
|
| BLAKE2b-256 |
1828e221fbb8d8139192f377a6da3d30475dc04c4ab1475ccd458cb658236cf7
|