摘要: import re,osdef org(path=os.getcwd(),fs=None,preview=True): fs = fs or [] for root,dirs,files in os.walk(path): for f in files: if f[-4:]=='html': fp=os.path.join(root,f) s=open(fp,encoding='u8').read() for func in fs: ... 阅读全文
posted @ 2014-02-20 16:09 LisPythoniC 阅读(257) 评论(0) 推荐(0) 编辑