Metadata-Version: 2.1
Name: edgetrans
Version: 0.2.2
Summary: Add your description here
Author-email: am230 <111672334+am230@users.noreply.github.com>
Requires-Python: >=3.12
Requires-Dist: aiohttp>=3.9.3
Description-Content-Type: text/markdown

# edgetrans

Describe your project here.

## Installation

```bash
pip install edgetrans
```

## Usage

```python
import asyncio
from edgetrans import EdgeTranslator

async def main():
    translator = await EdgeTranslator.create()
    response = await translator.translate("hello", "ja")
    print(response) # [('こんにちは', 'en')]

asyncio.run(main())
```
