在提取 HTML 图像后,我需要一些关于如何使用 Python 3.01 计算 HTML 图像的反馈,也许我的正则表达式没有正确使用。
这是我的代码:
import re, os
import urllib.request
def get_image(url):
url = 'http://www.google.com'
total = 0
try:
f = urllib.request.urlopen(url)
for line in f.readline():
line = re.compile('<img.*?src="(.*?)">')
if total > 0:
x = line.count(total)
total += x
print('Images total:', total)
except:
pass