一个小蟒蛇爬虫拼图
Posted
技术标签:
【中文标题】一个小蟒蛇爬虫拼图【英文标题】:a small python crawler puzzle 【发布时间】:2020-06-19 06:45:51 【问题描述】:我的代码:
import requests
from parsel import Selector
url = 'https://www.vmall.com/product/10086763808943.html?cid=99844'
resp = requests.get(url)
# print(resp.text)
sel = Selector(resp.text)
res = sel.css('#pro-name::text').extract()
print(res)
谁能解释res = sel.css('#pro-name::text').extract()
?为什么我们使用双":"
?
【问题讨论】:
这能回答你的问题吗? What does the double colon (::) mean in CSS? 【参考方案1】:如果我理解正确的话,那一行就是 CSS 样式。之前有人问过类似的问题:
What does the double colon (::) mean in CSS?
【讨论】:
以上是关于一个小蟒蛇爬虫拼图的主要内容,如果未能解决你的问题,请参考以下文章