This commit is contained in:
Timothy J. Baek 2024-05-27 17:37:40 -07:00
parent c0d4b828a0
commit 1752e2af67
2 changed files with 15 additions and 0 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 28 KiB

After

Width:  |  Height:  |  Size: 28 KiB

15
main.py
View File

@ -22,6 +22,21 @@ import logging
from concurrent.futures import ThreadPoolExecutor
import os
####################################
# Load .env file
####################################
try:
from dotenv import load_dotenv, find_dotenv
load_dotenv(find_dotenv(".env"))
except ImportError:
print("dotenv not installed, skipping...")
PIPELINES = {}
PIPELINE_MODULES = {}