File "c:/Users/星河/Desktop/开源爬虫/ITcast - 副本/ITcast/spiders/itcast.py", line 30 name = node.xpath("./div[@class="channel-detail movie-item-title"]/a/text()").extract()
时间: 2023-07-18 10:28:03 浏览: 97
itcast-tools-1.4.2.zip_itcast-tools-1.4.2_itcast.tools_验证码
5星 · 资源好评率100%
这是一个Python代码的错误,可能是因为双引号内嵌套了双引号导致的语法错误。建议使用单引号或者转义符号来解决这个问题,比如将双引号改为单引号:
```
name = node.xpath('./div[@class="channel-detail movie-item-title"]/a/text()').extract()
```
阅读全文