コード例 #1
0
 def __init__(self, name, author, year):
     Book.__init__(self, name, author)
     self.year = year
コード例 #2
0
 def __init__(self, date, creator, bookname='PreTangPoetry'):
     Book.__init__(self, bookname, date, creator)
     self.title_candidates = []
コード例 #3
0
ファイル: SongShu.py プロジェクト: jibanCat/DigitalHumanities
 def __init__(self, date, creator):
     Book.__init__(self, 'SongShu', date, creator)
コード例 #4
0
ファイル: WenXuan.py プロジェクト: jibanCat/DigitalHumanities
 def __init__(self, date, creator):
     Book.__init__(self, 'WenXuan', date, creator)
     self.sound_glosses_bag = []
     self.description_dataframe.loc[2, "method"] = "self.passages2tuples"