Server Version#: 1.16.1.1291
Player Version#: N/A
PlexAPI Python lib Version: 3.1.0 (https://pypi.org/project/PlexAPI/)
I’m not certain if upgrading the server version affected this or if that’s a red herring (because I did an update a couple days ago) but I’ve noticed that my Plex server no longer updates using the python lib.
plex = PlexServer(baseurl="http://myplexip:32400", token="mytoken", timeout=10)
for section in (plex.library.section(section) for section in ["movies", "tvshows"]):
section.update()
This is the snippet of code I use to update my library. I’ve used the lib’s debug/logging to confirm that the request is being successfully sent (the server returns a 200 OK), but Plex doesn’t seem to update the library at all anymore. This has been working reliably for nearly a year now, so I’m trying to figure out what changed.
Did something change in the latest server update that might be causing it not to update?