mirror of
https://github.com/home-assistant/core.git
synced 2025-04-28 11:17:53 +00:00
11 lines
256 B
Python
11 lines
256 B
Python
"""Provide common constants for Open Exchange Rates."""
|
|
|
|
from datetime import timedelta
|
|
import logging
|
|
|
|
DOMAIN = "openexchangerates"
|
|
LOGGER = logging.getLogger(__package__)
|
|
BASE_UPDATE_INTERVAL = timedelta(hours=2)
|
|
CLIENT_TIMEOUT = 10
|
|
DEFAULT_BASE = "USD"
|