Images¶
-
class
spotify.Image(session, uri=None, sp_image=None, add_ref=True, callback=None)[source]¶ A Spotify image.
You can get images from
Album.cover(),Artist.portrait(),Playlist.image(), or you can create anImageyourself from a Spotify URI:>>> session = spotify.Session() # ... >>> image = session.get_image( ... 'spotify:image:a0bdcbe11b5cd126968e519b5ed1050b0e8183d0') >>> image.load().data_uri[:50] u'data:image/jpeg;base64,/9j/4AAQSkZJRgABAQEBLAEsAAD'
If
callbackisn’tNone, it is expected to be a callable that accepts a single argument, anImageinstance, when the image is done loading.