def online_price(self): return utils.match_single(self.data, '<b class="f40">¥ (\d+\.\d+)</b>', None, float)
def market_price(self): return utils.match_single(self.data, '现场票(\d+\.\d+)元</span>', None, float)
def star(self): return utils.match_single(self.data, 'star-(\d\.\d)\.png', None, float)
def went(self): return utils.match_single(self.data, '共(\d+)人参加', 0, int)
def location(self): return utils.match_single(self.data, '<span class="fl mr10">([^<]+)</span>', '')\ .replace(' ', '').replace('海 外', '海外').replace('黑龙江省', '黑龙江').split(' ', 4)
def name(self): return utils.match_single(self.data, '>([^<]+)</h2>', '') \ or utils.match_single(self.data, '<title>([^<]+)</title>')