Spaces:
Sleeping
Sleeping
File size: 348 Bytes
543ec94 b7791c2 543ec94 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
import os
from dotenv import load_dotenv
load_dotenv()
class KeySelector():
def __init__(self):
pass
def get_api_key_info(self):
api_key_info = {
"key_at": "at_headers",
"key_name": "X_Goog_Api_Key",
"key_value": os.getenv("X_Goog_Api_Key", "")
}
return api_key_info |