Rate Limiting Options
These are limiting options for the program
connection_timeout
connection_timeout
PositiveInt
15
The number of seconds to wait while connecting to a website before timing out
download_attempts
download_attempts
PositiveInt
5
The number of download attempts per file. Regardless of this value, some conditions (such as a 404 HTTP status) will cause a file to not be retried at all.
download_delay
download_delay
NonNegativeFloat
0.5
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:
bunkrr
: 1cyberfile.me
: 1pixeldrain
: 2
download_speed_limit
download_speed_limit
ByteSize
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_after
timedelta
, 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
timedelta
input is expected to be a valid ISO 8601 timespan, ex:P10DT2H30M10S
An
int
input is assumed to be the number of daysA
str
input 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_after
timedelta
, str
or int
4 weeks
Same as file_host_cache_expire_after
but applied to forums requests.
max_simultaneous_downloads
max_simultaneous_downloads
PositiveInt
15
This is the maximum number of files that can be downloaded simultaneously.
max_simultaneous_downloads_per_domain
max_simultaneous_downloads_per_domain
PositiveInt
3
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, such as bunkrr
, cyberfile.me
, etc.
rate_limit
rate_limit
PositiveInt
50
This is the maximum number of requests that can be made by the program per second.
read_timeout
read_timeout
PositiveInt
300
The number of seconds to wait while reading data from a website before timing out. If it's a download, it will be retried and won't count against the download_attempts
limit.
Last updated