使用scrapysharp从表中获取数据

时间:2018-08-01 17:00:11

标签: c# web-scraping scrapysharp

我在页面上有数据。

def accepts(g, path):
    return all([g.has_edge(path[i], path[i+1]) for i in range(len(path)-1)])

,并希望在scrapysharp中应用以获取html中的数据

def accepts(g, path):
    return all(map(g.has_edge, path, path[1:]))

我如何使用scrapysharp来应用它?

0 个答案:

没有答案