开发者

how to save the output to a text file for a python script?

开发者 https://www.devze.com 2022-12-22 06:29 出处:网络
I\'m trying to make it so this script from BeautifulSoup import BeautifulSoup import sys, re, urllib2 import codecs

I'm trying to make it so this script

from BeautifulSoup import BeautifulSoup
import sys, re, urllib2
import codecs

html_str = urllib2.urlopen(URL).read()

soup = Beau开发者_JAVA百科tifulSoup(html_str)

for row in soup.findAll("tr"): 
  for col in row.findAll(re.compile("td|th")):
    for 
    sys.stdout.write((col.string if col.string else '') + '|') 
  print # Newline

sends it's output to a text file instead.


Easiest? (if *nix):-

python file.py > filename.txt

Code wise though:-

from BeautifulSoup import BeautifulSoup
import sys, re, urllib2
import codecs

html_str = urllib2.urlopen(URL).read()

soup = BeautifulSoup(html_str)

file = open('file.txt', 'w')

for row in soup.findAll("tr"): 
  for col in row.findAll(re.compile("td|th")):
    file.write((col.string if col.string else '') + '|') 

file.close()
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号