ValueError: can only parse strings python
ValueError: can only parse strings python
我正在尝试使用 xpath 收集一堆需要从下一页中删除的链接,但是,我一直收到只能解析字符串的错误?我试着查看 lk 的类型,在我投射后它是一个字符串?似乎出了什么问题?
def unicode_to_string(types):
try:
types = unicodedata.normalize("NFKD", types).encode('ascii', 'ignore')
return types
except:
return types
def getData():
req = "http://analytical360.com/access-points"
page = urllib2.urlopen(req)
tree = etree.HTML(page.read())
i = 0
for lk in tree.xpath('//a[@class="sabai-file sabai-file-image sabai-file-type-jpg "]//@href'):
print "Scraping Vendor #" + str(i)
trees = etree.HTML(urllib2.urlopen(unicode_to_string(lk)))
for ll in trees.xpath('//table[@id="archived"]//tr//td//a//@href'):
final = etree.HTML(urllib2.urlopen(unicode_to_string(ll)))
您应该传入字符串而不是 urllib2.orlopen。
也许像这样更改代码:
trees = etree.HTML(urllib2.urlopen(unicode_to_string(lk)).read())
for i, ll in enumerate(trees.xpath('//table[@id="archived"]//tr//td//a//@href')):
final = etree.HTML(urllib2.urlopen(unicode_to_string(ll)).read())
此外,您似乎没有增加 i
。
我正在尝试使用 xpath 收集一堆需要从下一页中删除的链接,但是,我一直收到只能解析字符串的错误?我试着查看 lk 的类型,在我投射后它是一个字符串?似乎出了什么问题?
def unicode_to_string(types):
try:
types = unicodedata.normalize("NFKD", types).encode('ascii', 'ignore')
return types
except:
return types
def getData():
req = "http://analytical360.com/access-points"
page = urllib2.urlopen(req)
tree = etree.HTML(page.read())
i = 0
for lk in tree.xpath('//a[@class="sabai-file sabai-file-image sabai-file-type-jpg "]//@href'):
print "Scraping Vendor #" + str(i)
trees = etree.HTML(urllib2.urlopen(unicode_to_string(lk)))
for ll in trees.xpath('//table[@id="archived"]//tr//td//a//@href'):
final = etree.HTML(urllib2.urlopen(unicode_to_string(ll)))
您应该传入字符串而不是 urllib2.orlopen。
也许像这样更改代码:
trees = etree.HTML(urllib2.urlopen(unicode_to_string(lk)).read())
for i, ll in enumerate(trees.xpath('//table[@id="archived"]//tr//td//a//@href')):
final = etree.HTML(urllib2.urlopen(unicode_to_string(ll)).read())
此外,您似乎没有增加 i
。