Need to check if env file exists, otherwise it errors
This commit is contained in:
parent
c9f7ab8f92
commit
42ba2be0f8
15
download.py
15
download.py
@ -18,13 +18,14 @@ if not DOWNLOAD_PATH:
|
||||
DOWNLOAD_PATH = "./downloads"
|
||||
|
||||
# Read in dot env file
|
||||
file = open(".env", "r")
|
||||
lines = file.readlines()
|
||||
for line in lines:
|
||||
key, value = line.split("=")
|
||||
key = key.strip()
|
||||
if os.environ.get(key) is None:
|
||||
os.environ[key] = value.strip()
|
||||
if os.path.exists(".env"):
|
||||
file = open(".env", "r")
|
||||
lines = file.readlines()
|
||||
for line in lines:
|
||||
key, value = line.split("=")
|
||||
key = key.strip()
|
||||
if os.environ.get(key) is None:
|
||||
os.environ[key] = value.strip()
|
||||
|
||||
# Docs: https://app.swaggerhub.com/apis-docs/NexusMods/nexus-mods_public_api_params_in_form_data/1.0
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user