Files
profilarr/setup.py
santiagosayshey 9ff99d556b Update setup.py
Closes #33
2024-02-13 17:44:36 +10:30

26 lines
561 B
Python

config_content = """
instances:
radarr:
- name: "Master"
base_url: "http://localhost:7878"
api_key: "API_KEY"
- name: "4k-radarr"
base_url: "http://localhost:7887"
api_key: "API_KEY"
sonarr:
- name: "Master"
base_url: "http://localhost:8989"
api_key: "API_KEY"
- name: "4k-sonarr"
base_url: "http://localhost:8998"
api_key: "API_KEY"
settings:
export_path: "./exports"
import_path: "./imports"
ansi_colors: true
"""
with open('config.yml', 'w') as file:
file.write(config_content)