コード例 #1
0
ファイル: __init__.py プロジェクト: zhaoz/pysonic
    def __init__(self, config):

        self.api = Subsonic(config)
        self.player = SubPlayer(subsonic=self.api)

        self._cur_list = None

        command.register_all()
コード例 #2
0
ファイル: __init__.py プロジェクト: zhaoz/pysonic
class PySubCli(object):

    def __init__(self, config):

        self.api = Subsonic(config)
        self.player = SubPlayer(subsonic=self.api)

        self._cur_list = None

        command.register_all()

    @property
    def cur_list(self):
        return self._cur_list

    @cur_list.setter
    def cur_list(self, lst):
        self._cur_list = lst

    def execArgs(self, args):
        """Execute commands given on the cli."""
        cmd = command.find(args)
        cmd(self, args)

    def exit(self, state):
        # kill any player threads
        self.player.stop()
        sys.exit(state)

    def shell(self):
        while True:
            try:
                raw = raw_input(">>> ")
            except EOFError, ex:
                print "\nExiting"
                self.exit(0)
            except KeyboardInterrupt, ex:
                print "\nInteruptted -- Exiting"
                self.exit(0)

            self.execArgs(shlex.split(raw))