Metadata-Version: 2.4
Name: bel-selenium-fetcher
Version: 0.1.0
Summary: A simple Selenium-based webpage fetcher for fully rendered HTML
Author-email: Belpheg0r <throwawaytest1801@gmail.com>
Project-URL: Homepage, https://github.com/yourname/selenium-fetcher
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: selenium>=4.0

# selenium-fetcher

Simple Python utility to fetch JavaScript-rendered HTML using Selenium + Firefox.

## Usage

```python
from selenium_fetcher import load_url

load_url(
    url="https://example.com",
    file_name="output.html",
    gecko_driver_path="/path/to/geckodriver"
)
