Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Constants for the Mealie integration."""
2 
3 import logging
4 
5 from awesomeversion import AwesomeVersion
6 
7 DOMAIN = "mealie"
8 
9 LOGGER = logging.getLogger(__package__)
10 
11 ATTR_CONFIG_ENTRY_ID = "config_entry_id"
12 ATTR_START_DATE = "start_date"
13 ATTR_END_DATE = "end_date"
14 ATTR_RECIPE_ID = "recipe_id"
15 ATTR_URL = "url"
16 ATTR_INCLUDE_TAGS = "include_tags"
17 ATTR_ENTRY_TYPE = "entry_type"
18 ATTR_NOTE_TITLE = "note_title"
19 ATTR_NOTE_TEXT = "note_text"
20 
21 MIN_REQUIRED_MEALIE_VERSION = AwesomeVersion("v1.0.0")