Profilarr is a Python-based tool designed to add import/export/sync/delete functionality to the *arr suite. It offers a user-friendly way to:
- Export existing custom formats / profiles
- Import new custom formats / profiles
- Sync a master instance of Radarr / Sonarr with other instances
- Delete existing custom formats / quality profiles
Come join us at https://discord.gg/ZxywYBGRB9 if you need any help or want to talk!
- This tool will overwrite any custom formats in your *arr installation that have the same name.
- Always back up your Radarr and Sonarr configurations before using Profilarr to avoid unintended data loss. (Seriously, do it. Even I've lost data to this tool because I forgot to back up my configs.)
- Python 3.x installed. You can download it from python.org.
- Radarr / Sonarr [Latest Stable]
- Get Profilarr:
- Option 1: Clone repository (latest changes)
git clone https://github.com/santiagosayshey/Profilarr.git
- Option 2: Download latest release (most stable)
- Go to Releases
- Download the latest
Profilarr-vX.X.X.zip
- Extract the zip file to your preferred location.
- Option 1: Clone repository (latest changes)
-
Open Your Terminal:
- Windows: Search for
Command Prompt
orPowerShell
in your start menu. - MacOS: Search for
Terminal
. - Linux: Use your desktop environment's application launcher to find
Terminal
, or pressCtrl+Alt+T
if that's a shortcut in your Linux distro.
- Windows: Search for
-
Navigate to Profilarr Folder:
- Type
cd path/to/your/folder
and press Enter. Replacepath/to/your/folder
with the actual path to where you extracted Profilarr. This command works the same on Windows, MacOS, and Linux.
- Type
-
Install Dependencies:
- Type
pip install -r requirements.txt
and press Enter. This command tells Python to install the necessary software components Profilarr needs to run. The command is the same across all platforms.
- Type
-
Setup Configuration:
- Type
python setup.py
and press Enter. This will run a setup script that prepares Profilarr for use by generating aconfig.yml
file, essentially Profilarr's settings book.
- Type
-
Edit
config.yml
:- Open the
config.yml
file in a text editor. Windows users might use Notepad, MacOS users might use TextEdit, and Linux users can use any text editor like Gedit, Nano, or Vim. - This file contains different settings that you can adjust to tell Profilarr how to operate.
- Open the
-
Add Master Instance Details:
- Look for the section related to Radarr/Sonarr.
- Here, enter the URL and API key for your Radarr/Sonarr instances to link Profilarr with your movie/TV series managers.
-
Configure Syncing or Exporting (if needed):
- Syncing: For syncing additional Radarr/Sonarr instances, add their URL, API key, and a name for each.
- Exporting: To set where Profilarr saves files it creates, adjust the
export_path
. - Importing: If you have settings or lists from other sources, set
import_path
to their location.
-
Configure ANSI Color Support (Optional):
- Profilarr can show colorful text in the terminal. If it's not displaying correctly (like showing
β[94m
instead of colors), you can fix this:- In the
settings
section, findansi_colors: true
. - Change it to
ansi_colors: false
. This disables colorful output for better compatibility with your terminal's capabilities.
- In the
- Profilarr can show colorful text in the terminal. If it's not displaying correctly (like showing
-
Save Your Changes:
- After adjusting these settings, save and close the
config.yml
file.
- After adjusting these settings, save and close the
- If using Windows, use
python <script>
orpy <script>
. If on Linux, usepython3 <script>
.
Note: For users who start using Profilarr before v0.3, you no longer need to manually import custom formats. They will be imported automatically. Quality Profiles still require manual selection.
- If importing Dictionarry files, make sure the import path is
./imports
(This is the default path). - If importing non Dictionarry files, make sure the import path is set to your desired import location.
- Run
python importarr.py
in your command line interface. - Follow the on-screen prompts to select your desired app and which instance(s) to import to.
- Choose your desired quality profile(s) to import.
Select your app of choice
1. Radarr
2. Sonarr
Enter your choice:
1
Select your Radarr instance
1. Radarr (Master)
2. Radarr (4k-radarr)
Choose an instance by number, multiple numbers separated by commas or type 'all' for all instances:
2
Importing custom formats to Radarr : 4k-radarr
Adding custom format 'D-Z0N3' : SUCCESS
Adding custom format 'DON' : SUCCESS
Adding custom format 'EbP' : SUCCESS
Adding custom format 'Geek' : SUCCESS
Adding custom format 'TayTo' : SUCCESS
... and 129 more.
Successfully added 0 custom formats, updated 134 custom formats.
Available profiles:
1. 1080p Balanced (Radarr).json
2. 1080p Balanced (Single Grab) (Radarr).json
3. 1080p h265 Balanced (Radarr).json
4. 1080p h265 Balanced (Single Grab) (Radarr).json
5. 1080p Optimal (Radarr).json
6. 1080p Optimal (Single Grab) (Radarr).json
7. 1080p Transparent (Double Grab) (Radarr).json
8. 1080p Transparent (Radarr).json
9. 1080p Transparent (Single Grab) (Radarr).json
10. 2160p Optimal (Radarr).json
11. 2160p Optimal (Single Grab) (Radarr).json
Enter the numbers of the profiles you want to import separated by commas, or type 'all' to import all profiles:
8,10
Importing Quality Profiles to Radarr : 4k-radarr
Adding '1080p Transparent' quality profile : SUCCESS
Adding '2160p Optimal' quality profile : SUCCESS
- Make sure the export path is set to your desired export location. The default is
./exports
. - Run
python exportarr.py
in your command line interface. - Follow the on-screen prompts to select your desired app and which instance(s) to export from.
- Choose the data you want to export.
- The data will be exported to
exports/{data_type}/{app}/
.
Select your app of choice
1. Radarr
2. Sonarr
Enter your choice:
1
Select your Radarr instance
1. Radarr (Master)
2. Radarr (4k-radarr)
Choose an instance by number, multiple numbers separated by commas or type 'all' for all instances:
2
Exporting Custom Formats for Radarr : 4k-radarr
Exported 134 custom formats to ./exports/custom_formats/Radarr for 4k-radarr
Exporting Quality Profiles for Radarr : 4k-radarr...
Exported 2 quality profiles to ./exports/quality_profiles/Radarr for 4k-radarr
- Make sure the import path is set to whatever your export path is. This is important, as the script will look for the exported files in this location.
- Run
python syncarr.py
in your command line interface. - The script will automatically export data from the master instance and import it to all other instances specified in
config.json
.
PS Z:\Profilarr> py syncarr.py
Select your app of choice
1. Radarr
2. Sonarr
Enter your choice:
1
Exporting Custom Formats for radarr : Master
Exported 134 custom formats to ./exports\custom_formats\radarr for Master
Exporting Quality Profiles for radarr : Master...
Exported 14 quality profiles to ./exports\quality_profiles\radarr for Master
Importing custom formats to radarr : 4k-radarr
...
Updating custom format 'Blu-Ray (Remux)' : SUCCESS
Updating custom format 'MAX' : SUCCESS
Updating custom format 'h265 (4k)' : SUCCESS
Updating custom format 'TEST FLAC' : SUCCESS
Successfully added 134 custom formats, updated 0 custom formats.
Available profiles:
1. 1080p Balanced (Radarr).json
2. 1080p Balanced (Single Grab) (Radarr).json
3. 1080p h265 Balanced (Radarr).json
4. 1080p h265 Balanced (Single Grab) (Radarr).json
5. 1080p Optimal (Radarr).json
6. 1080p Optimal (Single Grab) (Radarr).json
7. 1080p Transparent (Double Grab) (Radarr).json
8. 1080p Transparent (Radarr).json
9. 1080p Transparent (Single Grab) (Radarr).json
10. 2160p Optimal (Radarr).json
11. 2160p Optimal (Single Grab) (Radarr).json
Enter the numbers of the profiles you want to import separated by commas, or type 'all' to import all profiles:
all
Importing Quality Profiles to radarr : 4k-radarr
Adding '1080p Balanced' quality profile : SUCCESS
Adding '1080p Balanced (Single Grab)' quality profile : SUCCESS
Adding '1080p h265 Balanced' quality profile : SUCCESS
Adding '1080p h265 Balanced (Single Grab)' quality profile : SUCCESS
Adding '1080p Optimal' quality profile : SUCCESS
Adding '1080p Optimal (Single Grab)' quality profile : SUCCESS
Adding '1080p Transparent (Double Grab)' quality profile : SUCCESS
Updating '1080p Transparent' quality profile : SUCCESS
Adding '1080p Transparent (Single Grab)' quality profile : SUCCESS
Updating '2160p Optimal' quality profile : SUCCESS
Adding '2160p Optimal (Single Grab)' quality profile : SUCCESS
- Run
python deletarr.py
in your command line interface. - Select the instance(s) from which you wish to delete data.
- Choose between deleting Custom Formats, Quality Profiles or both
- Select specific items by typing their numbers separated by commas, or type 'all' to delete everything.
Select your app of choice
1. Radarr
2. Sonarr
Enter your choice:
1
Select your Radarr instance
1. Radarr (Master)
2. Radarr (4k-radarr)
Choose an instance by number, multiple numbers separated by commas or type 'all' for all instances:
2
Please select what you want to delete:
1. Custom Formats
2. Quality Profiles
3. Both
Enter your choice: 3
Available items to delete:
1. D-Z0N3
2. DON
3. EbP
4. Geek
5. TayTo
6. ZQ
...
Enter the number(s) of the items you wish to delete, separated by commas, or type 'all' for all:
Your choice: all
Deleting Custom Format (D-Z0N3) : SUCCESS
Deleting Custom Format (DON) : SUCCESS
Deleting Custom Format (EbP) : SUCCESS
Deleting Custom Format (Geek) : SUCCESS
Deleting Custom Format (TayTo) : SUCCESS
Deleting Custom Format (ZQ) : SUCCESS
Available items to delete:
1. 1080p Transparent
2. 2160p Optimal
3. 1080p Balanced
4. 1080p Balanced (Single Grab)
5. 1080p h265 Balanced
6. 1080p h265 Balanced (Single Grab)
7. 1080p Optimal
8. 1080p Optimal (Single Grab)
9. 1080p Transparent (Double Grab)
10. 1080p Transparent (Single Grab)
11. 2160p Optimal (Single Grab)
Enter the number(s) of the items you wish to delete, separated by commas, or type 'all' for all:
Your choice: all
Deleting Quality Profile (1080p Transparent) : SUCCESS
Deleting Quality Profile (2160p Optimal) : SUCCESS
Deleting Quality Profile (1080p Balanced) : SUCCESS
Deleting Quality Profile (1080p Balanced (Single Grab)) : SUCCESS
Deleting Quality Profile (1080p h265 Balanced) : SUCCESS
Deleting Quality Profile (1080p h265 Balanced (Single Grab)) : SUCCESS
Deleting Quality Profile (1080p Optimal) : SUCCESS
Deleting Quality Profile (1080p Optimal (Single Grab)) : SUCCESS
Deleting Quality Profile (1080p Transparent (Double Grab)) : SUCCESS
Deleting Quality Profile (1080p Transparent (Single Grab)) : SUCCESS
Deleting Quality Profile (2160p Optimal (Single Grab)) : SUCCESS
PS Z:\Profilarr>
- You are only able to import / sync files to the app that is included in the file name (e.g.
Radarr
orSonarr
). - It is possible to manually rename the files to import them to the other app, but this is not recommended.
- Custom Formats will succesfully import, but will require manual editing to work with the other app, i.e. you must adjust the quality sources to match the other app's naming scheme.
- Quality Profiles will not import at all, as they are not compatible with the other app. It is possible to import them manually by editing the json directly, but this is not recommended.
- In future, I may add a feature to automatically convert profiles between the two apps, but this is not currently a priority.
- Lidarr Support: Expand functionality to include Lidarr, allowing users to manage music quality profiles and custom formats.
- User Interface (UI): Development of a graphical user interface (GUI) for easier and more intuitive interaction with Profilarr. This UI will cater to users who prefer graphical over command-line interactions.
- Automatic Updates: Implement an auto-update mechanism for Profilarr, ensuring users always have access to the latest features, improvements, and bug fixes without manual intervention.
- You may encounter a
JSON Encode Error
. This occurs when the base_url is entered incorrectly. Measures have been taken to prevent this, but if you encounter this error, please check your base_url in the config.yml file.
- I've added a docker compose file for testing custom formats / quality profiles. Run
docker-compose up -d
to start the Radarr/ Sonarr test containers. Add your API keys to theconfig.yml
file and begin testing!
Some custom formats found here have been interated on from the trash guides. Credit for these goes entirely to trash, and can be found on their site here. It is not my intention to steal their work, but rather to build on it and make it more accessible to the average user through my quality profiles. Please check out their site for more information on their work.