putioarr 0.6.7

put.io to sonarr/radarr/whisparr proxy
# Required. Username and password that sonarr/radarr use to connect to the proxy
username = "putioarr"
password = "putioarr"

# Required. Directory where the proxy will download files to. This directory has to be readable by
# sonarr/radarr in order to import downloads
download_directory = "/downloads"

# Optional bind address, default "0.0.0.0"
bind_address = "0.0.0.0"

# Optional TCP port, default 9091
port = 9091

# Optional log level, default "info"
loglevel = "info"

# Optional UID, default 1000. Change the owner of the downloaded files to this UID. Requires root.
uid = 1000

# Optional polling interval in secs, default 10.
polling_interval = 10

# Optional skip directories when downloding, default ["sample", "extras"]
skip_directories = ["sample", "extras"]

# Optional number of orchestration workers, default 10. Unless there are many changes coming from
# put.io, you shouldn't have to touch this number. 10 is already overkill.
orchestration_workers = 10

# Optional number of download workers, default 4. This controls how many downloads we run in parallel.
download_workers = 4

[putio]
# Required. Putio API key. You can generate one using `putioarr get-token`
api_key = ""

# Both [sonarr] and [radarr] are optional, but you'll need at least one of them
# [sonarr]
# url = "http://mysonarrhost:8989/sonarr"
# Can be found in Sonarr: Settings -> General
# api_key = "MYSONARRAPIKEY"

# [radarr]
# url = "http://myradarrhost:7878/radarr"
# Can be found in Radarr: Settings -> General
# api_key = "MYRADARRAPIKEY"

# [whisparr]
# url = "http://mywhisparrhost:6969/radarr"
# Can be found in Radarr: Settings -> General
# api_key = "MYWHISPARRAPIKEY"

# [lidarr]
# url = "http://mylidarrhost:8686/lidarr"
# Can be found in Lidarr: Settings -> General
# api_key = "MYLIDARRAPIKEY"

# Additional *arr instances can be added under [arrs.<name>] with any name.
# Set `type` to one of sonarr/radarr/whisparr/lidarr (defaults to inferring
# from the section name).
# [arrs.whisparrv2]
# type = "whisparr"
# url = "http://whis.lan:6969/whisparr"
# api_key = "MYWHISPARRV2APIKEY"
# category = "whistwo"


# Additional, arbitrarily-named *arr instances can be defined under [arrs.<name>].
# The name is arbitrary; the section is treated the same as the legacy
# [sonarr]/[radarr]/[whisparr] sections. Useful when you run more than one
# instance of the same *arr (e.g. multiple Whisparr versions).
# [arrs.whisparrv2]
# url = "http://whisparr-v2:6969/whisparr"
# api_key = "MYWHISPARRV2APIKEY"
# category = "whistwo"
#
# [arrs.whisparrv3]
# url = "http://whisparr-v3:6969/whisparr"
# api_key = "MYWHISPARRV3APIKEY"
# category = "whisthree"