Пример #1
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'ptbus'
     self.pattern = r'^http[s]{0,1}://.*\.ptbus\.com/.*'
     self.setcommentimpl(PtbusComments())
     self.sets2queryimpl(PtbusS2Query())
     return
Пример #2
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = '107cine'
     self.pattern = '^http://107cine\.com\/.*'
     self.setcommentimpl(Cine107Comments())
     self.sets2queryimpl(Cine107S2Query())
     return
Пример #3
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'youku'
     self.pattern = '^http[s]{0,1}://.*\.youku\.com/.*|^http://v\.laifeng\.com/.*'
     self.setcommentimpl(YoukuComments())
     self.sets2queryimpl(YoukuS2Query())
     return
Пример #4
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'tgbus'
     #self.pattern = r'^http://bbs\.zol\.com\.cn/[a-z]*/\w+(_\d+)*\.html'
     self.pattern = r'http[s]{0,1}://.*\.tgbus\.com.*'
     self.setcommentimpl(CommenComments())
     self.sets2queryimpl(TGbusS2Query())
Пример #5
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'k17'
     self.pattern = r'^http://\w+\.17k\.com.*'
     self.setcommentimpl(Comments())
     self.sets2queryimpl(
         BBSS2PostQuery('http://bbs.17k.com/search.php?mod=forum'))
Пример #6
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'ifeng'
     self.pattern = r'^http[s]{0,1}://.*ifeng\.com\/.*'
     self.setcommentimpl(IfengNewsComments())
     self.sets2queryimpl(IfengS2Query())
     return
Пример #7
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'acg7'
     self.pattern = r'^http://www\.7acg\.com\/*'
     self.setcommentimpl(CommenComments())
     self.sets2queryimpl(
         BBSS2PostQuery('http://www.7acg.com/search.php?mod=forum'))
Пример #8
0
 def __init__(self):
     WebSite.__init__(self)  
     self.name = 'hqcx'
     self.patterns = [r'^http://www\.renren001\.cc/\w+/\w+/player\.html',r'^http://www\.renren001\.cc/\w+/\w+.*']
     self.setcommentimpl(Renren001Comments())
     self.sets2queryimpl(S2Query())
     return
Пример #9
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'le'
     self.pattern = r'^http[s]{0,1}://.*\.le\.com/.*'
     self.setcommentimpl(LeComments())
     self.sets2queryimpl(LeQuery())
     return
Пример #10
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = '131'
     self.pattern = r'http[s]{0,1}://.*\.131(qz)?\.com.*'
     #self.setcommentimpl(CommenComments())
     #self.sets2queryimpl(BBSS2PostQuery('http://bbs.131.com/search.php?mod=forum'))
     return
Пример #11
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'pptv'
     self.pattern = r'^http://.*\.pptv\.com/.*'
     self.setcommentimpl(PptvComments())
     self.sets2queryimpl(S2Query())
     return
Пример #12
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'mofang'
     self.pattern = r'^http[s]{0,1}://.*\.mofang\.com/.*'
     # self.setcommentimpl(MofangComments())
     # self.sets2queryimpl(MofangS2Query())
     return
Пример #13
0
 def __init__(self):
     WebSite.__init__(self)
     self.addpattern(r'^http://.*mop\.com/.*')
     #self.addpattern('http?://zhannei\.baidu\.com/cse/search')
     # self.sets1basicimpl(MopS1Basic())
     self.setcommentimpl(MopComments())
     self.sets2queryimpl(MopS2Query())
Пример #14
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'sfacg'
     self.pattern = r'http[s]{0,1}://.*\.sfacg\.com.*'
     self.setcommentimpl(SfacgComments())
     # self.sets2queryimpl(PK52S2Query())
     return
Пример #15
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'uuu9'
     self.pattern = r'^http[s]{0,1}://.*\.uuu9\.com/.*'
     self.setcommentimpl(Uuu9Comments())
     #self.sets2queryimpl(DmzjS2Query())
     return
