Metadata-Version: 2.4
Name: bhashini-client
Version: 0.1.2
Summary: A Python client for interacting with Bhashini inference services (ASR, NMT, TTS).
Home-page: https://github.com/your-org/bhashini-client
Author: Sai
Author-email: digitalindiabhashinidivision@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# bhashini-client

A simple Python client library for interacting with [Bhashini](https://bhashini.gov.in/) inference APIs.  
Currently supports:
- **ASR** (Automatic Speech Recognition)
- **NMT** (Machine Translation)
- **TTS** (Text-to-Speech)

---

## 🚀 Installation

```bash
pip install bhashini-client
```

## Example Usage
```bash
from bhashini_client import BhashiniClient
client = BhashiniClient(api_key="api-key")
print(client.asr("audio url", "source Language"))
print(client.nmt("input text", "source Language", "Target Language"))
