mirror of
https://github.com/jxxghp/MoviePilot.git
synced 2026-09-04 23:17:20 +08:00
fix tmdbapis
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
from ..tmdb import TMDb
|
||||
|
||||
|
||||
class Group(TMDb):
|
||||
_urls = {
|
||||
"details": "/tv/episode_group/%s"
|
||||
}
|
||||
|
||||
def details(self, group_id):
|
||||
"""
|
||||
Get the details of a TV episode group.
|
||||
:param group_id: int
|
||||
:return:
|
||||
"""
|
||||
return self._request_obj(self._urls["details"] % group_id, key="groups")
|
||||
Reference in New Issue
Block a user