""" pyemby.constants ~~~~~~~~~~~~~~~~~~~~ Constants list Copyright (c) 2017-2024 John Mihalic Licensed under the MIT license. """ MAJOR_VERSION = 1 MINOR_VERSION = 10 __version__ = '{}.{}'.format(MAJOR_VERSION, MINOR_VERSION) DEFAULT_TIMEOUT = 10 DEFAULT_HEADERS = { 'Content-Type': "application/json", 'Accept': "application/json", } API_URL = 'api' SOCKET_URL = 'socket' STATE_PLAYING = 'Playing' STATE_PAUSED = 'Paused' STATE_IDLE = 'Idle' STATE_OFF = 'Off'