What's Changed
- Fix user lists scraping issues (#102, #109) by @fastfingertips in #115
Bug Fixes
- Fixed user lists scraping - Resolved KeyError and empty data issues (#102, #109)
- Updated HTML parsing - Now compatible with current Letterboxd structure
- Fixed infinite pagination - Lists with 100+ items now scrape correctly
New Features
- Flexible list limits - Added
max_listsparameter to control extraction size - Better number parsing - Improved handling of formatted numbers (2,955 films)
Usage
# Get all user lists
lists = user.pages.lists.get_lists()
# Get only first 20 lists
lists = user.pages.lists.get_lists(max_lists=20)Full Changelog: v5.3.0...v5.3.1