[cineoob] new command movies_in_common

This commit is contained in:
Julien Veyssier 2013-03-04 15:52:57 +01:00
commit a6430c96b3
5 changed files with 67 additions and 3 deletions

View file

@ -133,3 +133,13 @@ class ICapCinema(IBaseCap):
:rtype: iter[:class:`Movie`]
"""
raise NotImplementedError()
def iter_person_movies_ids(self, _id):
"""
Get the list of movie ids related to a person.
:param _id: ID of person
:type _id: str
:rtype: iter[str]
"""
raise NotImplementedError()