Python通過正則表達式選取callback的方法
本文實例講述了Python通過正則表達式選取callback的方法。分享給大家供大家參考。具體如下:
最近在瞎想怎么通過xpath去精確抓取文章的正文,跟parselets類似的想法,只不過更簡單。
代碼設(shè)計上采用正則表達式匹配URL,再選擇callback handler的方式,主要參考web.py的分發(fā)器(Dispatcher)。
當(dāng)然,這個實現(xiàn)比較老土一些,全部用function的方式回調(diào),沒有用類。
#!/bin/env python import re, sys # Define parser first. def baidu(username): # Business logic return "Using parser Baidu. and the user's name is: %s." % username def qzone(uin): # Business logic return "Using parser Qzone, and the user's QQ is: %s." % uin # From web.py def group(seq, size):#{{{ """ Returns an iterator over a series of lists of length size from iterable. >>> list(group([1,2,3,4], 2)) [[1, 2], [3, 4]] >>> list(group([1,2,3,4,5], 2)) [[1, 2], [3, 4], [5]] """ def take(seq, n): for i in xrange(n): yield seq.next() if not hasattr(seq, 'next'): seq = iter(seq) while True: x = list(take(seq, size)) if x: yield x else: break #}}} def parser_init(url,mapping): for pat, what in group(mapping,2): result = re.compile('^' + pat + '$').match(url) if result: return what, [x for x in result.groups()] return None, None if __name__ == '__main__': mapping = ( 'http://(?:hi|space).baidu.com/([^/]+)(?:/.*)?','baidu', 'http://(\d+).qzone.qq.com(?:/.*)?','qzone', ) (func, args) = parser_init(sys.argv[1],mapping) if func: callback = func if func in globals(): callback = globals()[func] if callable(callback): print callback(*args) else: print 'No parser found.';
希望本文所述對大家的Python程序設(shè)計有所幫助。
相關(guān)文章
python下函數(shù)參數(shù)的傳遞(參數(shù)帶星號的說明)
python中函數(shù)參數(shù)的傳遞是通過賦值來傳遞的。2010-09-09人工智能學(xué)習(xí)pyTorch自建數(shù)據(jù)集及可視化結(jié)果實現(xiàn)過程
這篇文章主要為大家介紹了人工智能學(xué)習(xí)pyTorch自建數(shù)據(jù)集及可視化結(jié)果的實現(xiàn)過程,有需要的朋友可以借鑒參考下,希望能夠有所幫助2021-11-11Python中定時任務(wù)框架APScheduler的快速入門指南
APScheduler是基于Quartz的一個Python定時任務(wù)框架,實現(xiàn)了Quartz的所有功能,使用起來十分方便。下面這篇文章主要跟大家介紹了Python中定時任務(wù)框架APScheduler的快速入門指南,需要的朋友可以參考借鑒,下面來一起看看吧。2017-07-07