码迷,mamicode.com
首页 > 编程语言 > 详细

Python BeautifuSoup4 爬表格

时间:2014-09-12 23:35:24      阅读:582      评论:0      收藏:0      [点我收藏+]

标签:os   ar   for   sp   on   html   c   line   ad   

# -*-coding:utf-8-*-

import os
import sys
from bs4 import BeautifulSoup

reload(sys)
sys.setdefaultencoding("utf-8")
fp = open(‘txt.txt‘,‘a‘)
for i in range(3):
    path = sys.argv[1]
    s = path + str(i+1) +‘.html‘
    html_doc = open(str(s))
    soup = BeautifulSoup(html_doc)

    for tabb in soup.find_all(‘tr‘):
        print
        for tdd in tabb.find_all(‘td‘):
#            print tdd.get_text()+",",
            fp.writelines(tdd.get_text()+‘,‘)
        fp.writelines(‘\n‘)         
fp.close()


Python BeautifuSoup4 爬表格

标签:os   ar   for   sp   on   html   c   line   ad   

原文地址:http://my.oschina.net/frostz/blog/313101

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!