Metadata-Version: 2.4
Name: iotype
Version: 1.0.0
Summary: Alias for iotype-ai — the official Python SDK for the iotype API (Persian speech recognition, OCR, translation and text-to-speech).
Project-URL: Homepage, https://iotype.com
Project-URL: Documentation, https://iotype.com/api-service
Project-URL: API Reference, https://iotype.com/api-service/authentication
Project-URL: Pricing, https://iotype.com/plans/api
Project-URL: Source, https://github.com/iotype-ai/iotype-api
Author: iotype
License: MIT
Keywords: asr,farsi,iotype,ocr,persian,speech-to-text,translation,tts
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Multimedia :: Sound/Audio :: Speech
Classifier: Topic :: Text Processing :: Linguistic
Requires-Python: >=3.9
Requires-Dist: iotype-ai>=1.0
Description-Content-Type: text/markdown

# iotype

This is an **alias package**. It installs [`iotype-ai`](https://pypi.org/project/iotype-ai/),
the official Python SDK for the [iotype API](https://iotype.com/api-service).

```bash
pip install iotype        # works — pulls in iotype-ai
pip install iotype-ai     # the canonical name
```

Either way, the import is the same:

```python
from iotype import Iotype

io = Iotype()                                   # reads IOTYPE_TOKEN
print(io.translate("سلام دنیا", "fa", "en"))
```

## What the SDK covers

- [realtime speech-to-text API](https://iotype.com/api-service/speech-to-text) — streaming Persian ASR over WebSocket
- [audio transcription API](https://iotype.com/api-service/transcription) — MP3 to text, with optional summaries
- [Persian OCR API](https://iotype.com/api-service/ocr) — text from scanned PDFs and images
- [translation API](https://iotype.com/api-service/translation) — Persian ⇄ English ⇄ Arabic
- [text-to-speech API](https://iotype.com/api-service/text-to-speech) — eleven Persian voices

Documentation, SDKs for other languages and the OpenAPI spec:
**[github.com/iotype-ai/iotype-api](https://github.com/iotype-ai/iotype-api)**

Get a token at [iotype.com/api-service/authentication](https://iotype.com/api-service/authentication) — new accounts receive 300 free tokens.
