Home Assistant Unofficial Reference 2024.12.1
homeassistant.components.geocaching.const Namespace Reference

Variables

 ENVIRONMENT = GeocachingApiEnvironment.Production
 
dictionary ENVIRONMENT_URLS
 
 Final
 
 LOGGER = logging.getLogger(__package__)
 
 UPDATE_INTERVAL = timedelta(hours=1)
 

Detailed Description

Constants for the Geocaching integration.

Variable Documentation

◆ ENVIRONMENT

homeassistant.components.geocaching.const.ENVIRONMENT = GeocachingApiEnvironment.Production

Definition at line 28 of file const.py.

◆ ENVIRONMENT_URLS

dictionary homeassistant.components.geocaching.const.ENVIRONMENT_URLS
Initial value:
1 = {
2  GeocachingApiEnvironment.Staging: GeocachingOAuthApiUrls(
3  authorize_url="https://staging.geocaching.com/oauth/authorize.aspx",
4  token_url="https://oauth-staging.geocaching.com/token",
5  ),
6  GeocachingApiEnvironment.Production: GeocachingOAuthApiUrls(
7  authorize_url="https://www.geocaching.com/oauth/authorize.aspx",
8  token_url="https://oauth.geocaching.com/token",
9  ),
10 }

Definition at line 17 of file const.py.

◆ Final

homeassistant.components.geocaching.const.Final

Definition at line 13 of file const.py.

◆ LOGGER

homeassistant.components.geocaching.const.LOGGER = logging.getLogger(__package__)

Definition at line 14 of file const.py.

◆ UPDATE_INTERVAL

homeassistant.components.geocaching.const.UPDATE_INTERVAL = timedelta(hours=1)

Definition at line 15 of file const.py.