diff --git a/README.md b/README.md index e72bbee..1dd4df0 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # 🕷️ Scrapling: Lightning-Fast, Adaptive Web Scraping for Python -[](https://badge.fury.io/py/scrapling) [](https://pypi.org/project/scrapling/) [](https://opensource.org/licenses/BSD-3-Clause) +[](https://badge.fury.io/py/Scrapling) [](https://pypi.org/project/scrapling/) [](https://opensource.org/licenses/BSD-3-Clause) Dealing with failing web scrapers due to website changes? Meet Scrapling. @@ -37,7 +37,7 @@ products = page.css('.product', auto_match=True) # Still finds them! ## Getting Started -Let's walk through a basic example that demonstrates small group of Scrapling's core features: +Let's walk through a basic example that demonstrates a small group of Scrapling's core features: ```python import requests @@ -431,4 +431,4 @@ This project includes code adapted from: - In the auto-matching save process, the unique properties of the first element from the selection results are the only ones that get saved. So if the selector you are using selects different elements on the page that are in different locations, auto-matching will probably return to you the first element only when you relocate it later. This doesn't include combined CSS selectors (Using commas to combine more than one selector for example) as these selectors get separated and each selector gets executed alone. - Currently, Scrapling is not compatible with async/await. -