Rate Limiting Options
These are limiting options for the program
connection_timeout
connection_timeoutPositiveInt
15
The number of seconds to wait while connecting to a website before timing out
download_attempts
download_attemptsPositiveInt
2
The number of download attempts per file. Some conditions are never retried (such as a 404 HTTP status)
download_delay
download_delayNonNegativeFloat
0.0
This is the number of seconds to wait between downloads to the same domain.
Some domains have internal limits set by the program, which can not be modified:
bunkr: 0.5coomer: 0.5kemono: 0.5nhentai.net: 1
download_speed_limit
download_speed_limitByteSize
0
This is the max rate of downloading in bytes (per second) for all downloads combined. Set to 0 to disable
file_host_cache_expire_after
file_host_cache_expire_aftertimedelta, str or int
7 days
Cyberdrop-DL caches the requests made to any website. This setting controls how long responses to file host websites are stored before expiring.
A
timedeltainput is expected to be a valid ISO 8601 timespan, ex:P10DT2H30M10SAn
intinput is assumed to be the number of daysA
strinput is expected to be in the format;<value> <unit>, ex:10 days.
Valid str units
str unitsyear(s)month(s)week(s)day(s)hour(s)minute(s)second(s)millisecond(s)microsecond(s)
forum_cache_expire_after
forum_cache_expire_aftertimedelta, str or int
4 weeks
Same as file_host_cache_expire_after but applied to forums requests.
jitter
jitterNonNegativeFloat
0.0
Additional number of seconds to wait in between downloads. CDL will wait an additional random number of seconds in between 0 and the jitter value.
max_simultaneous_downloads
max_simultaneous_downloadsPositiveInt
15
This is the maximum number of files that can be downloaded simultaneously.
max_simultaneous_downloads_per_domain
max_simultaneous_downloads_per_domainPositiveInt
5
This is the maximum number of files that can be downloaded from a single domain simultaneously.
Some domains have internal limits set by the program, which can not be modified:
bunkr: 3cyberdrop: 1cyberfile: 1noodlemagazine: 24chan: 1pixeldrain: 2xxxbunker: 2
rate_limit
rate_limitPositiveFloat
50.0
This is the maximum number of requests that can be made by the program per second.
read_timeout
read_timeoutPositiveFloat or null
300.0
The number of seconds to wait while reading data from a website before timing out. A null value will make CDL keep the socket connection open indefinitely, even if the server is not sending data anymore
Last updated