Metadata-Version: 2.4
Name: transforx
Version: 0.18.0
Summary: Simple Python translation library using Google Translate unofficial API.
Home-page: https://github.com/iTs-GoJo/TransforX
Author: ALI
Author-email: thealiapi@gmail.com
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
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

# TransforX 

Simple Python translation library using Google Translate unofficial API.

## Installation

```bash
pip install transforx
```

- - -

## Usage
```python
from transforx import translate

print(translate("سلام دنیا", to_lang="en"))
# Output: Hello World

print(translate(["سلام", "دنیا"], to_lang="en"))
# Output: ['Hello', 'World']
```

- - -

## Features
- Translate a text or a list of texts.
- Auto-detect source languages.
- No Api-Key Requested.

- - -
## LICENSE
The project is published with MIT License.
