本文整理汇总了Python中spotify.manager.SpotifySessionManager类的典型用法代码示例。如果您正苦于以下问题:Python SpotifySessionManager类的具体用法?Python SpotifySessionManager怎么用?Python SpotifySessionManager使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了SpotifySessionManager类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: __init__
def __init__(self, service):
self.service = service
self.cache_location = self.service.store.dbdir.child("temp").path
SpotifySessionManager.__init__(self, service.username, service.password)
self.ctr = None
self.playing = False
log.msg("Connecting as %s" % service.username, system="squeal.spot.service.SpotifyManager")
示例2: __init__
def __init__(self, condition, *a, **kw):
SpotifySessionManager.__init__(self, *a, **kw)
self.audio = AlsaController()
self.ctr = None
self.playing = False
self._queue = []
self.playlist_manager = JukeboxPlaylistManager()
self.container_manager = JukeboxContainerManager(condition)
示例3: __init__
def __init__(self, *a, **kw):
SpotifySessionManager.__init__(self, *a, **kw)
self.audio = AlsaController()
self.ui = JukeboxUI(self)
self.ctr = None
self.playing = False
self._queue = []
print "Logging in, please wait..."
示例4: __init__
def __init__(self, *args, **kwargs):
threading.Thread.__init__(self)
SpotifySessionManager.__init__(self, *args, **kwargs)
self.audio = AlsaController()
self.playing = False
self.loaded_tracks = []
self.start()
示例5: __init__
def __init__(self, list, *a, **kw):
SpotifySessionManager.__init__(self, *a, **kw)
self.audio = AlsaController()
self.ctr = None
self.playing = False
self._queue = []
self.to_random = list
print "Logging in, please wait..."
示例6: __init__
def __init__(self,username, *a, **kw):
SpotifySessionManager.__init__(self, username,*a, **kw)
self.audio = AudioSink(backend=self)
self.playing = False
self._queue = []
self.currentIndex = 0
self.track_playing = None
self.manager = QueueManager(self,username)
self.loading = False
示例7: __init__
def __init__(self, *a, **kw):
SpotifySessionManager.__init__(self, *a, **kw)
self.audio = AlsaController()
self.ui = HTTPRequests(self)
self.ctr = None
self.playing = False
self.username = a[0]
self._queue = []
print "Trying to log in as " + a[0] + ", please wait..."
示例8: __init__
def __init__(self, *a, **kw):
SpotifySessionManager.__init__(self, *a, **kw)
self.audio = AudioSink(backend=self)
self.ctr = None
self.playing = False
self._queue = []
self.playlist_manager = JukeboxPlaylistManager()
self.container_manager = JukeboxContainerManager()
self.track_playing = None
print "Logging in, please wait..."
示例9: __init__
def __init__(self, track_uri, username=None, password=None, remember_me=False,
login_blob='', proxy=None, proxy_username=None,
proxy_password=None):
SpotifySessionManager.__init__(self, username=username, password=password,
remember_me=remember_me, login_blob=login_blob,
proxy=proxy, proxy_username=proxy_username,
proxy_password=proxy_password)
self.track_uri = track_uri
self.ctr = None
# self.container_manager = JukeboxContainerManager()
print "Logging in, please wait..."
示例10: __init__
def __init__(self, *a, **kw):
#
# Prevent the Spotify Session Manager from trying to read the appkey from file
self.appkey_file = None
self.application_key = kw['application_key']
#
# Parent constructor
SpotifySessionManager.__init__(self, *a, **kw)
#
# Standard set up
self.audio = AudioSink(backend=self)
# MJW self.ui = JukeboxUI(self)
self.ctr = None
self.playing = False
self._queue = []
self.playlist_manager = JukeboxPlaylistManager()
self.container_manager = JukeboxContainerManager()
self.track_playing = None
print "Logging in, please wait..."
示例11: __init__
def __init__(self, *a, **kw):
SpotifySessionManager.__init__(self, *a, **kw)
self.audio = AlsaController()
示例12: __init__
def __init__(self):
SpotifySessionManager.__init__(self, "username_good", "password_good")
示例13: __init__
def __init__(self, *a, **kw):
SpotifySessionManager.__init__(self, *a, **kw)
self.playlist = None
self.track = None
self.results = False
示例14: __init__
def __init__(self, usr, pwd, all_loaded):
SpotifySessionManager.__init__(self, usr, pwd)
threading.Thread.__init__(self)
self.ctr = None
self.playlist_manager = YoukboxPlaylistManager()
self.container_manager = YoukboxContainerManager(all_loaded)
示例15: __init__
def __init__(self):
SpotifySessionManager.__init__(self, "username_good", "password_good")
self.awoken = threading.Event() # used to block until awoken