This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from datetime import datetime | |
import os | |
from blinkpy.blinkpy import Blink | |
from blinkpy.auth import Auth | |
from dotenv import load_dotenv | |
def getLastReadTime() -> str: | |
with open(os.getenv('BASE_BLINK_STORAGE_PATH') + os.getenv('LAST_READ_TIME_FILE_NAME')) as file: | |
last_read = file.read() |