buildarr-radarr


Namebuildarr-radarr JSON
Version 0.2.5 PyPI version JSON
download
home_pagehttps://buildarr.github.io
SummaryRadarr movie PVR plugin for Buildarr
upload_time2024-03-02 02:56:01
maintainer
docs_urlNone
authorCallum Dickinson
requires_python>=3.8,<4.0
licenseGPL-3.0-or-later
keywords buildarr radarr
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Buildarr Radarr Plugin

[![PyPI](https://img.shields.io/pypi/v/buildarr-radarr)](https://pypi.org/project/buildarr-radarr) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/buildarr-radarr)  [![GitHub](https://img.shields.io/github/license/buildarr/buildarr-radarr)](https://github.com/buildarr/buildarr-radarr/blob/main/LICENSE) ![Pre-commit hooks](https://github.com/buildarr/buildarr-radarr/actions/workflows/pre-commit.yml/badge.svg) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

The Buildarr Radarr plugin (`buildarr-radarr`) is a plugin for Buildarr that adds the capability to configure and manage [Radarr](http://radarr.video) instances.

Radarr is a PVR application which downloads, renames and manages the lifecycle of movies in your media library. In other words, it is to movies what [Sonarr](https://sonarr.tv) is to TV shoes. It can monitor for both upcoming and current releases and grab them when they become available, as well as upgrade to higher quality versions of monitored releases when a suitable version is available.

Currently, Radarr V4 and Radarr V5 are the supported versions. If you are using Radarr V3 or earlier, please upgrade in order to manage your instances with Buildarr.

## Installation

When using Buildarr as a [standalone application](https://buildarr.github.io/installation/#standalone-application), the Radarr plugin can simply be installed using `pip`:

```bash
pip install buildarr buildarr-radarr
```

When using Buildarr as a [Docker container](https://buildarr.github.io/installation/#docker), the Radarr plugin is bundled with the official container (`callum027/buildarr`), so there is no need to install it separately.

You can upgrade, or pin the version of the plugin to a specific version, within the container by setting the `$BUILDARR_INSTALL_PACKAGES` environment variable in the `docker run` command using `--env`/`-e`:

```bash
-e BUILDARR_INSTALL_PACKAGES="buildarr-radarr==<version>"
```

## Quick Start

To use the Radarr plugin, create a `radarr` block within `buildarr.yml`, and enter the connection information required for the Buildarr instance to connect to the Radarr instance you'd like to manage.

If authentication is disabled on your Radarr instance, Buildarr will automatically retrieve the API key from the instance, meaning that you do not need to define it in the configuration.

If authentication is enabled, manually retrieve the API key for Radarr by copying it from Settings -> General -> Security -> API Key, and pasting it into the configuration file as shown below.

```yaml
---

buildarr:
  watch_config: true

radarr:
  hostname: localhost  # Defaults to `radarr`, or the instance name for instance-specific configs.
  port: 7878  # Defaults to 7878.
  protocol:  http  # Defaults to `http`.
  api_key: ...  # Required if authentication is enabled. Auto-fetch if authentication is disabled.
```

Buildarr won't modify anything yet since no configuration has been defined, but you are able to test if Buildarr is able to connect to and authenticate with the Radarr instance.

Try a `buildarr run`. If the output is similar to the below output, Buildarr was able to connect to your Radarr instance.

```text
2023-09-02 18:46:05,366 buildarr:1 buildarr.cli.run [INFO] Buildarr version 0.6.0 (log level: INFO)
2023-09-02 18:46:05,366 buildarr:1 buildarr.cli.run [INFO] Loading configuration file '/config/buildarr.yml'
2023-09-02 18:46:05,403 buildarr:1 buildarr.cli.run [INFO] Finished loading configuration file
2023-09-02 18:46:05,417 buildarr:1 buildarr.cli.run [INFO] Loaded plugins: radarr (0.1.0)
2023-09-02 18:46:05,417 buildarr:1 buildarr.cli.run [INFO] Loading instance configurations
2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Finished loading instance configurations
2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Running with plugins: radarr
2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Resolving instance dependencies
2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Finished resolving instance dependencies
2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Fetching TRaSH metadata
2023-09-02 18:46:09,856 buildarr:1 buildarr.cli.run [INFO] Finished fetching TRaSH metadata
2023-09-02 18:46:09,856 buildarr:1 buildarr.cli.run [INFO] Rendering instance configuration dynamic attributes
2023-09-02 18:46:09,856 buildarr:1 buildarr.cli.run [INFO] Finished rendering instance configuration dynamic attributes
2023-09-02 18:46:09,856 buildarr:1 buildarr.cli.run [INFO] Loading secrets file from '/config/secrets.json'
2023-09-02 18:46:09,857 buildarr:1 buildarr.cli.run [INFO] Finished loading secrets file
2023-09-02 18:46:09,857 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Checking secrets
2023-09-02 18:46:09,869 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Connection test successful using cached secrets
2023-09-02 18:46:09,869 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished checking secrets
2023-09-02 18:46:09,870 buildarr:1 buildarr.cli.run [INFO] Saving updated secrets file to '/config/secrets.json'
2023-09-02 18:46:09,871 buildarr:1 buildarr.cli.run [INFO] Finished saving updated secrets file
2023-09-02 18:46:09,871 buildarr:1 buildarr.cli.run [INFO] Performing post-initialisation configuration render
2023-09-02 18:46:10,092 buildarr:1 buildarr.cli.run [INFO] Finished performing post-initialisation configuration render
2023-09-02 18:46:10,092 buildarr:1 buildarr.cli.run [INFO] Updating configuration on remote instances
2023-09-02 18:46:10,092 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Fetching remote configuration to check if updates are required
2023-09-02 18:46:10,446 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished fetching remote configuration
2023-09-02 18:46:10,522 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Updating remote configuration
2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Remote configuration is up to date
2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished updating remote configuration
2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] Finished updating configuration on remote instances
2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] Deleting unmanaged/unused resources on remote instances
2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Refetching remote configuration to delete unused resources
2023-09-02 18:46:11,171 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished refetching remote configuration
2023-09-02 18:46:11,263 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Deleting unmanaged/unused resources on the remote instance
2023-09-02 18:46:11,442 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Remote configuration is clean
2023-09-02 18:46:11,442 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished deleting unmanaged/unused resources on the remote instance
2023-09-02 18:46:11,442 buildarr:1 buildarr.cli.run [INFO] Finished deleting unmanaged/unused resources on remote instances
2023-09-02 18:46:11,442 buildarr:1 buildarr.cli.run [INFO] Deleting downloaded TRaSH metadata
2023-09-02 18:46:11,461 buildarr:1 buildarr.cli.run [INFO] Finished deleting downloaded TRaSH metadata
```

## Configuring your Buildarr instance

The following sections cover comprehensive configuration of a Radarr instance.

Note that these documents do not show how you *should* configure a Radarr instance. Rather, they show how you *can* configure a Radarr instance the way you want with Buildarr. For more information on how to optimally configure Radarr, you can refer to the excellent guides from [WikiArr](https://wiki.servarr.com/radarr) and [TRaSH-Guides](https://trash-guides.info/Radarr).

* [Host Configuration](https://buildarr.github.io/configuration/host)
* Settings
    * [Media Management](https://buildarr.github.io/configuration/settings/media-management)
    * Profiles
        * [Quality Profiles](https://buildarr.github.io/configuration/settings/profiles/quality-profiles)
        * [Delay Profiles](https://buildarr.github.io/configuration/settings/profiles/delay-profiles)
    * [Quality](https://buildarr.github.io/configuration/settings/quality)
    * [Custom Formats](https://buildarr.github.io/configuration/settings/custom-formats)
    * [Indexers](https://buildarr.github.io/configuration/settings/indexers)
    * [Download Clients](https://buildarr.github.io/configuration/settings/download-clients)
    * [Notifications (Connect)](https://buildarr.github.io/configuration/settings/notifications)
    * [Metadata](https://buildarr.github.io/configuration/settings/metadata)
    * [Tags](https://buildarr.github.io/configuration/settings/tags)
    * [General](https://buildarr.github.io/configuration/settings/general)
    * [UI](https://buildarr.github.io/configuration/settings/ui)

Configuration of the following resources are not yet supported by this plugin (but will be added in future versions):

* Import Lists
* Indexer Restrictions (Radarr V4 only)
* Release Profiles (Radarr V5+)

## Dumping an existing Radarr instance configuration

Buildarr is capable of dumping a running Radarr instance's configuration.

```text
$ buildarr radarr dump-config http://localhost:7878 > radarr.yml
Radarr instance API key: <Paste API key here>
```

The dumped YAML object can be placed directly under the `radarr` configuration block, or used as an [instance-specific configuration](https://buildarr.github.io/configuration/#multiple-instances-of-the-same-type).

All possible values are explicitly defined in this dumped configuration.

```yaml
hostname: localhost
port: 7878
protocol: http
api_key: 1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d
image: lscr.io/linuxserver/radarr
version: 4.7.5.7809
settings:
  media_management:
    rename_movies: true
    replace_illegal_characters: true
    colon_replacement: space-dash-space
    standard_movie_format: '{Movie CleanTitle} - {Edition Tags }{[Custom Formats]
      }{[Quality Full] }{[MediaInfo 3D] }{[MediaInfo VideoDynamicRangeType] }[{Mediainfo
      AudioCodec}{ Mediainfo AudioChannels}]{ [Mediainfo VideoCodec]}{ [Release Group]}
      - Default'
    movie_folder_format: '{Movie CleanTitle} ({Release Year}) [imdbid-{ImdbId}]'
    create_missing_movie_folders: false
    delete_empty_folders: false
    skip_free_space_check: false
    minimum_free_space: 100
    use_hardlinks: true
    import_using_script: false
    import_script_path: null
    import_extra_files: false
    unmonitor_deleted_movies: false
    propers_and_repacks: do-not-prefer
    analyze_video_files: true
    rescan_folder_after_refresh: always
    change_file_date: none
    recycling_bin: null
    recycling_bin_cleanup: 28
    set_permissions: false
    chmod_folder: drwxr-xr-x
    chown_group: null
    root_folders:
      delete_unmanaged: false
      definitions: []
  profiles:
    quality_profiles:
      delete_unmanaged: false
      definitions:
        Movies:
          upgrades_allowed: true
          qualities:
          - Bluray-1080p
          - name: WEB 1080p
            members:
            - WEBRip-1080p
            - WEBDL-1080p
          - Bluray-720p
          - name: WEB 720p
            members:
            - WEBDL-720p
            - WEBRip-720p
          - Bluray-576p
          - Bluray-480p
          - name: WEB 480p
            members:
            - WEBDL-480p
            - WEBRip-480p
          - name: DVD-Video
            members:
            - DVD-R
            - DVD
          upgrade_until_quality: Bluray-1080p
          minimum_custom_format_score: 0
          upgrade_until_custom_format_score: 10000
          custom_formats:
          - name: 4k-remaster
            score: 25
          - name: remaster
            score: 25
          language: English
    delay_profiles:
      definitions:
      - preferred_protocol: torrent-prefer
        usenet_delay: 0
        torrent_delay: 1440
        bypass_if_highest_quality: true
        tags: []
      delete_unmanaged: false
  quality:
    trash_id: null
    definitions:
      Unknown:
        title: null
        min: 0.0
        preferred: 3.3
        max: null
      WORKPRINT:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      CAM:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      TELESYNC:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      TELECINE:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      REGIONAL:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      DVDSCR:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      SDTV:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      DVD:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      DVD-R:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      WEBDL-480p:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      WEBRip-480p:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      Bluray-480p:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      Bluray-576p:
        title: null
        min: 0.0
        preferred: 95.0
        max: 100.0
      HDTV-720p:
        title: null
        min: 17.1
        preferred: 95.0
        max: null
      WEBDL-720p:
        title: null
        min: 12.5
        preferred: 95.0
        max: null
      WEBRip-720p:
        title: null
        min: 12.5
        preferred: 95.0
        max: null
      Bluray-720p:
        title: null
        min: 25.7
        preferred: 95.0
        max: null
      HDTV-1080p:
        title: null
        min: 33.8
        preferred: 95.0
        max: null
      WEBDL-1080p:
        title: null
        min: 12.5
        preferred: 95.0
        max: null
      WEBRip-1080p:
        title: null
        min: 12.5
        preferred: 95.0
        max: null
      Bluray-1080p:
        title: null
        min: 50.8
        preferred: null
        max: null
      Remux-1080p:
        title: null
        min: 136.8
        preferred: null
        max: null
      HDTV-2160p:
        title: null
        min: 85.0
        preferred: null
        max: null
      WEBDL-2160p:
        title: null
        min: 34.5
        preferred: null
        max: null
      WEBRip-2160p:
        title: null
        min: 34.5
        preferred: null
        max: null
      Bluray-2160p:
        title: null
        min: 102.0
        preferred: null
        max: null
      Remux-2160p:
        title: null
        min: 187.4
        preferred: null
        max: null
      BR-DISK:
        title: null
        min: 0.0
        preferred: null
        max: null
      Raw-HD:
        title: null
        min: 0.0
        preferred: null
        max: null
  custom_formats:
    delete_unmanaged: false
    definitions:
      remaster:
        trash_id: null
        default_score: null
        include_when_renaming: false
        delete_unmanaged_conditions: false
        conditions:
          Not 4K Remaster:
            negate: true
            required: true
            type: release-title
            regex: 4K
          Remaster:
            negate: false
            required: true
            type: release-title
            regex: Remaster
      4k-remaster:
        trash_id: null
        default_score: null
        include_when_renaming: false
        delete_unmanaged_conditions: false
        conditions:
          4K:
            negate: false
            required: true
            type: release-title
            regex: 4k
          Not 4K Resolution:
            negate: true
            required: true
            type: resolution
            resolution: r2160p
          Remaster:
            negate: false
            required: true
            type: release-title
            regex: Remaster
  indexers:
    minimum_age: 0
    retention: 0
    maximum_size: 0
    rss_sync_interval: 60
    delete_unmanaged: false
    definitions:
      1337x (Prowlarr):
        enable_rss: true
        enable_automatic_search: true
        enable_interactive_search: true
        priority: 25
        download_client: null
        tags: []
        minimum_seeders: 2
        seed_ratio: null
        seed_time: null
        type: torznab
        base_url: http://prowlarr:9696/1/
        api_path: /api
        api_key: f6e5d4c3b2a10f6e5d4c3b2a10f6e5d4
        multi_languages: []
        categories:
        - MOVIES-FOREIGN
        - MOVIES-SD
        - MOVIES-DVD
        - MOVIES-HD
        additional_parameters: null
  download_clients:
    delete_unmanaged: false
    definitions:
      Transmission:
        enable: true
        priority: 1
        remove_completed: true
        tags: []
        host: transmission
        port: 9091
        use_ssl: false
        url_base: /transmission/
        username: null
        password: null
        category: null
        directory: /data/torrents/movies
        recent_priority: last
        older_priority: last
        add_paused: false
        type: transmission
  notifications:
    delete_unmanaged: false
    definitions: {}
  metadata:
    certification_country: us
    emby_legacy:
      enable: false
      movie_metadata: true
    kodi_emby:
      enable: false
      movie_metadata: true
      movie_metadata_url: false
      movie_metadata_language: english
      movie_images: true
      use_movie_nfo: false
      add_collection_name: true
    roksbox:
      enable: false
      movie_metadata: true
      movie_images: true
    wdtv:
      enable: false
      movie_metadata: true
      movie_images: true
  tags:
    definitions:
    - sup
  general:
    host:
      bind_address: '*'
      port: 7878
      ssl_port: 9898
      use_ssl: false
      ssl_cert_path: null
      ssl_cert_password: null
      url_base: null
      instance_name: Radarr
    security:
      authentication: none
      username: null
      password: null
      certificate_validation: enabled
    proxy:
      enable: false
      proxy_type: http
      hostname: null
      port: 8080
      username: null
      password: null
      ignored_addresses: []
      bypass_proxy_for_local_addresses: true
    logging:
      log_level: INFO
    analytics:
      send_anonymous_usage_data: false
    updates:
      branch: master
      automatic: false
      mechanism: docker
      script_path: null
    backup:
      folder: Backups
      interval: 7
      retention: 28
  ui:
    first_day_of_week: monday
    week_column_header: day-first
    runtime_format: hours-minutes
    short_date_format: slash-day-first
    long_date_format: day-first
    time_format: twentyfour-hour
    show_relative_dates: true
    theme: auto
    enable_color_impaired_mode: false
    movie_info_language: english
    ui_language: english
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://buildarr.github.io",
    "name": "buildarr-radarr",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.8,<4.0",
    "maintainer_email": "",
    "keywords": "buildarr,radarr",
    "author": "Callum Dickinson",
    "author_email": "callum.dickinson.nz@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/ab/d4/bbed5da26eb68fa2145dc35199e59b6c169a7c7c467b98d1047f6c475fe4/buildarr_radarr-0.2.5.tar.gz",
    "platform": null,
    "description": "# Buildarr Radarr Plugin\n\n[![PyPI](https://img.shields.io/pypi/v/buildarr-radarr)](https://pypi.org/project/buildarr-radarr) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/buildarr-radarr)  [![GitHub](https://img.shields.io/github/license/buildarr/buildarr-radarr)](https://github.com/buildarr/buildarr-radarr/blob/main/LICENSE) ![Pre-commit hooks](https://github.com/buildarr/buildarr-radarr/actions/workflows/pre-commit.yml/badge.svg) [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\nThe Buildarr Radarr plugin (`buildarr-radarr`) is a plugin for Buildarr that adds the capability to configure and manage [Radarr](http://radarr.video) instances.\n\nRadarr is a PVR application which downloads, renames and manages the lifecycle of movies in your media library. In other words, it is to movies what [Sonarr](https://sonarr.tv) is to TV shoes. It can monitor for both upcoming and current releases and grab them when they become available, as well as upgrade to higher quality versions of monitored releases when a suitable version is available.\n\nCurrently, Radarr V4 and Radarr V5 are the supported versions. If you are using Radarr V3 or earlier, please upgrade in order to manage your instances with Buildarr.\n\n## Installation\n\nWhen using Buildarr as a [standalone application](https://buildarr.github.io/installation/#standalone-application), the Radarr plugin can simply be installed using `pip`:\n\n```bash\npip install buildarr buildarr-radarr\n```\n\nWhen using Buildarr as a [Docker container](https://buildarr.github.io/installation/#docker), the Radarr plugin is bundled with the official container (`callum027/buildarr`), so there is no need to install it separately.\n\nYou can upgrade, or pin the version of the plugin to a specific version, within the container by setting the `$BUILDARR_INSTALL_PACKAGES` environment variable in the `docker run` command using `--env`/`-e`:\n\n```bash\n-e BUILDARR_INSTALL_PACKAGES=\"buildarr-radarr==<version>\"\n```\n\n## Quick Start\n\nTo use the Radarr plugin, create a `radarr` block within `buildarr.yml`, and enter the connection information required for the Buildarr instance to connect to the Radarr instance you'd like to manage.\n\nIf authentication is disabled on your Radarr instance, Buildarr will automatically retrieve the API key from the instance, meaning that you do not need to define it in the configuration.\n\nIf authentication is enabled, manually retrieve the API key for Radarr by copying it from Settings -> General -> Security -> API Key, and pasting it into the configuration file as shown below.\n\n```yaml\n---\n\nbuildarr:\n  watch_config: true\n\nradarr:\n  hostname: localhost  # Defaults to `radarr`, or the instance name for instance-specific configs.\n  port: 7878  # Defaults to 7878.\n  protocol:  http  # Defaults to `http`.\n  api_key: ...  # Required if authentication is enabled. Auto-fetch if authentication is disabled.\n```\n\nBuildarr won't modify anything yet since no configuration has been defined, but you are able to test if Buildarr is able to connect to and authenticate with the Radarr instance.\n\nTry a `buildarr run`. If the output is similar to the below output, Buildarr was able to connect to your Radarr instance.\n\n```text\n2023-09-02 18:46:05,366 buildarr:1 buildarr.cli.run [INFO] Buildarr version 0.6.0 (log level: INFO)\n2023-09-02 18:46:05,366 buildarr:1 buildarr.cli.run [INFO] Loading configuration file '/config/buildarr.yml'\n2023-09-02 18:46:05,403 buildarr:1 buildarr.cli.run [INFO] Finished loading configuration file\n2023-09-02 18:46:05,417 buildarr:1 buildarr.cli.run [INFO] Loaded plugins: radarr (0.1.0)\n2023-09-02 18:46:05,417 buildarr:1 buildarr.cli.run [INFO] Loading instance configurations\n2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Finished loading instance configurations\n2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Running with plugins: radarr\n2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Resolving instance dependencies\n2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Finished resolving instance dependencies\n2023-09-02 18:46:05,422 buildarr:1 buildarr.cli.run [INFO] Fetching TRaSH metadata\n2023-09-02 18:46:09,856 buildarr:1 buildarr.cli.run [INFO] Finished fetching TRaSH metadata\n2023-09-02 18:46:09,856 buildarr:1 buildarr.cli.run [INFO] Rendering instance configuration dynamic attributes\n2023-09-02 18:46:09,856 buildarr:1 buildarr.cli.run [INFO] Finished rendering instance configuration dynamic attributes\n2023-09-02 18:46:09,856 buildarr:1 buildarr.cli.run [INFO] Loading secrets file from '/config/secrets.json'\n2023-09-02 18:46:09,857 buildarr:1 buildarr.cli.run [INFO] Finished loading secrets file\n2023-09-02 18:46:09,857 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Checking secrets\n2023-09-02 18:46:09,869 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Connection test successful using cached secrets\n2023-09-02 18:46:09,869 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished checking secrets\n2023-09-02 18:46:09,870 buildarr:1 buildarr.cli.run [INFO] Saving updated secrets file to '/config/secrets.json'\n2023-09-02 18:46:09,871 buildarr:1 buildarr.cli.run [INFO] Finished saving updated secrets file\n2023-09-02 18:46:09,871 buildarr:1 buildarr.cli.run [INFO] Performing post-initialisation configuration render\n2023-09-02 18:46:10,092 buildarr:1 buildarr.cli.run [INFO] Finished performing post-initialisation configuration render\n2023-09-02 18:46:10,092 buildarr:1 buildarr.cli.run [INFO] Updating configuration on remote instances\n2023-09-02 18:46:10,092 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Fetching remote configuration to check if updates are required\n2023-09-02 18:46:10,446 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished fetching remote configuration\n2023-09-02 18:46:10,522 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Updating remote configuration\n2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Remote configuration is up to date\n2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished updating remote configuration\n2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] Finished updating configuration on remote instances\n2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] Deleting unmanaged/unused resources on remote instances\n2023-09-02 18:46:10,840 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Refetching remote configuration to delete unused resources\n2023-09-02 18:46:11,171 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished refetching remote configuration\n2023-09-02 18:46:11,263 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Deleting unmanaged/unused resources on the remote instance\n2023-09-02 18:46:11,442 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Remote configuration is clean\n2023-09-02 18:46:11,442 buildarr:1 buildarr.cli.run [INFO] <radarr> (default) Finished deleting unmanaged/unused resources on the remote instance\n2023-09-02 18:46:11,442 buildarr:1 buildarr.cli.run [INFO] Finished deleting unmanaged/unused resources on remote instances\n2023-09-02 18:46:11,442 buildarr:1 buildarr.cli.run [INFO] Deleting downloaded TRaSH metadata\n2023-09-02 18:46:11,461 buildarr:1 buildarr.cli.run [INFO] Finished deleting downloaded TRaSH metadata\n```\n\n## Configuring your Buildarr instance\n\nThe following sections cover comprehensive configuration of a Radarr instance.\n\nNote that these documents do not show how you *should* configure a Radarr instance. Rather, they show how you *can* configure a Radarr instance the way you want with Buildarr. For more information on how to optimally configure Radarr, you can refer to the excellent guides from [WikiArr](https://wiki.servarr.com/radarr) and [TRaSH-Guides](https://trash-guides.info/Radarr).\n\n* [Host Configuration](https://buildarr.github.io/configuration/host)\n* Settings\n    * [Media Management](https://buildarr.github.io/configuration/settings/media-management)\n    * Profiles\n        * [Quality Profiles](https://buildarr.github.io/configuration/settings/profiles/quality-profiles)\n        * [Delay Profiles](https://buildarr.github.io/configuration/settings/profiles/delay-profiles)\n    * [Quality](https://buildarr.github.io/configuration/settings/quality)\n    * [Custom Formats](https://buildarr.github.io/configuration/settings/custom-formats)\n    * [Indexers](https://buildarr.github.io/configuration/settings/indexers)\n    * [Download Clients](https://buildarr.github.io/configuration/settings/download-clients)\n    * [Notifications (Connect)](https://buildarr.github.io/configuration/settings/notifications)\n    * [Metadata](https://buildarr.github.io/configuration/settings/metadata)\n    * [Tags](https://buildarr.github.io/configuration/settings/tags)\n    * [General](https://buildarr.github.io/configuration/settings/general)\n    * [UI](https://buildarr.github.io/configuration/settings/ui)\n\nConfiguration of the following resources are not yet supported by this plugin (but will be added in future versions):\n\n* Import Lists\n* Indexer Restrictions (Radarr V4 only)\n* Release Profiles (Radarr V5+)\n\n## Dumping an existing Radarr instance configuration\n\nBuildarr is capable of dumping a running Radarr instance's configuration.\n\n```text\n$ buildarr radarr dump-config http://localhost:7878 > radarr.yml\nRadarr instance API key: <Paste API key here>\n```\n\nThe dumped YAML object can be placed directly under the `radarr` configuration block, or used as an [instance-specific configuration](https://buildarr.github.io/configuration/#multiple-instances-of-the-same-type).\n\nAll possible values are explicitly defined in this dumped configuration.\n\n```yaml\nhostname: localhost\nport: 7878\nprotocol: http\napi_key: 1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d\nimage: lscr.io/linuxserver/radarr\nversion: 4.7.5.7809\nsettings:\n  media_management:\n    rename_movies: true\n    replace_illegal_characters: true\n    colon_replacement: space-dash-space\n    standard_movie_format: '{Movie CleanTitle} - {Edition Tags }{[Custom Formats]\n      }{[Quality Full] }{[MediaInfo 3D] }{[MediaInfo VideoDynamicRangeType] }[{Mediainfo\n      AudioCodec}{ Mediainfo AudioChannels}]{ [Mediainfo VideoCodec]}{ [Release Group]}\n      - Default'\n    movie_folder_format: '{Movie CleanTitle} ({Release Year}) [imdbid-{ImdbId}]'\n    create_missing_movie_folders: false\n    delete_empty_folders: false\n    skip_free_space_check: false\n    minimum_free_space: 100\n    use_hardlinks: true\n    import_using_script: false\n    import_script_path: null\n    import_extra_files: false\n    unmonitor_deleted_movies: false\n    propers_and_repacks: do-not-prefer\n    analyze_video_files: true\n    rescan_folder_after_refresh: always\n    change_file_date: none\n    recycling_bin: null\n    recycling_bin_cleanup: 28\n    set_permissions: false\n    chmod_folder: drwxr-xr-x\n    chown_group: null\n    root_folders:\n      delete_unmanaged: false\n      definitions: []\n  profiles:\n    quality_profiles:\n      delete_unmanaged: false\n      definitions:\n        Movies:\n          upgrades_allowed: true\n          qualities:\n          - Bluray-1080p\n          - name: WEB 1080p\n            members:\n            - WEBRip-1080p\n            - WEBDL-1080p\n          - Bluray-720p\n          - name: WEB 720p\n            members:\n            - WEBDL-720p\n            - WEBRip-720p\n          - Bluray-576p\n          - Bluray-480p\n          - name: WEB 480p\n            members:\n            - WEBDL-480p\n            - WEBRip-480p\n          - name: DVD-Video\n            members:\n            - DVD-R\n            - DVD\n          upgrade_until_quality: Bluray-1080p\n          minimum_custom_format_score: 0\n          upgrade_until_custom_format_score: 10000\n          custom_formats:\n          - name: 4k-remaster\n            score: 25\n          - name: remaster\n            score: 25\n          language: English\n    delay_profiles:\n      definitions:\n      - preferred_protocol: torrent-prefer\n        usenet_delay: 0\n        torrent_delay: 1440\n        bypass_if_highest_quality: true\n        tags: []\n      delete_unmanaged: false\n  quality:\n    trash_id: null\n    definitions:\n      Unknown:\n        title: null\n        min: 0.0\n        preferred: 3.3\n        max: null\n      WORKPRINT:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      CAM:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      TELESYNC:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      TELECINE:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      REGIONAL:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      DVDSCR:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      SDTV:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      DVD:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      DVD-R:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      WEBDL-480p:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      WEBRip-480p:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      Bluray-480p:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      Bluray-576p:\n        title: null\n        min: 0.0\n        preferred: 95.0\n        max: 100.0\n      HDTV-720p:\n        title: null\n        min: 17.1\n        preferred: 95.0\n        max: null\n      WEBDL-720p:\n        title: null\n        min: 12.5\n        preferred: 95.0\n        max: null\n      WEBRip-720p:\n        title: null\n        min: 12.5\n        preferred: 95.0\n        max: null\n      Bluray-720p:\n        title: null\n        min: 25.7\n        preferred: 95.0\n        max: null\n      HDTV-1080p:\n        title: null\n        min: 33.8\n        preferred: 95.0\n        max: null\n      WEBDL-1080p:\n        title: null\n        min: 12.5\n        preferred: 95.0\n        max: null\n      WEBRip-1080p:\n        title: null\n        min: 12.5\n        preferred: 95.0\n        max: null\n      Bluray-1080p:\n        title: null\n        min: 50.8\n        preferred: null\n        max: null\n      Remux-1080p:\n        title: null\n        min: 136.8\n        preferred: null\n        max: null\n      HDTV-2160p:\n        title: null\n        min: 85.0\n        preferred: null\n        max: null\n      WEBDL-2160p:\n        title: null\n        min: 34.5\n        preferred: null\n        max: null\n      WEBRip-2160p:\n        title: null\n        min: 34.5\n        preferred: null\n        max: null\n      Bluray-2160p:\n        title: null\n        min: 102.0\n        preferred: null\n        max: null\n      Remux-2160p:\n        title: null\n        min: 187.4\n        preferred: null\n        max: null\n      BR-DISK:\n        title: null\n        min: 0.0\n        preferred: null\n        max: null\n      Raw-HD:\n        title: null\n        min: 0.0\n        preferred: null\n        max: null\n  custom_formats:\n    delete_unmanaged: false\n    definitions:\n      remaster:\n        trash_id: null\n        default_score: null\n        include_when_renaming: false\n        delete_unmanaged_conditions: false\n        conditions:\n          Not 4K Remaster:\n            negate: true\n            required: true\n            type: release-title\n            regex: 4K\n          Remaster:\n            negate: false\n            required: true\n            type: release-title\n            regex: Remaster\n      4k-remaster:\n        trash_id: null\n        default_score: null\n        include_when_renaming: false\n        delete_unmanaged_conditions: false\n        conditions:\n          4K:\n            negate: false\n            required: true\n            type: release-title\n            regex: 4k\n          Not 4K Resolution:\n            negate: true\n            required: true\n            type: resolution\n            resolution: r2160p\n          Remaster:\n            negate: false\n            required: true\n            type: release-title\n            regex: Remaster\n  indexers:\n    minimum_age: 0\n    retention: 0\n    maximum_size: 0\n    rss_sync_interval: 60\n    delete_unmanaged: false\n    definitions:\n      1337x (Prowlarr):\n        enable_rss: true\n        enable_automatic_search: true\n        enable_interactive_search: true\n        priority: 25\n        download_client: null\n        tags: []\n        minimum_seeders: 2\n        seed_ratio: null\n        seed_time: null\n        type: torznab\n        base_url: http://prowlarr:9696/1/\n        api_path: /api\n        api_key: f6e5d4c3b2a10f6e5d4c3b2a10f6e5d4\n        multi_languages: []\n        categories:\n        - MOVIES-FOREIGN\n        - MOVIES-SD\n        - MOVIES-DVD\n        - MOVIES-HD\n        additional_parameters: null\n  download_clients:\n    delete_unmanaged: false\n    definitions:\n      Transmission:\n        enable: true\n        priority: 1\n        remove_completed: true\n        tags: []\n        host: transmission\n        port: 9091\n        use_ssl: false\n        url_base: /transmission/\n        username: null\n        password: null\n        category: null\n        directory: /data/torrents/movies\n        recent_priority: last\n        older_priority: last\n        add_paused: false\n        type: transmission\n  notifications:\n    delete_unmanaged: false\n    definitions: {}\n  metadata:\n    certification_country: us\n    emby_legacy:\n      enable: false\n      movie_metadata: true\n    kodi_emby:\n      enable: false\n      movie_metadata: true\n      movie_metadata_url: false\n      movie_metadata_language: english\n      movie_images: true\n      use_movie_nfo: false\n      add_collection_name: true\n    roksbox:\n      enable: false\n      movie_metadata: true\n      movie_images: true\n    wdtv:\n      enable: false\n      movie_metadata: true\n      movie_images: true\n  tags:\n    definitions:\n    - sup\n  general:\n    host:\n      bind_address: '*'\n      port: 7878\n      ssl_port: 9898\n      use_ssl: false\n      ssl_cert_path: null\n      ssl_cert_password: null\n      url_base: null\n      instance_name: Radarr\n    security:\n      authentication: none\n      username: null\n      password: null\n      certificate_validation: enabled\n    proxy:\n      enable: false\n      proxy_type: http\n      hostname: null\n      port: 8080\n      username: null\n      password: null\n      ignored_addresses: []\n      bypass_proxy_for_local_addresses: true\n    logging:\n      log_level: INFO\n    analytics:\n      send_anonymous_usage_data: false\n    updates:\n      branch: master\n      automatic: false\n      mechanism: docker\n      script_path: null\n    backup:\n      folder: Backups\n      interval: 7\n      retention: 28\n  ui:\n    first_day_of_week: monday\n    week_column_header: day-first\n    runtime_format: hours-minutes\n    short_date_format: slash-day-first\n    long_date_format: day-first\n    time_format: twentyfour-hour\n    show_relative_dates: true\n    theme: auto\n    enable_color_impaired_mode: false\n    movie_info_language: english\n    ui_language: english\n```\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "Radarr movie PVR plugin for Buildarr ",
    "version": "0.2.5",
    "project_urls": {
        "Changes": "https://buildarr.github.io/plugins/radarr/release-notes",
        "Documentation": "https://buildarr.github.io/plugins/radarr",
        "Homepage": "https://buildarr.github.io",
        "Issue Tracker": "https://github.com/buildarr/buildarr-radarr/issues",
        "Repository": "https://github.com/buildarr/buildarr-radarr"
    },
    "split_keywords": [
        "buildarr",
        "radarr"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "74604304ea5c817d37289b598b79c9031934350cb6eda41a8c60c64c36eced4c",
                "md5": "e8e9e97eb05f4cdd8bc839811c81dc32",
                "sha256": "542614961eb25b4d8e94c2e42a960f0f2e12a5893e8694b3d45e3383b93833ef"
            },
            "downloads": -1,
            "filename": "buildarr_radarr-0.2.5-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "e8e9e97eb05f4cdd8bc839811c81dc32",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8,<4.0",
            "size": 203660,
            "upload_time": "2024-03-02T02:55:59",
            "upload_time_iso_8601": "2024-03-02T02:55:59.370660Z",
            "url": "https://files.pythonhosted.org/packages/74/60/4304ea5c817d37289b598b79c9031934350cb6eda41a8c60c64c36eced4c/buildarr_radarr-0.2.5-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "abd4bbed5da26eb68fa2145dc35199e59b6c169a7c7c467b98d1047f6c475fe4",
                "md5": "31947b1a212e984cb22fa87890dde41e",
                "sha256": "0ed7ff313d6f134ccf61ddf9feb15227d2c1cc143aea45dce116c92431c3507b"
            },
            "downloads": -1,
            "filename": "buildarr_radarr-0.2.5.tar.gz",
            "has_sig": false,
            "md5_digest": "31947b1a212e984cb22fa87890dde41e",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8,<4.0",
            "size": 99278,
            "upload_time": "2024-03-02T02:56:01",
            "upload_time_iso_8601": "2024-03-02T02:56:01.198323Z",
            "url": "https://files.pythonhosted.org/packages/ab/d4/bbed5da26eb68fa2145dc35199e59b6c169a7c7c467b98d1047f6c475fe4/buildarr_radarr-0.2.5.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-02 02:56:01",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "buildarr",
    "github_project": "buildarr-radarr",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "buildarr-radarr"
}
        
Elapsed time: 0.22953s