Metadata-Version: 2.4
Name: seo_backlink_checker
Version: 0.3.1
Summary: A simple SEO backlink checker package with CLI (bulk support)
Author-email: Amal Alexander <amalalex95@gmail.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Requires-Dist: beautifulsoup4
Dynamic: license-file

# SEO Backlink Checker

A simple Python package + CLI to check backlinks on web pages.

## Install (local)

```bash
pip install .
```

## Usage (Python)

```python
from seo_backlink_checker import check_backlink

result = check_backlink("https://example.com", "example.com")
print(result)
```

## Usage (CLI)

### Single URL

```bash
backlink-check example.com https://example.com
```

### Multiple URLs

```bash
backlink-check example.com https://site1.com https://site2.com
```

### From file

```bash
backlink-check example.com urls.txt --output results.json
```
