Home Assistant Unofficial Reference 2024.12.1
const.py
Go to the documentation of this file.
1 """Support for Ombi."""
2 
3 from __future__ import annotations
4 
5 ATTR_SEASON = "season"
6 
7 CONF_URLBASE = "urlbase"
8 
9 DEFAULT_NAME = DOMAIN = "ombi"
10 DEFAULT_PORT = 5000
11 DEFAULT_SEASON = "latest"
12 DEFAULT_SSL = False
13 DEFAULT_URLBASE = ""
14 
15 SERVICE_MOVIE_REQUEST = "submit_movie_request"
16 SERVICE_MUSIC_REQUEST = "submit_music_request"
17 SERVICE_TV_REQUEST = "submit_tv_request"