摘要: python3 调用 beautifulSoup 进行简单的网页处理 from bs4 import BeautifulSoupfile = open('index.html','r',encoding='utf-16-le') #此处有坑!!!soup = BeautifulSoup(file,'lxml')print (soup) # 打印读出的内容print ('\n ---------... 阅读全文
posted @ 2017-05-18 11:31 extendswind 阅读(371) 评论(0) 推荐(0) 编辑