當前位置: 首頁>>代碼示例>>Python>>正文


Python SpotifySessionManager.__init__方法代碼示例

本文整理匯總了Python中spotify.manager.SpotifySessionManager.__init__方法的典型用法代碼示例。如果您正苦於以下問題:Python SpotifySessionManager.__init__方法的具體用法?Python SpotifySessionManager.__init__怎麽用?Python SpotifySessionManager.__init__使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在spotify.manager.SpotifySessionManager的用法示例。


在下文中一共展示了SpotifySessionManager.__init__方法的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
    def __init__(self, config, audio, backend_ref):

        self.cache_location = config["spotify"]["cache_dir"]
        self.settings_location = config["spotify"]["cache_dir"]

        PyspotifySessionManager.__init__(
            self,
            config["spotify"]["username"],
            config["spotify"]["password"],
            proxy=config["proxy"]["hostname"],
            proxy_username=config["proxy"]["username"],
            proxy_password=config["proxy"]["password"],
        )

        process.BaseThread.__init__(self)
        self.name = "SpotifyThread"

        self.audio = audio
        self.backend = None
        self.backend_ref = backend_ref

        self.bitrate = config["spotify"]["bitrate"]

        self.connected = threading.Event()
        self.push_audio_data = True
        self.buffer_timestamp = 0

        self.container_manager = None
        self.playlist_manager = None

        self._initial_data_receive_completed = False
開發者ID:serman,項目名稱:mopidy,代碼行數:33,代碼來源:session_manager.py

示例2: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
 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")
開發者ID:htgoebel,項目名稱:squeal,代碼行數:9,代碼來源:manager.py

示例3: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
 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)
開發者ID:jbarciauskas,項目名稱:pyspotify-web,代碼行數:10,代碼來源:jukebox.py

示例4: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
 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..."
開發者ID:aabilio,項目名稱:pyspotify,代碼行數:10,代碼來源:jukebox.py

示例5: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
    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()
開發者ID:knutin,項目名稱:spotify_quiz,代碼行數:10,代碼來源:spotifysession.py

示例6: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
 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..."
開發者ID:cdsboy,項目名稱:tests,代碼行數:10,代碼來源:randomize.py

示例7: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
	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			
開發者ID:ryleyherrington,項目名稱:DJPi,代碼行數:11,代碼來源:djpi.py

示例8: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
 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..."
開發者ID:BigNetwork,項目名稱:spotify-daemon,代碼行數:11,代碼來源:sessionmanager.py

示例9: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
 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..."
開發者ID:lovek323,項目名稱:spotify-ripper,代碼行數:12,代碼來源:jukebox.py

示例10: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
 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..."
開發者ID:DriesVandenneucker,項目名稱:starrify,代碼行數:13,代碼來源:starrify.py

示例11: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
    def __init__(self, username, password):
        PyspotifySessionManager.__init__(self, username, password)
        BaseThread.__init__(self)
        self.name = 'SpotifyThread'

        self.gstreamer = None
        self.backend = None

        self.connected = threading.Event()
        self.session = None

        self.container_manager = None
        self.playlist_manager = None
開發者ID:WoLpH,項目名稱:mopidy,代碼行數:15,代碼來源:session_manager.py

示例12: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
    def __init__(self, username, password):
        PyspotifySessionManager.__init__(self, username, password)
        BaseThread.__init__(self)
        self.name = 'SpotifyThread'

        self.audio = None
        self.backend = None

        self.connected = threading.Event()
        self.session = None

        self.container_manager = None
        self.playlist_manager = None

        self._initial_data_receive_completed = False
開發者ID:Dvad,項目名稱:mopidy,代碼行數:17,代碼來源:session_manager.py

示例13: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
    def __init__(self, username, password, audio, backend_ref, proxy=None,
                 proxy_username=None, proxy_password=None):
        PyspotifySessionManager.__init__(
            self, username, password, proxy=proxy,
            proxy_username=proxy_username,
            proxy_password=proxy_password)
        process.BaseThread.__init__(self)
        self.name = 'SpotifyThread'

        self.audio = audio
        self.backend = None
        self.backend_ref = backend_ref

        self.connected = threading.Event()

        self.container_manager = None
        self.playlist_manager = None

        self._initial_data_receive_completed = False
開發者ID:trygveaa,項目名稱:mopidy,代碼行數:21,代碼來源:session_manager.py

示例14: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
 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..."
開發者ID:mattjw,項目名稱:Symfopi,代碼行數:23,代碼來源:playback.py

示例15: __init__

# 需要導入模塊: from spotify.manager import SpotifySessionManager [as 別名]
# 或者: from spotify.manager.SpotifySessionManager import __init__ [as 別名]
    def __init__(self, config, audio, backend_ref):

        self.cache_location = config['spotify']['cache_dir']
        self.settings_location = config['spotify']['settings_dir']

        self.logins = SpotifyLoginManager(config['spotify'])
        username, password = self.logins.get_login()

        full_proxy = ''
        if config['proxy']['hostname']:
            full_proxy = config['proxy']['hostname']
            if config['proxy']['port']:
                full_proxy += ':' + str(config['proxy']['port'])
            if config['proxy']['scheme']:
                full_proxy = config['proxy']['scheme'] + "://" + full_proxy

        PyspotifySessionManager.__init__(
            self, username, password,
            proxy=full_proxy,
            proxy_username=config['proxy']['username'],
            proxy_password=config['proxy']['password'])

        process.BaseThread.__init__(self)
        self.name = 'SpotifyThread'

        self.audio = audio
        self.backend = None
        self.backend_ref = backend_ref

        self.bitrate = config['spotify']['bitrate']

        self.connected = threading.Event()
        self.push_audio_data = True
        self.buffer_timestamp = 0

        self.container_manager = None
        self.playlist_manager = None

        self._initial_data_receive_completed = False
開發者ID:schinken,項目名稱:mopidy-spotify,代碼行數:41,代碼來源:session_manager.py


注:本文中的spotify.manager.SpotifySessionManager.__init__方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。