Closed glensc closed 7 months ago
Add PublicList for:
movie_list = PublicList.load(trakt_id) print(movie_list.description) for m in movie_list: print(f"{m.rank}. {m.title}: {m.listed_at} {m.trakt}")
Actual usage example:
Tests in a separate PR:
The module name where it's placed is perhaps odd:
from trakt.users import PublicList
@simonc56 any comments?
I didn't test. Maybe some tests for PublicList could be helpful.
@simonc56 so, no comments on code and naming?
Add PublicList for:
Actual usage example:
Tests in a separate PR: