python-tidal icon indicating copy to clipboard operation
python-tidal copied to clipboard

Feature Request: Add Album Review

Open retired-guy opened this issue 3 years ago • 0 comments

album.py is missing get_review(). I've tested this in the current rc:

def get_review(self):
    """
    Retrieve the album review
    
    :return: A string containing the album review
    """
    
    return self.requests.request('GET', 'albums/%s/review' % self.id).json()['text']
    

retired-guy avatar Jul 29 '22 17:07 retired-guy