Metadata-Version: 2.4
Name: tunr
Version: 0.4.0
Summary: Official Python SDK for tunr — localhost tunneling made simple.
Project-URL: Homepage, https://github.com/ahmetvural79/tunr
Project-URL: Documentation, https://tunr.sh/docs
License: Apache-2.0
Requires-Python: >=3.9
Requires-Dist: httpx>=0.27.0
Description-Content-Type: text/markdown

# tunr Python SDK

Official Python SDK for tunr tunnels.

## Installation

```bash
pip install tunr
```

## Usage

```python
from tunr import TunrClient

client = TunrClient()
tunnel = client.share(port=3000)
print(tunnel.public_url)
# ... do work ...
tunnel.close()
```
