标签: scrapy
我对字符串有一个html响应。 我正在尝试从中创建一个HtmlXPathSelector,以便我可以在其上使用xpath。 但它显示,
TypeError: cannot create weak reference to 'str' obj
知道如何将字符串转换为HtmlXPathSelector接受的响应对象吗?
答案 0 :(得分:16)
hxs = HtmlXPathSelector(text="my html")