Add initial implementation of Audible Series Checker with API connectors and configuration
This commit is contained in:
commit
223bfbf6bc
10 changed files with 630 additions and 0 deletions
9
config.py
Normal file
9
config.py
Normal 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")
|
||||
Loading…
Add table
Add a link
Reference in a new issue