Metadata-Version: 2.4
Name: soupsavvy
Version: 1.1.0
Summary: Powerful and flexible web scraping Search Engine
Author: sewcio543
License: MIT License
        
        Copyright (c) 2024 sewcio543
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Repository, https://github.com/sewcio543/soupsavvy
Project-URL: Homepage, https://soupsavvy.readthedocs.io
Keywords: web-scraping,html,soup,bs4,markup,beautifulsoup,css
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: typing_extensions>=4.6.1
Provides-Extra: lxml
Requires-Dist: lxml; extra == "lxml"
Requires-Dist: cssselect; extra == "lxml"
Provides-Extra: bs4
Requires-Dist: beautifulsoup4; extra == "bs4"
Requires-Dist: soupsieve; extra == "bs4"
Provides-Extra: selenium
Requires-Dist: selenium; extra == "selenium"
Dynamic: license-file

![soupsavvy](https://github.com/sewcio543/soupsavvy/blob/main/resources/logo.png?raw=true)
========

## Powerful and flexible web scraping **Search Engine**

[![PyPI](https://img.shields.io/pypi/v/soupsavvy?color=orange)](https://pypi.org/project/soupsavvy/) [![Python Versions](https://img.shields.io/pypi/pyversions/soupsavvy)](https://www.python.org/) [![Codecov](https://codecov.io/gh/sewcio543/soupsavvy/graph/badge.svg?token=RZ51VS3QLB)](https://codecov.io/gh/sewcio543/soupsavvy) [![Docs link](https://img.shields.io/badge/docs-read-blue)](https://soupsavvy.readthedocs.io)

## Table of Contents

- [About](#about)
- [Key features](#key-features)
- [Installation](#installation)
- [Documentation](#documentation)
- [Demos](#demos)
- [Contributing](#contributing)
- [License](#license)
- [Acknowledgements](#acknowledgements)

## About

With many web scraping libraries available, each with unique interfaces and conventions, `soupsavvy` provides conistent and easy way of building selection workflows.

With `soupsavvy`, developers can focus on data extraction workflows instead of wrestling with library-specific quirks and inconsistencies. Eliminate complexity and introduce scalability and maintainability to your web scraping projects.

## Key Features

`soupsavvy` introduces the concept of `Selector`, a declarative, consistent, and reusable search procedure that is based on following principles:

- **Decoupling**: Selection logic is abstracted away from DOM node and traversal implementations.
- **Framework-Agnostic**: Operates consistently with any supported library.
- **Flexibile & Extensibile**: Lightweight, reusable components used to build complex selection workflows.

## Installation

`soupsavvy` is published on PyPi and can be installed via pip:

```bash
pip install soupsavvy
```

## Documentation

Full documentation can be found at **[documentation](https://soupsavvy.readthedocs.io)**.

## Demos

For more information about the package, its concepts and usage, read `Demos` section of the **[documentation](https://soupsavvy.readthedocs.io)**. It's step by step guide to the most important features of the package.

## Contributing

If you'd like to contribute to soupsavvy, feel free to check out the [GitHub repository](https://github.com/sewcio543/soupsavvy) and submit pull requests into one of development branches. Any feedback, bug reports, or feature requests are welcome! In case of any doubts, follow [Contribution Guidelines](https://github.com/sewcio543/soupsavvy/blob/main/CONTRIBUTING.md)

## License

`soupsavvy` is licensed under ![MIT License](https://img.shields.io/badge/license-MIT-green?style=plastic), allowing for both personal and commercial use. See the `LICENSE` file for more information.

-----------------

**Happy scraping!** ✨
