- Text and Data Mining (TDM)
- Wiley TDM Client
- Features
- Requirements
- Quick Start
- Troubleshooting
- Contributing
- License
To learn more about the TDM service and request a TDM Token visit our TDM resources page
The Wiley TDM Client is a Python package (installable via pip) that aims to simplify interaction with Wiley's TDM API.
The Wiley TDM Client has the following capabilities:
- PDF Downloads - Download PDFs from Wiley's TDM API
- Single or bulk PDF downloads
- Configurable download directory
- Automatic DOI-based file naming
- DOI Validation
- Wiley DOI verification
- Invalid DOI detection
- DOI URL encoding
- API Handling
- Authentication (API token & IP based auth)
- Rate limiting support
- Error handling (e.g. Access denied)
- Reporting
- CSV export of download results
- API status
- File sizes and download durations
- Efficiency
- API Session handling
- Low memory utilization with PDF streaming
- Graceful timeouts
You will require the following:
- A Python 3.9+ environment
- Python dependencies:
- requests (≥2.32.0)
- A Wiley Online Library (WOL) Account
- A TDM API Token, available from the WOL TDM resources page using your WOL Account
- Access to the content you wish to download
- Access will be determined via your public IP address
Set the environment variable TDM_API_TOKEN
to your API token:
Linux example
# Set your TDM API token (required)
export TDM_API_TOKEN='your-api-token-here'
echo $TDM_API_TOKEN
Install the Wiley TDM package in a Virtual Environment using pip. We always recommend running in a Virtual Environment so as not to clash with existing System Python libraries:
# Create and activate virtual environment
python3 -m venv venv
source venv/bin/activate
# Install package
(venv) $ pip install wiley-tdm
# Verify installation
(venv) $ pip list | grep wiley-tdm
The following examples will download Article PDFs to a 'downloads' directory, and name the files <doi>
.pdf. All file & directory paths are relative to your current working directory (pwd). Run all code in your Virtual Environment.
Initialize client
from wiley_tdm import TDMClient
# Uses TDM_API_TOKEN from environment
tdm = TDMClient()
Download Single PDF
tdm.download_pdf("10.1111/jtsb.12390")
Download Multiple PDFs
tdm.download_pdfs(["10.1111/jtsb.12390", "10.1111/jlse.12141"])
Download Multiple PDFs, DOIs listed in a file
tdm.download_pdfs("dois.txt")
More examples
See more examples.
In most troubleshooting scenarios it can be helpful to generate a report:
# Save the download results to a CSV file: 'results.csv'
tdm.save_results()
If you encounter installation issues:
# Ensure you're using Python 3.9+
python3 --version
# Update pip to latest version
python3 -m pip install --upgrade pip
Alternatively, try installing a fresh Virtual Environment.
If problems persist, please open an issue with:
- Your Python version
- The exact error message
- Your operating system details
Check access directly on Wiley Online Library.
- If access denied: contact your Institution/Wiley and check your subscription is active.
- If access granted: ensure you are accessing the TDM API from a known IP address (see below).
It is possible that the IP address you are accessing WOL from is different to where you are running your TDM code. Observe your IP address in the TDM console log and compare to the IP address in your browser.
Example console output:
2025-02-13 11:48:30,762 - INFO - Your IP address, used to check entitlements: XX.XX.XX.XX
Example Browser output:
// https://api.ipify.org/?format=json
{
"ip": "XX.XX.XX.XX"
}
If problems persist, please contact: tdm@wiley.com
We welcome contributions! Please see our Contributing Guide for further details.
Distributed under the MIT License. See LICENSE
for more information.