v0.0.5
Features
Client.DEFAULT_PROFILE
Added feature for quickly getting the user's default profile id. This is done by:
client = Client('access-token')
client.DEFAULT_PROFILEThis is useful in code such as this:
client.profile(client.DEFAULT_PROFILE).loop.get()Note: Client.DEFAULT_PROFILE is a cached property. So, if the user's default profile changes after Client.DEFAULT_PROPERTY has already been fetched then this will not be reflected immediately. To reset Client.DEFAULT_PROFILE do:
del client.DEFAULT_PROFILEand then fetch it again.