The live fetch was being skipped because creds never reached the process:
Env.py only read os.environ, and .env uses `export ...`, so without a prior
`source .env` the run fell to the cached branch — which then skipped on an
unchanged cache signature ("Spotify cache unchanged — skipping").
- Env.py now auto-loads a project-root .env (setdefault, so an exported value
still wins; tolerates `export ` and quotes).
- --spotify-full now also passes force=True to ingest_spotify, so the cached
fallback re-ingests instead of skipping.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
62 lines
2.3 KiB
Python
62 lines
2.3 KiB
Python
"""Configuration. The three things you point at your own data:
|
|
|
|
LOCAL_LIBRARY_PATH folder of audio files to scan
|
|
ITUNES_XML_PATH iTunes/Music "Library.xml" you exported manually
|
|
DATA_DIR storage root: the database + cached fetches live here
|
|
|
|
Everything can be overridden via environment variables (see .env.example).
|
|
"""
|
|
import os
|
|
from pathlib import Path
|
|
|
|
|
|
def _load_dotenv():
|
|
"""Load a project-root .env into os.environ if present, so `python main.py`
|
|
works without remembering to `source .env`. Already-set environment
|
|
variables win (setdefault), so an explicit `source .env`/export still
|
|
overrides. Supports an optional leading `export ` and quoted values."""
|
|
path = Path(__file__).with_name(".env")
|
|
if not path.exists():
|
|
return
|
|
for raw in path.read_text().splitlines():
|
|
line = raw.strip()
|
|
if not line or line.startswith("#"):
|
|
continue
|
|
if line.startswith("export "):
|
|
line = line[len("export "):]
|
|
key, sep, value = line.partition("=")
|
|
if not sep:
|
|
continue
|
|
os.environ.setdefault(key.strip(), value.strip().strip('"').strip("'"))
|
|
|
|
|
|
_load_dotenv()
|
|
|
|
|
|
def _path(env, default):
|
|
return Path(os.environ.get(env, default)).expanduser()
|
|
|
|
|
|
# --- where YOUR data is read from / written to -------------------------------
|
|
# Local music library to scan (tags incl. ISRC/MusicBrainz id are read).
|
|
local_library_path = _path("LOCAL_LIBRARY_PATH", "~/Music")
|
|
|
|
# iTunes / Apple Music library export. In the Music app:
|
|
# File -> Library -> Export Library… (produces an XML/plist file).
|
|
itunes_xml_path = _path("ITUNES_XML_PATH", "~/Music/iTunes Library.xml")
|
|
|
|
# Storage root — the database and cached Spotify responses go here.
|
|
data_dir = _path("DATA_DIR", "./data")
|
|
|
|
# --- derived storage locations -----------------------------------------------
|
|
spotify_cache_dir = data_dir / "spotify" # raw Spotify API responses
|
|
database_url = os.environ.get(
|
|
"DATABASE_URL", f"sqlite:///{(data_dir / 'musicindexer.db').as_posix()}"
|
|
)
|
|
|
|
# --- Spotify app credentials (only needed for live fetching) -----------------
|
|
client_id = os.environ.get("SPOTIFY_CLIENT_ID")
|
|
client_secret = os.environ.get("SPOTIFY_CLIENT_SECRET")
|
|
|
|
# Contact string sent to MusicBrainz in the User-Agent.
|
|
mb_contact = os.environ.get("MB_CONTACT", "music-indexer@example.com")
|