Add initial implementation of Audible Series Checker with API connectors and configuration

This commit is contained in:
Yunn Xairou 2025-08-23 14:57:12 +02:00
commit 223bfbf6bc
10 changed files with 630 additions and 0 deletions

9
config.py Normal file
View file

@ -0,0 +1,9 @@
import os
from dotenv import load_dotenv
load_dotenv()
ABS_API_URL = os.environ.get("ABS_API_URL")
ABS_API_TOKEN = os.environ.get("ABS_API_TOKEN")
AUDIBLE_AUTH_FILE = os.environ.get("AUDIBLE_AUTH_FILE")