I'm trying to get the genres for a given show and I keep getting "NA" returned for everything I try.
I can get genres and roles for Movies without issue.
I'm wondering if I am not using this properly for shows. This what I am trying:
show = plex.library.section("TV Shows").get("Almost Human")
foundgenres = show.genres
I'm expecting foundgenres above would be a list similar to what is returned when querying the genres for a movie, though instead of a list I'm getting "NA"
I get a similar result if I replace "genres" with "roles." Summary, type, year, duration, etc are all returned as expected, however. Am I doing something wrong here?