A Spotify user.
You can get users from the session, or you can create a User yourself from a Spotify URI:
>>> session = spotify.Session()
# ...
>>> user = session.get_user('spotify:user:jodal')
>>> user.load().display_name
u'jodal'
The user’s canonical username.
The user’s displayable username.
Whether the user’s data is loaded yet.
Block until the user’s data is loaded.
After timeout seconds with no results Timeout is raised. If timeout is None the default timeout is used.
The method returns self to allow for chaining of calls.
The PlaylistContainer of playlists published by the user.