コード例 #1
0
 def __init__(self, iid, word):
     Indexable.__init__(self, iid, word)
     # self.title = title
     # self.singer = singer
     self.word = word
コード例 #2
0
 def __init__(self, iid, word, isBinaryWord):
     Indexable.__init__(self, iid, word, isBinaryWord)
     # self.title = title
     # self.singer = singer
     self.word = word
コード例 #3
0
ファイル: book.py プロジェクト: ahaldar/simple-search-engine
 def __init__(self, iid, title, author, metadata):
     Indexable.__init__(self, iid, metadata)
     self.title = title
     self.author = author
コード例 #4
0
 def __init__(self, iid, title, author, metadata):
     Indexable.__init__(self, iid, metadata)
     self.title = title
     self.author = author