buildarr-prowlarr


Namebuildarr-prowlarr JSON
Version 0.5.3 PyPI version JSON
download
home_pagehttps://buildarr.github.io
SummaryProwlarr indexer manager plugin for Buildarr
upload_time2024-04-28 23:34:30
maintainerNone
docs_urlNone
authorCallum Dickinson
requires_python<4.0,>=3.8
licenseGPL-3.0-or-later
keywords buildarr prowlarr lazylibrarian lidarr mylar radarr readarr sonarr whisparr
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Buildarr Prowlarr Plugin

[![PyPI](https://img.shields.io/pypi/v/buildarr-prowlarr)](https://pypi.org/project/buildarr-prowlarr) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/buildarr-prowlarr)  [![GitHub](https://img.shields.io/github/license/buildarr/buildarr-prowlarr)](https://github.com/buildarr/buildarr-prowlarr/blob/main/LICENSE) ![Pre-commit hooks](https://github.com/buildarr/buildarr-prowlarr/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 Prowlarr plugin (`buildarr-prowlarr`) is a plugin for Buildarr that adds the capability to configure and manage [Prowlarr](http://prowlarr.com) instances.

Prowlarr is a manager/proxy for *Arr application Usenet and Torrent indexers. It handles communication with individual indexers for multiple instances on their behalf from a single client, allowing easier configuration of indexers by only setting them up once, and better management of traffic going to indexers to reduce the risk of running into rate limits.

Prowlarr v1.0 and later are the only supported versions at this time. If you are using Prowlarr v0.4 or earlier, please upgrade in order to configure your instances with Buildarr.

## Installation

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

```bash
$ pip install buildarr buildarr-prowlarr
```

If you are linking a Prowlarr instance with another Buildarr-configured application, specify the following extras to also install a compatible version of the corresponding plugins:

* `sonarr` (for the Sonarr TV show PVR)
* `radarr` (for the Radarr movie PVR)

```bash
$ pip install buildarr buildarr-prowlarr[sonarr,radarr]
```

When using Buildarr as a [Docker container](https://buildarr.github.io/installation/#docker), the Prowlarr 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-prowlarr==<version>"
```

## Quick Start

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

From version 1.0 onwards, Prowlarr enables authentication by default, preventing Buildarr from automatically retrieving the API key.

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

```yaml
---

buildarr:
  watch_config: true

prowlarr:
  hostname: "localhost" # Defaults to `prowlarr`, or the instance name for instance-specific configs.
  port: 9696 # Defaults to 9696.
  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 Prowlarr instance.

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

```text
2023-03-29 20:39:50,856 buildarr:1 buildarr.cli.run [INFO] Buildarr version 0.4.0 (log level: INFO)
2023-03-29 20:39:50,856 buildarr:1 buildarr.cli.run [INFO] Loading configuration file '/config/buildarr.yml'
2023-03-29 20:39:50,872 buildarr:1 buildarr.cli.run [INFO] Finished loading configuration file
2023-03-29 20:39:50,874 buildarr:1 buildarr.cli.run [INFO] Loaded plugins: prowlarr (0.1.0)
2023-03-29 20:39:50,875 buildarr:1 buildarr.cli.run [INFO] Loading instance configurations
2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Finished loading instance configurations
2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Running with plugins: prowlarr
2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Resolving instance dependencies
2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Finished resolving instance dependencies
2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Loading secrets file from '/config/secrets.json'
2023-03-29 20:39:50,886 buildarr:1 buildarr.cli.run [INFO] Finished loading secrets file
2023-03-29 20:39:50,886 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Checking secrets
2023-03-29 20:39:50,912 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Connection test successful using cached secrets
2023-03-29 20:39:50,912 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Finished checking secrets
2023-03-29 20:39:50,912 buildarr:1 buildarr.cli.run [INFO] Saving updated secrets file to '/config/secrets.json'
2023-03-29 20:39:50,914 buildarr:1 buildarr.cli.run [INFO] Finished saving updated secrets file
2023-03-29 20:39:50,914 buildarr:1 buildarr.cli.run [INFO] Updating configuration on remote instances
2023-03-29 20:39:50,914 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Getting remote configuration
2023-03-29 20:39:51,406 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Finished getting remote configuration
2023-03-29 20:39:51,463 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Updating remote configuration
2023-03-29 20:39:52,019 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Remote configuration is up to date
2023-03-29 20:39:52,019 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Finished updating remote configuration
2023-03-29 20:39:52,019 buildarr:1 buildarr.cli.run [INFO] Finished updating configuration on remote instances
```

## Configuring your Buildarr instance

The following sections cover comprehensive configuration of a Prowlarr instance.

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

* [Host Configuration](https://buildarr.github.io/plugins/prowlarr/configuration/host)
* Settings
    * Indexers
        * [Indexers](https://buildarr.github.io/plugins/prowlarr/configuration/settings/indexers/indexers)
        * [Proxies](https://buildarr.github.io/plugins/prowlarr/configuration/settings/indexers/proxies)
    * Apps
        * [Applications](https://buildarr.github.io/plugins/prowlarr/configuration/settings/apps/applications)
        * [Sync Profiles](https://buildarr.github.io/plugins/prowlarr/configuration/settings/apps/sync-profiles)
    * [Download Clients](https://buildarr.github.io/plugins/prowlarr/configuration/settings/download-clients)
    * [Notifications](https://buildarr.github.io/plugins/prowlarr/configuration/settings/notifications)
    * [Tags](https://buildarr.github.io/plugins/prowlarr/configuration/settings/tags)
    * [General](https://buildarr.github.io/plugins/prowlarr/configuration/settings/general)
    * [UI](https://buildarr.github.io/plugins/prowlarr/configuration/settings/ui)

## Dumping an existing Prowlarr instance configuration

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

```bash
$ buildarr prowlarr dump-config http://localhost:9696 > prowlarr.yml
Prowlarr instance API key: <Paste API key here>
```

The dumped YAML object can be placed directly under the `prowlarr` 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
api_key: 1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d
hostname: localhost
image: lscr.io/linuxserver/prowlarr
port: 9697
protocol: http
settings:
  apps:
    applications:
      definitions:
        Sonarr:
          anime_sync_categories:
          - tv/anime
          api_key: 1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d
          base_url: http://sonarr:8989
          instance_name: null
          prowlarr_url: http://prowlarr:9696
          sync_categories:
          - tv/uhd
          - tv/other
          - tv/foreign
          - tv/sd
          - tv/web-dl
          - tv/hd
          sync_level: add-and-remove-only
          tags:
          - test
          type: sonarr
      delete_unmanaged: false
    sync_profiles:
      definitions:
        Standard:
          enable_automatic_search: true
          enable_interactive_search: true
          enable_rss: true
          minimum_seeders: 1
      delete_unmanaged: false
  download_clients:
    definitions: {}
    delete_unmanaged: false
  general:
    analytics:
      send_anonymous_usage_data: true
    backup:
      folder: Backups
      interval: 7
      retention: 28
    host:
      bind_address: '*'
      instance_name: Prowlarr (Buildarr Example)
      port: 9696
      ssl_cert_password: null
      ssl_cert_path: null
      ssl_port: 6969
      url_base: null
      use_ssl: false
    logging:
      log_level: INFO
    proxy:
      bypass_proxy_for_local_addresses: true
      enable: false
      hostname: null
      ignored_addresses: []
      password: null
      port: 8080
      proxy_type: http
      username: null
    security:
      authentication: form
      authentication_required: local-disabled
      certificate_validation: enabled
      password: mXkaCgbcm6LMVwSmj/aucXfRtYg18k7H+I4/6JPinSA=
      username: callum
    updates:
      automatic: false
      branch: master
      mechanism: docker
      script_path: null
  indexers:
    indexers:
      definitions:
        1337x:
          enable: false
          fields:
            baseUrl: null
            definitionFile: 1337x
            downloadlink: iTorrents.org
            downloadlink2: magnet
            sort: created
            torrentBaseSettings.appMinimumSeeders: null
            torrentBaseSettings.packSeedTime: null
            torrentBaseSettings.seedRatio: null
            torrentBaseSettings.seedTime: null
            type: desc
          grab_limit: 4
          priority: 25
          query_limit: 4
          redirect: false
          secret_fields: {}
          sync_profile: Standard
          tags: []
          type: 1337x
        Nyaa.si:
          enable: false
          fields:
            baseUrl: null
            cat-id: All categories
            definitionFile: nyaasi
            filter-id: No filter
            prefer_magnet_links: true
            sort: created
            torrentBaseSettings.appMinimumSeeders: null
            torrentBaseSettings.packSeedTime: null
            torrentBaseSettings.seedRatio: null
            torrentBaseSettings.seedTime: null
            type: desc
          grab_limit: 4
          priority: 25
          query_limit: 4
          redirect: false
          secret_fields: {}
          sync_profile: Standard
          tags: []
          type: nyaasi
      delete_unmanaged: false
    proxies:
      definitions: {}
      delete_unmanaged: false
  notifications:
    definitions: {}
    delete_unmanaged: false
  tags:
    definitions:
    - test
    delete_unused: false
  ui:
    enable_color_impaired_mode: false
    first_day_of_week: sunday
    long_date_format: month-first
    short_date_format: word-month-first
    show_relative_dates: true
    theme: light
    time_format: twelve-hour
    ui_language: en
    week_column_header: month-first
version: 1.2.2.2699
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://buildarr.github.io",
    "name": "buildarr-prowlarr",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.8",
    "maintainer_email": null,
    "keywords": "buildarr, prowlarr, lazylibrarian, lidarr, mylar, radarr, readarr, sonarr, whisparr",
    "author": "Callum Dickinson",
    "author_email": "callum.dickinson.nz@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/59/ce/76d866cd587679cc4668a5f0c571ec65df999f11f21d80eae2c57f406034/buildarr_prowlarr-0.5.3.tar.gz",
    "platform": null,
    "description": "# Buildarr Prowlarr Plugin\n\n[![PyPI](https://img.shields.io/pypi/v/buildarr-prowlarr)](https://pypi.org/project/buildarr-prowlarr) ![PyPI - Python Version](https://img.shields.io/pypi/pyversions/buildarr-prowlarr)  [![GitHub](https://img.shields.io/github/license/buildarr/buildarr-prowlarr)](https://github.com/buildarr/buildarr-prowlarr/blob/main/LICENSE) ![Pre-commit hooks](https://github.com/buildarr/buildarr-prowlarr/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 Prowlarr plugin (`buildarr-prowlarr`) is a plugin for Buildarr that adds the capability to configure and manage [Prowlarr](http://prowlarr.com) instances.\n\nProwlarr is a manager/proxy for *Arr application Usenet and Torrent indexers. It handles communication with individual indexers for multiple instances on their behalf from a single client, allowing easier configuration of indexers by only setting them up once, and better management of traffic going to indexers to reduce the risk of running into rate limits.\n\nProwlarr v1.0 and later are the only supported versions at this time. If you are using Prowlarr v0.4 or earlier, please upgrade in order to configure your instances with Buildarr.\n\n## Installation\n\nWhen using Buildarr as a [standalone application](https://buildarr.github.io/installation/#standalone-application), the Prowlarr plugin can simply be installed using `pip`:\n\n```bash\n$ pip install buildarr buildarr-prowlarr\n```\n\nIf you are linking a Prowlarr instance with another Buildarr-configured application, specify the following extras to also install a compatible version of the corresponding plugins:\n\n* `sonarr` (for the Sonarr TV show PVR)\n* `radarr` (for the Radarr movie PVR)\n\n```bash\n$ pip install buildarr buildarr-prowlarr[sonarr,radarr]\n```\n\nWhen using Buildarr as a [Docker container](https://buildarr.github.io/installation/#docker), the Prowlarr 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-prowlarr==<version>\"\n```\n\n## Quick Start\n\nTo use the Prowlarr plugin, create a `prowlarr` block within `buildarr.yml`, and enter the connection information required for the Buildarr instance to connect to the Prowlarr instance you'd like to manage.\n\nFrom version 1.0 onwards, Prowlarr enables authentication by default, preventing Buildarr from automatically retrieving the API key.\n\nIf authentication is enabled on your Prowlarr configuration, manually retrieve the API key for Prowlarr 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\nprowlarr:\n  hostname: \"localhost\" # Defaults to `prowlarr`, or the instance name for instance-specific configs.\n  port: 9696 # Defaults to 9696.\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 Prowlarr instance.\n\nTry a `buildarr run`. If the output is similar to the below output, Buildarr was able to connect to your Prowlarr instance.\n\n```text\n2023-03-29 20:39:50,856 buildarr:1 buildarr.cli.run [INFO] Buildarr version 0.4.0 (log level: INFO)\n2023-03-29 20:39:50,856 buildarr:1 buildarr.cli.run [INFO] Loading configuration file '/config/buildarr.yml'\n2023-03-29 20:39:50,872 buildarr:1 buildarr.cli.run [INFO] Finished loading configuration file\n2023-03-29 20:39:50,874 buildarr:1 buildarr.cli.run [INFO] Loaded plugins: prowlarr (0.1.0)\n2023-03-29 20:39:50,875 buildarr:1 buildarr.cli.run [INFO] Loading instance configurations\n2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Finished loading instance configurations\n2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Running with plugins: prowlarr\n2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Resolving instance dependencies\n2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Finished resolving instance dependencies\n2023-03-29 20:39:50,877 buildarr:1 buildarr.cli.run [INFO] Loading secrets file from '/config/secrets.json'\n2023-03-29 20:39:50,886 buildarr:1 buildarr.cli.run [INFO] Finished loading secrets file\n2023-03-29 20:39:50,886 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Checking secrets\n2023-03-29 20:39:50,912 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Connection test successful using cached secrets\n2023-03-29 20:39:50,912 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Finished checking secrets\n2023-03-29 20:39:50,912 buildarr:1 buildarr.cli.run [INFO] Saving updated secrets file to '/config/secrets.json'\n2023-03-29 20:39:50,914 buildarr:1 buildarr.cli.run [INFO] Finished saving updated secrets file\n2023-03-29 20:39:50,914 buildarr:1 buildarr.cli.run [INFO] Updating configuration on remote instances\n2023-03-29 20:39:50,914 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Getting remote configuration\n2023-03-29 20:39:51,406 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Finished getting remote configuration\n2023-03-29 20:39:51,463 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Updating remote configuration\n2023-03-29 20:39:52,019 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Remote configuration is up to date\n2023-03-29 20:39:52,019 buildarr:1 buildarr.cli.run [INFO] <prowlarr> (default) Finished updating remote configuration\n2023-03-29 20:39:52,019 buildarr:1 buildarr.cli.run [INFO] Finished updating configuration on remote instances\n```\n\n## Configuring your Buildarr instance\n\nThe following sections cover comprehensive configuration of a Prowlarr instance.\n\nNote that these documents do not show how you *should* configure a Prowlarr instance. Rather, they show how you *can* configure a Prowlarr instance the way you want with Buildarr. For more information on how to optimally configure Prowlarr, you can refer to the excellent guides from [WikiArr](https://wiki.servarr.com/prowlarr) and [TRaSH-Guides](https://trash-guides.info/Prowlarr/).\n\n* [Host Configuration](https://buildarr.github.io/plugins/prowlarr/configuration/host)\n* Settings\n    * Indexers\n        * [Indexers](https://buildarr.github.io/plugins/prowlarr/configuration/settings/indexers/indexers)\n        * [Proxies](https://buildarr.github.io/plugins/prowlarr/configuration/settings/indexers/proxies)\n    * Apps\n        * [Applications](https://buildarr.github.io/plugins/prowlarr/configuration/settings/apps/applications)\n        * [Sync Profiles](https://buildarr.github.io/plugins/prowlarr/configuration/settings/apps/sync-profiles)\n    * [Download Clients](https://buildarr.github.io/plugins/prowlarr/configuration/settings/download-clients)\n    * [Notifications](https://buildarr.github.io/plugins/prowlarr/configuration/settings/notifications)\n    * [Tags](https://buildarr.github.io/plugins/prowlarr/configuration/settings/tags)\n    * [General](https://buildarr.github.io/plugins/prowlarr/configuration/settings/general)\n    * [UI](https://buildarr.github.io/plugins/prowlarr/configuration/settings/ui)\n\n## Dumping an existing Prowlarr instance configuration\n\nBuildarr is capable of dumping a running Prowlarr instance's configuration.\n\n```bash\n$ buildarr prowlarr dump-config http://localhost:9696 > prowlarr.yml\nProwlarr instance API key: <Paste API key here>\n```\n\nThe dumped YAML object can be placed directly under the `prowlarr` 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\napi_key: 1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d\nhostname: localhost\nimage: lscr.io/linuxserver/prowlarr\nport: 9697\nprotocol: http\nsettings:\n  apps:\n    applications:\n      definitions:\n        Sonarr:\n          anime_sync_categories:\n          - tv/anime\n          api_key: 1a2b3c4d5e6f1a2b3c4d5e6f1a2b3c4d\n          base_url: http://sonarr:8989\n          instance_name: null\n          prowlarr_url: http://prowlarr:9696\n          sync_categories:\n          - tv/uhd\n          - tv/other\n          - tv/foreign\n          - tv/sd\n          - tv/web-dl\n          - tv/hd\n          sync_level: add-and-remove-only\n          tags:\n          - test\n          type: sonarr\n      delete_unmanaged: false\n    sync_profiles:\n      definitions:\n        Standard:\n          enable_automatic_search: true\n          enable_interactive_search: true\n          enable_rss: true\n          minimum_seeders: 1\n      delete_unmanaged: false\n  download_clients:\n    definitions: {}\n    delete_unmanaged: false\n  general:\n    analytics:\n      send_anonymous_usage_data: true\n    backup:\n      folder: Backups\n      interval: 7\n      retention: 28\n    host:\n      bind_address: '*'\n      instance_name: Prowlarr (Buildarr Example)\n      port: 9696\n      ssl_cert_password: null\n      ssl_cert_path: null\n      ssl_port: 6969\n      url_base: null\n      use_ssl: false\n    logging:\n      log_level: INFO\n    proxy:\n      bypass_proxy_for_local_addresses: true\n      enable: false\n      hostname: null\n      ignored_addresses: []\n      password: null\n      port: 8080\n      proxy_type: http\n      username: null\n    security:\n      authentication: form\n      authentication_required: local-disabled\n      certificate_validation: enabled\n      password: mXkaCgbcm6LMVwSmj/aucXfRtYg18k7H+I4/6JPinSA=\n      username: callum\n    updates:\n      automatic: false\n      branch: master\n      mechanism: docker\n      script_path: null\n  indexers:\n    indexers:\n      definitions:\n        1337x:\n          enable: false\n          fields:\n            baseUrl: null\n            definitionFile: 1337x\n            downloadlink: iTorrents.org\n            downloadlink2: magnet\n            sort: created\n            torrentBaseSettings.appMinimumSeeders: null\n            torrentBaseSettings.packSeedTime: null\n            torrentBaseSettings.seedRatio: null\n            torrentBaseSettings.seedTime: null\n            type: desc\n          grab_limit: 4\n          priority: 25\n          query_limit: 4\n          redirect: false\n          secret_fields: {}\n          sync_profile: Standard\n          tags: []\n          type: 1337x\n        Nyaa.si:\n          enable: false\n          fields:\n            baseUrl: null\n            cat-id: All categories\n            definitionFile: nyaasi\n            filter-id: No filter\n            prefer_magnet_links: true\n            sort: created\n            torrentBaseSettings.appMinimumSeeders: null\n            torrentBaseSettings.packSeedTime: null\n            torrentBaseSettings.seedRatio: null\n            torrentBaseSettings.seedTime: null\n            type: desc\n          grab_limit: 4\n          priority: 25\n          query_limit: 4\n          redirect: false\n          secret_fields: {}\n          sync_profile: Standard\n          tags: []\n          type: nyaasi\n      delete_unmanaged: false\n    proxies:\n      definitions: {}\n      delete_unmanaged: false\n  notifications:\n    definitions: {}\n    delete_unmanaged: false\n  tags:\n    definitions:\n    - test\n    delete_unused: false\n  ui:\n    enable_color_impaired_mode: false\n    first_day_of_week: sunday\n    long_date_format: month-first\n    short_date_format: word-month-first\n    show_relative_dates: true\n    theme: light\n    time_format: twelve-hour\n    ui_language: en\n    week_column_header: month-first\nversion: 1.2.2.2699\n```\n",
    "bugtrack_url": null,
    "license": "GPL-3.0-or-later",
    "summary": "Prowlarr indexer manager plugin for Buildarr",
    "version": "0.5.3",
    "project_urls": {
        "Changes": "https://buildarr.github.io/plugins/prowlarr/release-notes",
        "Documentation": "https://buildarr.github.io/plugins/prowlarr",
        "Homepage": "https://buildarr.github.io",
        "Issue Tracker": "https://github.com/buildarr/buildarr-prowlarr/issues",
        "Repository": "https://github.com/buildarr/buildarr-prowlarr"
    },
    "split_keywords": [
        "buildarr",
        " prowlarr",
        " lazylibrarian",
        " lidarr",
        " mylar",
        " radarr",
        " readarr",
        " sonarr",
        " whisparr"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a35a8b4709d526eb6bc04005d983020c0fbf84b9471c8ccc37dc1b4cca75aff7",
                "md5": "5b04dc98f551530fd68354bfd5733509",
                "sha256": "29dbd221c186710b0ed87d7f2b742f9fcb7f1d64fd56d1538dd7d89abfff1fac"
            },
            "downloads": -1,
            "filename": "buildarr_prowlarr-0.5.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5b04dc98f551530fd68354bfd5733509",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.8",
            "size": 85670,
            "upload_time": "2024-04-28T23:34:28",
            "upload_time_iso_8601": "2024-04-28T23:34:28.790354Z",
            "url": "https://files.pythonhosted.org/packages/a3/5a/8b4709d526eb6bc04005d983020c0fbf84b9471c8ccc37dc1b4cca75aff7/buildarr_prowlarr-0.5.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "59ce76d866cd587679cc4668a5f0c571ec65df999f11f21d80eae2c57f406034",
                "md5": "48892026619c11a892fee5e4e028ccce",
                "sha256": "bf742b42e95e0f150ab38ebe4df41d750c1b1cdf775aa89cb482d502b1651b62"
            },
            "downloads": -1,
            "filename": "buildarr_prowlarr-0.5.3.tar.gz",
            "has_sig": false,
            "md5_digest": "48892026619c11a892fee5e4e028ccce",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.8",
            "size": 64454,
            "upload_time": "2024-04-28T23:34:30",
            "upload_time_iso_8601": "2024-04-28T23:34:30.644769Z",
            "url": "https://files.pythonhosted.org/packages/59/ce/76d866cd587679cc4668a5f0c571ec65df999f11f21d80eae2c57f406034/buildarr_prowlarr-0.5.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-28 23:34:30",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "buildarr",
    "github_project": "buildarr-prowlarr",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "buildarr-prowlarr"
}
        
Elapsed time: 0.25100s