A bulk downloader with tenacity and grace
Project description
downlow: A bulk downloader with tenacity and grace
A bulk downloader with tenacity and grace
- Github repository: https://github.com/willf/downlow/
- Documentation https://pypi.org/project/downlow/
Attempt to bulk download a list of URLs with some tenacity, but also some grace. Attempts to honor the server's rate limiting and retries on various failures.
Understanding the use case
This was originally written to download approximately 226,000 URLs
from a website that allows only 1000 requests per hour. Well, that's
too many hours, but a subset of the data could be collected of only
59,000 URLs. There is a HTTP 429 response code, to indicate when
too many requests are being made, and the server will return a
Retry-After header to indicate how long to wait before retrying.
These are web standards; some web servers also return headers
that indicate:
- The maximum number of requests allowed per hour
- The number of requests remaining in the current hour
- The time when the rate limit will reset
Different servers call these by different names. The rate limit header usually
looks something like RateLimit-Limit. The remaining requests header usually looks like
RateLimit-Remaining. The reset time header usually looks like RateLimit-Reset,
although the reset might be a duration (the rate limit will reset in so many
seconds) or a point in time (the rate limit will reset at this time). Servers
are free to do what they will, of course, and not of these are exactly
promises.
Of course, there are lots of other things that can go wrong.
This script attempts to not go beyond the server's declared rate limits, and pay attention to the other headers if they are present. It also. It tries to be tenacious in the face of failures, and tries a number of times to download a file before giving up, using exponential backoff.
Installation
This can installed using pipx or uv:
$ pipx install downlow
or
$ uv tool install downlow
Usage
$ downlow --help
Usage: downlow [OPTIONS]
Options:
--url-file TEXT Path to a file containing URLs (defaults to
stdin).
--download-dir PATH Directory to save downloads. [default: download]
--prefixes-to-remove TEXT Prefixes to remove from the URL path when saving
the file.
--auto-remove-prefix Remove the longest common prefix from the URL
paths
--regex TEXT Regular expression to match URLs to download.
--reverse Reverse the regex match, i.e., download URLs that
do not match the regex.
--randomize Randomize the order of the URLs
--log-file FILE Path to a file to log output.
--log-level TEXT Logging level. [default: INFO]
--max-tries INTEGER Maximum number of retries on request failures
[default: 10]
--version Show the version and exit.
--dry-run If set, do not actually download the files, just
log what would be done.
--help Show this message and exit.
Examples:
$ downlow --url-file urls.txt --download-dir downloads --auto-remove-prefix
$ cat urls.txt | downlow --download-dir downloads --max-tries 5
Examplation of the options
--url-file: Path to a file containing URLs. This is the only required option. Each line in the file should contain a single URL. Blank lines and lines starting with#are ignored.--download-dir: Directory to save downloads. If not specified, it defaults todownloadin the current directory.--prefixes-to-remove: This can be used multiple times to specify prefixes to remove from the URL path when saving the file. For example, if the URL ishttps://example.com/foo/bar/baz.txt, and you specify--prefixes-to-remove foo, then the file will be saved asbar/baz.txt. This is useful if you want to save the files in a directory structure that is shallower than the URL path.--auto-remove-prefix: If set, the script will automatically remove the longest common prefix from the URL paths when saving the file. For example, if the URLs are all underhttps://example.com/foo/, then the files will be saved in thefoodirectory.--regex: Regular expression to match URLs to download. If specified, only URLs that match the regex will be downloaded. This is useful if you want to download a subset of the URLs in the file.--reverse: If set, the script will download URLs that do not match the regex. This is useful if you want to download all URLs except a subset.--randomize: If set, the script will randomize the order of the URLs before downloading them. You might want to do this in order to collect a random set of results before the server is no longer available.--log-file: Path to a file to log output. If not specified, the log will only be printed to the console.--log-level: Logging level. This can be one ofTRACE,DEBUG,INFO,WARNING,ERROR,CRITICAL. The default isINFO.--max-tries: Maximum number of retries on request failures. The default is 10 (all told, this is about half an hour of waiting if everything fails). The max is around 20 (around 83 weeks total, hehe).--dry-run: If set, the script will not actually download the files, but will log what would be done. This is useful if you want to see what the script would do without actually downloading the files.--version: Show the version and exit.--help: Show this message and exit.
Notice that this is a single-threaded script; it is most useful when rate limits are likely to be present.
Project details
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 downlow-0.0.6.tar.gz.
File metadata
- Download URL: downlow-0.0.6.tar.gz
- Upload date:
- Size: 78.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a6156bb192f881f938a7b20a8a53e8f129046c269978b4c3b3ce128de646fe6e
|
|
| MD5 |
fbb48ed82c7a3f3868e821a263abea30
|
|
| BLAKE2b-256 |
e9db99b6b1e250f7489438a4d53a5b375c621e967c04ca4f58149b825651ba21
|
File details
Details for the file downlow-0.0.6-py3-none-any.whl.
File metadata
- Download URL: downlow-0.0.6-py3-none-any.whl
- Upload date:
- Size: 11.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.13.0
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
709b509de667dd59764a16b24bf6c5c9227110e10a93c7888a03c2e18ae2bb2e
|
|
| MD5 |
7286fc4601a6641ab0fed56ed0a5f54e
|
|
| BLAKE2b-256 |
9426cddecbd2f89a591a7a912d5a130fce70497eeeed69be54a327b15c268a8f
|