本文整理匯總了Python中filmweb.Filmweb.get_person方法的典型用法代碼示例。如果您正苦於以下問題:Python Filmweb.get_person方法的具體用法?Python Filmweb.get_person怎麽用?Python Filmweb.get_person使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類filmweb.Filmweb
的用法示例。
在下文中一共展示了Filmweb.get_person方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: Osobaparser
# 需要導入模塊: from filmweb import Filmweb [as 別名]
# 或者: from filmweb.Filmweb import get_person [as 別名]
class Osobaparser(unittest.TestCase):
def setUp(self):
self.fa = Filmweb('http')
self.osoba = self.fa.get_person(450)
def test_infos(self):
self.assertEqual('Kazimierz Kaczor', self.osoba.title, )
self.assertEqual(self.osoba['birthdate'].month, 2)
self.assertEqual(self.osoba['birthdate'].day, 9)
self.assertEqual(self.osoba['birthdate'].year, 1941)
self.assertIsNotNone(self.osoba.get('poster'))
def test_in(self):
found_osoby = self.fa.search_person("Kazimierz Kaczor")
self.assertTrue(self.osoba in found_osoby)
def test_filmography(self):
filmography = self.osoba['filmography']
self.assertGreater(len(self.osoba['filmography']), 0)
film = filmography[0]
self.assertEqual(film.objID, 742974)