0

これはコード スニペットです。

for i in obj:
    url = "someurl" + i
    oars = requests.get(url, timeout=1)
    soup = BeautifulSoup(oars.content)
    fout = open(i + ".html", "wt")
    print((type(soup.prettify)))
    fout.write(oars.text)
    oars.close
    #fout.write(soup.get_text())
    # Still not working, using zsh for now
    if call("html2text " + i + ".html" + ">" + i + ".txt", shell=True) == 0:
        print("yay")
        #call("rm -f " + i + ".html", shell=True)
    else:
        print(i)

しかし、html2text は、出力を適切にパイプするのではなく、空の txt ファイルを作成しているだけです。に置き換えてみましhtml2textelinks -dumpが、役に立ちませんでした。

4

2 に答える 2

0

確かではありませんが、これはあなたが求めているものかもしれません

import subprocess
import sys

outfile = i + ".txt"


cmd = sys.path[0] + "/htmltotext " + i + ".html"

with open(outfile, "w") as output_f:
    p = subprocess.Popen(cmd, stdout=output_f, shell=True)
于 2013-10-31T10:21:07.293 に答える
0

なぜhtml2textPython ライブラリとして使用しないのですか?

h = html2text.HTML2Text()
txt = h.handle(open(infile).read())
于 2013-11-06T13:45:46.913 に答える