Metadata-Version: 2.4
Name: ekho-scraper-client
Version: 0.1.0
Summary: A Python client for the Ekho scraping service
Author-email: Your Name <you@example.com>
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.0
Dynamic: license-file

# ekho-scraper-client

A Python client for the Ekho scraping service.

## Installation

```bash
pip install ekho-scraper-client
```

## Usage

```python
from ekho import scrape

result = scrape("https://www.ashgrove.com/locations")
print(result)
```

### Environment

You can override the default service endpoint by setting the `EKHO_SCRAPER_ENDPOINT` environment variable:

```bash
export EKHO_SCRAPER_ENDPOINT="https://my.internal.endpoint/scrape"
```

## Development

Build distribution packages:

```bash
pip install --upgrade build twine
python -m build
```

Publish to PyPI:

```bash
twine upload dist/*
```
