标签: 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来应用它?