我正在尝试将现有 URL 作为参数传递以将其 HTML 加载到单个txt
文件中:
for line in open('C:\Users\me\Desktop\URLS-HERE.txt'):
if line.startswith('http') and line.endswith('html\n') :
fichier = open("C:\Users\me\Desktop\other.txt", "a")
allhtml = urllib.urlopen(line)
fichier.write(allhtml)
fichier.close()
但我收到以下错误:
TypeError: expected a character buffer object