Metadata-Version: 2.1
Name: selestium
Version: 0.1.0
Summary: A Python module for web scraping with Selenium and BeautifulSoup
Home-page: https://github.com/09u2h4n/selestium
Author: Oğuzhan Yılmaz
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown

# Selestium

Selestium is a Python module for web scraping with Selenium and BeautifulSoup.

## Installation

You can install Selestium using pip:
` 
pip install selestium
` 

 ## Usage

Here's a simple example of how to use Selestium:

```python
from selestium import HTMLSession

session = HTMLSession(browser='firefox')
response = session.get("https://example.com")
print(response.find("h1").text)
```

For more information, please refer to the [documentation](https://github.com/09u2h4n/selestium)

## License

This project is licensed under the GPL-3.0 License - see the LICENSE file for details.

