glensc / python-pytrakt

A Pythonic interface to the Trakt.tv REST API
https://glensc.github.io/python-pytrakt/
Other
22 stars 7 forks source link

Add share_link to UserList tuple #27

Closed simonc56 closed 1 year ago

simonc56 commented 1 year ago

There's been an update of Trakt API adding a share_link value to lists :

"list": {
            "name": "IMDB: Top Rated Movies",
            "description": "The IMDB top 250 movies, based on popularity. List updated daily.",
            "privacy": "public",
            "share_link": "https://trakt.tv/lists/2142753",
            "type": "personal",
            "display_numbers": true,
            "allow_comments": true,
            "sort_by": "rank",
            ...

This PR adds this keywork to Userlist class to comply with trakt API update.

fixes https://github.com/Taxel/PlexTraktSync/issues/1456