mirror of
https://github.com/pkkid/python-plexapi
synced 2025-02-16 21:08:27 +00:00
parent
ea88be39a0
commit
6829bb2759
1 changed files with 5 additions and 0 deletions
|
@ -461,6 +461,11 @@ class LibrarySection(PlexObject):
|
|||
key = '/hubs/sections/%s' % self.key
|
||||
return self.fetchItems(key)
|
||||
|
||||
def _filters(self):
|
||||
""" Returns a list of :class:`~plexapi.library.Filter` from this library section. """
|
||||
key = '/library/sections/%s/filters' % self.key
|
||||
return self.fetchItems(key, cls=Filter)
|
||||
|
||||
def agents(self):
|
||||
""" Returns a list of available `:class:`~plexapi.media.Agent` for this library section.
|
||||
"""
|
||||
|
|
Loading…
Add table
Reference in a new issue