123456789101112131415161718192021222324 |
- #!/usr/bin/env python
- # -*- coding: UTF-8 -*-
- import os
- import report
-
- MQTT_USER = "{{ audio_spotify_username }}"
- MQTT_PASS = "{{ audio_spotify_password }}"
- MQTT_SERVER = "{{ audio_spotify_hostname }}"
- MQTT_TOPIC = "{{ audio_spotify_topic }}"
-
- DEVICE_NAME = "Multimedia"
-
- #
- # Logging
- #
- __BASEPATH__ = os.path.abspath(os.path.dirname(__file__))
- APP_NAME = "spotify"
- LOGTARGET = 'stdout' # possible choices are: 'logfile' or 'stdout'
- LOGLVL = 'INFO'
-
- LOGHOST = 'cutelog'
- LOGPORT = 19996
-
- formatter = report.SHORT_FMT
|