# python-mpd2: Python MPD client library # # Copyright (C) 2008-2010 J. Alexander Treuman # Copyright (C) 2012 J. Thalheim # Copyright (C) 2016 Robert Niederreiter # # python-mpd2 is free software: you can redistribute it and/or modify # it under the terms of the GNU Lesser General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # python-mpd2 is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU Lesser General Public License for more details. # # You should have received a copy of the GNU Lesser General Public License # along with python-mpd2. If not, see . from mpd.base import CommandError from mpd.base import CommandListError from mpd.base import ConnectionError from mpd.base import FailureResponseCode from mpd.base import IteratingError from mpd.base import MPDClient from mpd.base import MPDError from mpd.base import PendingCommandError from mpd.base import ProtocolError from mpd.base import VERSION try: from mpd.twisted import MPDProtocol except ImportError: class MPDProtocol: def __init__(): raise "No twisted module found"