Datasets:
File size: 257 Bytes
907001b | 1 2 3 4 5 6 7 | def get_api_envs():
"""pass"""
client_id = os.environ.get('CLIENT_ID')
user_id = os.environ.get('USER_ID')
if not client_id or not user_id:
raise ValueError('API keys are not found in the environment')
return (client_id, user_id) |