github D4Vinci/Scrapling v0.2.2

latest releases: v0.4.1, v0.4, v0.3.14...
15 months ago

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 code
    >> from scrapling.default import Fetcher, StealthyFetcher, PlayWrightFetcher
    >> page = Fetcher.get('https://example.com', stealthy_headers=True)
    Otherwise
    >> from scrapling import Fetcher, StealthyFetcher, PlayWrightFetcher
    >> page = Fetcher(auto_match=False).get('https://example.com', stealthy_headers=True)

Bugs Squashed

  1. 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.

Don't miss a new Scrapling release

NewReleases is sending notifications on new releases.