Пример #16
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'tudou'
     self.pattern = '^http[s]{0,1}://(www|video)\.tudou\.com/.*'
     self.setcommentimpl(TudouComments())
     self.sets2queryimpl(tudouS2Query())
     return
Пример #17
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'acfun'
     self.pattern = r'^http[s]{0,1}://www\.acfun\.cn/v/.*'
     self.setcommentimpl(AcfunComments())
     self.sets2queryimpl(S2Query())
     return
Пример #18
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'zymk'
     self.pattern = r'^http://.*\.zymk\.cn\/.*'
     self.setcommentimpl(CommenComments())
     self.sets2queryimpl(
         BBSS2PostQuery('http://bbs.zymk.cn/search.php?mod=forum'))
Пример #19
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'gfan'
     self.pattern = r'^http[s]{0,1}://.*\.gfan\.com.*'
     self.setcommentimpl(GfanComments())
     self.sets2queryimpl(S2Query())
     return
Пример #20
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'huya'
     self.pattern = r'^http[s]{0,1}://.*\.huya\.com/.*'
     self.setcommentimpl(HuyaComments())
     self.sets2queryimpl(HuyaS2Query())
     return
Пример #21
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'narutom'
     self.pattern = r'^http[s]{0,1}://.*\.narutom\.com/.*'
     #self.setcommentimpl(CommenComments())
     self.sets2queryimpl(NarutomS2Query())
     return
Пример #22
0
 def __init__(self):
     WebSite.__init__(self)
     self.pattern = r'^http://\w+\.laohu\.com/.*'
     # self.setcommentimpl(LaohuComments_all())
     self.setcommentimpl(CommenComments())
     self.sets2queryimpl(LaohuS2Query())
     return
Пример #23
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'zol'
     self.pattern = r'^http://.*\.zol\.com\.cn.*'
     self.setcommentimpl(ZolComments())
     self.sets2queryimpl(ZolBbsS2Query())
     return
Пример #24
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'iqiyi'
     self.pattern = r'^http[s]{0,1}://.*\.iqiyi\.com/.*'
     self.setcommentimpl(IqiyiComments())
     self.sets2queryimpl(IqiyiS2Query())
     return
Пример #25
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'pcgames'
     self.pattern = r'^http[s]{0,1}://.*\.pcgames\.com\.cn/.*'
     self.setcommentimpl(PcgamesComments())
     self.sets2queryimpl(S2Query())
     return
Пример #26
0
 def __init__(self):
     WebSite.__init__(self)
     self.patterns = []
     self.addpattern(r'^http://.*\.xinhuanet\.com/.*')
     self.addpattern(r'^http://.*\.home\.news\.cn/.*')
     self.setcommentimpl(xinhuaComments())
     self.sets2queryimpl(xinhuaS2Query())
     return
Пример #27
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'gamersky'
     self.pattern = r'^http://\w+\.gamersky\.com/.*'
     self.setcommentimpl(GamerSkyComments())
     self.sets2queryimpl(
         BBSS2PostQuery('http://bbs.gamersky.com/search.php?mod=forum'))
     return
Пример #28
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = '52pk'
     self.pattern = r'http[s]{0,1}://.*\.52pk\.com.*'
     self.setcommentimpl(CommenComments())
     #self.setcommentimpl(Pk52Comments())
     self.sets2queryimpl(PK52S2Query())
     return
Пример #29
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = '78dm'
     self.pattern = r'^http://.*\.78dm\.net/.*'
     self.setcommentimpl(dm78Comments())
     #self.sets2queryimpl(S2Query())
     self.sets2queryimpl(
         BBSS2PostQuery('http://bbs.78dm.net/search.php?mod=forum'))
Пример #30
0
 def __init__(self):
     WebSite.__init__(self)
     self.name = 'gao7'
     self.pattern = r'^http[s]{0,1}://.*\.gao7\.com/.*'
     self.setcommentimpl(CommenComments())
     self.sets2queryimpl(
         BBSS2PostQuery('http://bbs.gao7.com/search.php?mod=forum'))
     return