Updates to API key input

This commit is contained in:
zebra 2025-06-09 14:24:23 -07:00
parent 2751e65038
commit dd42d924ef
2 changed files with 4 additions and 4 deletions

View File

@ -78,12 +78,12 @@ The script extracts metadata from the video and organizes the file under the art
📁 Output Structure
Music is saved in:
```
/base_dir/
├── Artist Name/
│ ├── Album Name/ (if found via Lidarr)
│ └── youtube/ (if fallback used)
```
❓ Troubleshooting
No results from Lidarr?
@ -102,4 +102,4 @@ Music is saved in:
PRs welcome! Just keep it simple and compatible with Bash-based workflows.
📜 License
MIT Use it freely and improve it as you wish!
MIT Use it freely and improve it as you wish!

View File

@ -9,7 +9,7 @@ from requests.exceptions import Timeout
# === CONFIGURATION ===
LIDARR_URL = "http://localhost:8686" # Your Lidarr base URL
AAPI_KEY = os.environ.get("LIDARR_API_KEY", "") # Your Lidarr API key
API_KEY = os.environ.get("LIDARR_API_KEY", "") # Your Lidarr API key
ROOT_FOLDER = "/media/music"
headers = {