letterboxdpy icon indicating copy to clipboard operation
letterboxdpy copied to clipboard

extract name and year from movie_name

Open S1NJED opened this issue 6 months ago • 0 comments

Extracting actual movie name and year from movie_name

Changes

  • User.get_watchlist_recent()return object
  • User.get_watchlist() return object
  • User.get_films() return object
  • New function parse_movies_name(str) in letterboxdpy.utils.utils_parser

Before

"625400": {
    "id": "625400",
    "slug": "bugonia",
    "name": "Bugonia (2025)"
}

After

"625400": {
    "id": "625400",
    "slug": "bugonia",
    "name": "Bugonia",
    "year": "2025"
}

Issues

#107 #110 #111

S1NJED avatar Sep 02 '25 01:09 S1NJED