Give it a DOI; it walks a route ladder to get the full-text PDF the cheapest, most legitimate way first — open access, then official publisher text-mining (TDM) APIs, then your own institutional library proxy, and finally it just prints your library's resolver link so you can finish by hand. Every route is one you're already allowed to use; there is no Sci-Hub fallback here.
It's the download end of a small paper pipeline — the piece that was missing longest, because it's the one that fights publishers:
| Stage | Repo | What it does |
|---|---|---|
| discovery | paper-radar | journal/PubMed feeds → interest-scored → private triage |
| download | paper-fetch (you are here) | DOI → full-text PDF, via the route ladder |
| reading | paper-review-and-digest | /paper-review appraisal, /paper-digest content digest |
# 30 seconds to first PDF (the OA route needs zero keys — just your email in config.yaml)
git clone https://github.com/drpwchen/paper-fetch && cd paper-fetch
pip install -r requirements.txt && cp config.example.yaml config.yaml # set unpaywall_email
python paper_fetch.py 10.1186/s12984-023-01168-x out.pdfThis project ships no institution's access. You supply your own library's endpoints (in
config.yaml) and your own account (in a local secret store). It automates your own authenticated session — it is not a paywall bypass and it does not share credentials. Most readers will point an AI agent at this repo to understand and adapt the method; the code — and AGENTS.md — are written for exactly that.
The whole design is: try the cheapest, most-permitted route first, fall through on failure.
DOI
├─ 1. Open Access ─────── Unpaywall + Semantic Scholar openAccessPdf → every oa_location,
│ PMC→Europe PMC render (PMCID via NCBI idconv, then Europe PMC search),
│ landing-page citation_pdf_url (repositories), MDPI's mdpi-res.com CDN
│ (the publisher site itself is Cloudflare-403 to scripts), and
│ PubMed's "free full text" flag → the publisher's own page (Unpaywall
│ says `closed` for many articles a publisher simply gives away)
├─ 1½. Direct (browser) ─ when layer 1 says the article is free or a bot wall answered the
│ script: a real browser straight to the publisher, no proxy, no
│ login — clears Cloudflare, follows "download starts shortly"
│ interstitials, fetches the PDF from inside the page
├─ 2. Publisher TDM API ─ Elsevier / Wiley / Springer official text-mining endpoints
│ (you register for your own key; entirely sanctioned)
│ ⚠ Springer's direct content/pdf answers scripts with a JS "Client
│ Challenge" since 2026-09 — named as such (`blocked_by` in the
│ envelope), OA copies come from PMC, the rest from layer 3's browser
├─ 3. Institutional proxy your library's off-campus remote-auth + EZproxy/NetScaler proxy
│ (your own login; for subscriptions you already have)
└─ 4. Resolver link ────── print your library's SFX/OpenURL link → finish manually
Layer 1 works out of the box for anyone. Layers 2–3 are where the work is.
Two Taiwanese platforms sit outside this ladder, because their items are not addressed by
DOI at all: Taiwanese theses (NDLTD) and Chinese-language journal articles (Airiti). They get
their own entry points — ndltd.py and airiti.py — documented in
docs/chinese-sources.md.
Two rules worth stealing:
- Validate
%PDFmagic bytes, never trustContent-Type. Paywalls and Cloudflare love to return200 text/htmlthat looks like a PDF response but isn't. - Before blaming a route, check whether you're entitled to that article. A working route and a route you have no access through look identical. See docs/holdings.md — this is the single most expensive mistake in this problem space.
The point of this repo. Each publisher exposes a different shape; these are the ones mapped and verified against live articles.
All five shapes live in one dispatch table — ROUTES in library_session.py, keyed by DOI
prefix with a kind of tpl / meta / lww / ck — and every one of them ships
working code:
| Shape | How it works | DOI prefixes |
|---|---|---|
template (kind: tpl) |
build the PDF URL from a host + path template; a bot wall on the headless request path gets one retry as a real page navigation + in-page fetch() |
10.1002/10.1111 Wiley · 10.1007/10.1186 Springer/BMC · 10.1056 NEJM · 10.1177 Sage (+ 10.4187 Respiratory Care, at Sage since 2025) · 10.1080 T&F · 10.2214 AJR · 10.1148 Radiology/RSNA · 10.1142 World Scientific |
A prefix that is not in the table is not yet "no route": journals move publishers and keep their
DOI prefix, so fetch resolves doi.org once and, when the landing host belongs to a listed
route (Liebert 10.1089 → journals.sagepub.com since Sage bought them, for instance), uses that
route under the new prefix. Only when the host matches nothing is it exit 6.
| citation-meta (kind: meta) | resolver → article HTML's <meta name="citation_pdf_url"> → fetch with Referer. Headless. | 10.1001 JAMA · 10.1093 Oxford · 10.1542 Pediatrics · 10.1183 ERJ · 10.3171 J Neurosurg · 10.1038 Nature |
| citation-meta + headful nav (kind: meta, nav: true) | same, but the resolver runs as a real headful navigation to clear a Cloudflare challenge | 10.1136 BMJ · 10.3174 AJNR · 10.2967 J Nucl Med |
| signed-URL (kind: lww) | multi-step walk to a signed PDF URL: resolver → scrape article number → viewer HTML → signed pdfUrl with the right Referer chain, plus an Ovid-OCE fallback for ahead-of-print articles and concurrent-licence-seat (E3) back-off | 10.1097/10.1161/10.1213/10.2215 LWW/Ovid |
| SPA bootstrap (kind: ck) | headful navigation to ClinicalKey's playBy/doi boots the SPA (headless hangs on its splash — a headless artifact, not a proxy limitation), an "organization" modal is auto-answered (clinicalkey.institution_match), then the watermarked-PDF service endpoint is fetched from the same context; the PII in that URL comes from CrossRef alternative-id, no scraping | 10.1016 Elsevier via ClinicalKey |
10.1016 Elsevier tries the TDM API in paper_fetch.py first; the ck route is the
fallback for what TDM cannot serve — in press articles (TDM returns a cover sheet the
content gate rejects), articles the TDM key is not entitled to (TDM answers HTTP 200 with
the first page only and says so in the X-ELS-Status response header; route_elsevier
reads that header and falls through), and ClinicalKey-only titles. If layer 1 ever returns
something no check catches, library_session.py fetch … --skip-layer1 goes straight to the
proxy route.
Adding a new publisher? Reach for the citation_pdf_url route first. Many sites with no
DOI→PDF template still advertise the exact PDF URL in a <meta name="citation_pdf_url"> tag on
the article page (it's what Google Scholar indexes). Resolve the DOI through the proxy, read the
meta, fetch it with the article as Referer. No reverse engineering needed.
And if a route comes back cf_block, try headful navigation before declaring it dead. BMJ was
documented here as a Cloudflare dead end that no stealth browser could clear. That was simply
wrong: the WAF only blocks headless requests, and a real headful navigation passes on the first
try — that's the whole _HEADFUL_META_PREFIXES variant. (Highwire sites like AJNR/JNM also loop
on the generic doi-org resolver → give them an explicit host so the route uses that site's own
/lookup/doi/.)
Plenty of tools turn a DOI into a PDF. They differ on two axes: where the PDFs come from and what happens when a route fails.
| Capability | OA-only clients (unpywall, …) | Sci-Hub-based (PyPaperBot, scidownl, …) | Multi-source fetchers | paper-fetch |
|---|---|---|---|---|
Open-access ladder (Unpaywall + S2 + PMC/Europe PMC + citation_pdf_url) |
partial (usually one index) | — | ✅ | ✅ two independent OA indexes + PMCID direct-conversion |
| Official publisher TDM APIs (your own keys) | — | — | rare | ✅ Elsevier · Wiley · Springer |
| Institutional proxy layer (your own login, persistent session) | — | — | IP/cookie passthrough at best | ✅ full remote-auth walk, session survives reboots |
Per-publisher route shapes (URL template / citation_pdf_url / headful CF nav / multi-step signed-URL) |
— | — | generic stealth browser | ✅ 20+ verified, named, documented |
| Entitlement ground truth (your library's A–Z holdings → local SQLite, checked before blaming a route) | — | — | — | ✅ holdings.py, as far as we know unique |
Route health from access logs (stats, per-route success history) |
— | — | — | ✅ |
%PDF magic-byte validation |
rare | rare | some do | ✅ |
Agent-native output (--json envelope, typed exit codes) |
— | — | some do | ✅ |
The two rows nothing else has — entitlement ground truth and log-driven route health — exist because they answer the question every other tool leaves you guessing on: "is this route broken, or do I just not have access to this article?"
python -m patchright install chromium # only needed for the institutional proxy layer(The clone / pip install / cp config.example.yaml config.yaml steps are in the quickstart
above.) Runs on Windows, macOS and Linux.
Credentials never live in config.yaml — they go in a secret store, and the right one is
picked for your platform with no configuration:
| Platform | Default backend | Store a secret |
|---|---|---|
| Windows | dpapi — DPAPI, CurrentUser, ~/.secrets |
powershell -File ~/.secrets/secret.ps1 set LIB_USER |
| macOS | keychain — login Keychain, service paper-fetch |
security add-generic-password -s paper-fetch -a LIB_USER -U -w |
| Linux / other | env — environment variables |
export LIB_USER=... |
Put -w last in the security command so it prompts for the value — passing it inline
leaves the password in your shell history and in ps output.
Override the choice with secrets.backend in config.yaml or the SECRETS_BACKEND
environment variable (dpapi · keychain · env · none); an unknown name fails at
startup rather than looking like a missing secret later. The env backend has nowhere to
persist the proxy session cookie, so that layer logs in once per run.
The names to store: LIB_USER / LIB_PASS (your own library account), plus whichever
publisher TDM keys you have — ELSEVIER_TDM_KEY, WILEY_TDM_TOKEN, SPRINGER_API_KEY.
Off-Windows caveat, accurate as of v1.2.0.
paper_fetch.pystill reads the publisher TDM keys through the Windows PowerShell store, so the TDM layer is Windows-only — and10.1016(Elsevier) is one of the busiest routes in the ladder. On macOS and Linux you get the full open-access ladder and the full institutional-proxy layer; TDM routes are skipped, with a hint that still names PowerShell. Porting them is the next piece of work.
How to register for the publisher TDM APIs (Elsevier / Wiley / Springer / Unpaywall) → docs/publisher-tdm-apis.md.
python paper_fetch.py 10.1371/journal.pone.0000000 out.pdf # OA / TDM — works out of the box
python paper_fetch.py --json 10.1016/xxx out.pdf # agent mode: JSON envelope on stdout
python paper_fetch.py --title "<article title>" 10.1007/xxx out.pdf # + content verification
python pdf_verify.py out.pdf --title "<article title>" --extract # is this the article?
python holdings.py 10.1097/xxxxx # do I even have access to this?
python library_session.py check # proxy layer (after config.yaml `auth:` is set)
python library_session.py fetch 10.1002/xxxxx out.pdf
python library_session.py stats # rate / block analysis
python library_session.py routes # per-route scorecard + holdings gaps
# Chinese-language sources (no DOI) — see docs/chinese-sources.md
python ndltd.py search "居家復能" --field ti # Taiwanese theses; 📄 = full text
python ndltd.py fetch 109CGU05712004 thesis.pdf # chapters merged into one PDF
python airiti.py fetch 10.6288/TJPH.202204_41\(2\).110135 article.pdfexamples/example-note.md shows the intended Zotero + Obsidian workflow around it.
paper_fetch.py --json prints exactly one JSON envelope on stdout (all diagnostics go
to stderr), so an orchestrator can json.loads the last line without scraping logs:
{"schema": 1, "doi": "…", "ok": true, "route": "elsevier", "tried": ["elsevier"],
"bytes": 117204, "sha256": "…", "path": "out.pdf", "elapsed_s": 1.4}On failure ok is false, tried lists every route attempted, and resolver_url carries
your library's SFX link for a manual finish. sha256 lets batch callers dedupe.
| Code | Meaning | What the caller should do |
|---|---|---|
0 |
PDF obtained | validate %PDF, carry on |
1 |
usage error | fix the command |
2 |
a route ran and came back empty | the only code that is evidence about the paper |
3 |
auth failed / session expired — library_session.py only |
run login, then retry — says nothing about the paper |
4 |
profile busy (another fetch holds the lock) — library_session.py only |
retry serially — not a missing paper |
5 |
watchdog abort (PAPERFETCH_TIMEOUT_S, default 240 s) — library_session.py only |
retry once — not a missing paper |
6 |
no route for this publisher prefix — library_session.py only |
check holdings.py; a subscribed prefix is worth a new route |
7 |
blocked — every attempt, including the headful-navigation retry, ended at a bot wall (js_challenge / cf_* / rate_limited) — library_session.py only |
wait, then retry; or fetch from your own logged-in browser. The wall answered, not the publisher |
Only 2 tells you anything about the article. 3, 4, 5, 6 and 7 all mean "fix something
and try again" — recording any of them as "no full text" is the single easiest way to wrongly
conclude a paper is unobtainable. Codes 3 and 6 used to be folded into 2, and a batch that
started with an expired session recorded nine papers as paywalled when one automatic login
would have got all nine. ==Run library_session.py check before a batch and abort the whole
batch if the session is dead.==
python paper_fetch.py --title "<article title>" <DOI> out.pdf # verify while fetching
python pdf_verify.py out.pdf --title "<article title>" --extract # verify (and cut) afterA %PDF check cannot tell the article from the whole issue the article is in. Conference
abstracts routinely carry the supplement's DOI, so Unpaywall, the publisher's TDM API and
your library's proxy all honestly hand back the entire proceedings volume — in one 49-paper
batch, 20% of the "successful" downloads were whole volumes, one of them 563 pages logged as
ok. Given a title, the fetch verifies the article is really in the file and, for a volume,
cuts out the pages the article sits on (keeping the volume as <stem>_volume.pdf). The test is
the longest contiguous run of the title in a page's text — a bag-of-words score matches a
proceedings page whose neighbouring abstracts happen to share vocabulary.
The same test catches the other wrong file: an OA aggregator handing back a different paper
it has filed under this DOI (Unpaywall / Semantic Scholar pointed one Elsevier DOI at an OSTI
preprint by another author with the same surname). Since 1.5.6 a PDF whose first pages do not
carry the title (title_absent) is not left under the requested name — it is set aside as
<stem>.rejected.pdf, the ladder keeps going (the institutional route then found the real
article), and the run does not exit 0. The envelope carries rejected_path. Open the file if
you want to know what it was; rename it back only if you can see it is the article.
The proxy layer is strictly serial with a 15 s courtesy delay — publishers block an
entire institution's IP range when they detect systematic downloading, and the browser
profile is an exclusive resource (parallel callers deadlock, then wrongly record papers as
missing). Rate-limit reasoning, batch patterns, and how to call this from LLM agents →
docs/operations.md. Never wrap the script in timeout — it has its
own watchdog.
The classic first-day loop is: fail → immediately re-run → fail → re-run. Rapid repeated login or fetch attempts get you temporarily blocked — by your library's login gate, by Cloudflare, or by a publisher — and a temporary block looks exactly like a broken tool or wrong credentials.
| Signal | Meaning | What to do |
|---|---|---|
[login] FAILED after retries |
wrong creds, CAPTCHA misreads, or the gate is rate-limiting you | verify the credentials by logging in manually in a browser first; if they work there, you're temporarily blocked → wait 30–60 min |
cf_challenge / cf_block |
Cloudflare intercepted the request | the tool retries headful once automatically; if it persists, wait — don't hammer |
| Ovid/LWW route stalls or errors | E3 concurrent-licence-seat limit | wait 30 min (PAPERFETCH_OVID_COOLDOWN_S); the tool backs off on its own |
exit 3 |
auth failed / session expired | run login (automatic) and retry — not a missing paper; in a batch, stop the batch |
exit 4 / 5 |
profile busy / watchdog | retry serially later — not a missing paper |
One rule covers all of it: the same failure twice in a row means stop, run
python library_session.py stats to see what's being blocked, and wait 30–60 minutes.
Retrying in a tight loop only escalates a temporary block — worst case against your whole
institution's shared IP.
| Layer | This repo | You supply |
|---|---|---|
OA + publisher TDM APIs (paper_fetch.py) |
✅ complete, runnable | your own API keys + email |
Institutional proxy (library_session.py) |
✅ complete as of v1.0 — every route kind including the LWW/Ovid signed-URL flow, plus a generic form login | your library's endpoints + form selectors in config.yaml (SSO gates: a custom login()) |
| Endpoints (resolver / proxy / remote-auth) | placeholders in config.example.yaml |
your library's real values |
Entitlement table (holdings.py) |
✅ query side + schema | the table itself, from your library's A–Z list |
Off-campus access comes in four families (EZproxy, OpenAthens/Shibboleth, VPN, custom
portal) and only login() differs between them. The two form-based families — EZproxy
and Django/NetScaler-style portals — are covered by the generic form login: set
auth.family: form and point the selectors in config.yaml at your gate's login page
(inspect it once in devtools; numeric-CAPTCHA gates are handled by the built-in offline
OCR). SSO redirect chains (OpenAthens/Shibboleth) don't reduce to one form — set
auth.family: custom and implement login() for your IdP; everything else works
unchanged. docs/library-setup.md walks you through identifying
your family and finding your endpoints.
Then build your entitlement table → docs/holdings.md. It's what tells "this route is broken" apart from "you don't have access to this article" — and those two look exactly alike from the outside.
Not a programmer? That's the intended case. Point an AI coding agent at this repo and ask it to wire up your library; AGENTS.md is written for it — deployment steps, the verification smoke test, and the hard lines it must not cross.
- For people who already have legitimate subscription access. It automates your own authenticated session; it is not a way around a paywall and not a way to share an account.
- Your account, your responsibility. Use your own credentials and follow your library's license terms and each publisher's ToS.
- Do not remove the rate limit to bulk-download. Publishers respond to systematic downloading by blocking the institution's whole IP range — your colleagues pay for it.
- Never commit
config.yaml,*.dpapi, oraccess_log.jsonl(the.gitignoreblocks them).
Full acceptable-use terms, and what is and isn't your responsibility → DISCLAIMER.md. Short version: no warranty, use your own account, follow your library's licence and each publisher's ToS, don't redistribute what you download.
MIT licensed. Contributions that add publisher route templates or adapt the proxy layer to other library systems are welcome. Notable changes: CHANGELOG.md.
🧋 Find this useful? Buy me a drink.
This tool is one piece of my personal AI workflow. If you want to learn how to use AI agents like Claude Code from zero (no programming background needed), I wrote a beginner series (in Traditional Chinese):
這個工具是我個人 AI 工作流的一部分。想從零開始學怎麼用 Claude Code 這類 AI agent(不需要程式背景),可以從我的入門系列開始:
Full map of my tools and posts / 所有工具與文章的全貌 → drpwchen.com/map