grooveondemand/groove/auth.py

11 lines
346 B
Python
Raw Permalink Normal View History

import logging
import os
2022-11-19 17:23:47 -08:00
def is_authenticated(username: str, password: str) -> bool:
"""
Returns True if the supplied username/password matches the environment.
"""
logging.debug(f"Authentication attempt for {username}, {password}")
return (username == os.environ.get('USERNAME') and password == os.environ.get('PASSWORD'))