refactor: replace's Selector inpt (text/body) with 1 argument called content

This commit is contained in:
Karim shoair
2025-07-29 06:08:15 +03:00
parent 9e9ba9ab10
commit b9c7a5af2e
5 changed files with 30 additions and 42 deletions
+1 -1
View File
@@ -80,7 +80,7 @@ def test_scrapling():
@benchmark
def test_parsel():
return Selector(text=large_html).css(".item::text").extract()
return Selector(content=large_html).css(".item::text").extract()
@benchmark