This commit is contained in:
jxxghp
2023-08-04 13:55:29 +08:00
parent b6b7f18784
commit 99dcf96c7c
3 changed files with 1 additions and 34 deletions

View File

@ -138,14 +138,3 @@ class Person(TMDb):
params="page=%s" % page,
key="results"
)
def search(self, term, page=1):
"""
Search for people.
:param term: string
:param page: int
:return:
"""
warnings.warn("search method is deprecated use tmdbv3api.Search().people(params)",
DeprecationWarning)
return Search().people(term, page=page)