v0.2.2
What's changed
New features
- Now if you don't want to pass arguments to the generated
Adaptor
object and want to use the default values, you can use this import instead for cleaner codeOtherwise>> from scrapling.default import Fetcher, StealthyFetcher, PlayWrightFetcher >> page = Fetcher.get('https://example.com', stealthy_headers=True)
>> from scrapling import Fetcher, StealthyFetcher, PlayWrightFetcher >> page = Fetcher(auto_match=False).get('https://example.com', stealthy_headers=True)
Bugs Squashed
- Fixed a bug with the
Response
object introduced with patch v0.2.1 yesterday that happened with some cases of nested selecting/parsing.
Note
A friendly reminder that maintaining and improving Scrapling
takes a lot of time and effort which I have been happily doing for months even though it's becoming harder. So, if you like Scrapling
and want it to keep improving, you can help by supporting me through the Sponsor button.