Metadata-Version: 2.1
Name: etranslate
Version: 0.0.3
Summary: etranslate is a free and unlimited python library for translate your texts
Home-page: https://github.com/ixabolfazl/etranslate
Author: Abolfazl Khalili
Author-email: kabolfazl39@gmail.com.org
License: MIT
Keywords: translate
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Education
Classifier: Operating System :: Microsoft :: Windows :: Windows 10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# Etranslate

[![python](https://img.shields.io/static/v1?label=python+&message=3.7%2B&color=blue)](https://img.shields.io/static/v1?label=python+&message=3.7%2B&color=blue) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![PyPI version](https://badge.fury.io/py/etranslate.svg)](https://badge.fury.io/py/etranslate)

**Etranslate** is a **free** and **unlimited** python library for transiting your texts 

## Install it

```shell
#to install:
pip install etranslate

# to upgrade:
pip install etranslate -U

```

## Features
-  Fast and reliable - it uses `Google translate`
-  Auto language detection
-  Bulk translations


## Use it

The quality from this service is not as good as web google translate. There is nothing we can do about it.

It's unclear whether your ip will be blocked if you relentlessly use the service. Please feedback should you find out any information.

```python
from etranslate import translate

# Translate to English by default
translate("Hallo Welt!")  # 'Hello world!'

translate("Hello world!", to="fa")  # '!Ø³Ù„Ø§Ù… Ø¯Ù†ÛŒØ§'
translate("Hello world!", to="de")  # 'Hallo Welt!'
translate("Hello world!", src="en", to="fa")  # '!Ø³Ù„Ø§Ù… Ø¯Ù†ÛŒØ§'
```

## Requirements

```
Python >=3.7
requests
```


## Disclaimer

``Etranslate`` makes use of a translate interface floating around the net and is for study and research purpose only.

 The interface may become invalid without notice, which would render ``Etranslate`` completely useless.

## Licenses

This project is licensed under the MIT License - see the [LICENSE](https://github.com/ixabolfazl/etranslate/LICENSE) file for details


## Change log
```
0.0.1 (23/8/2021)
-------------------
- First Release

0.0.2 (23/8/2021)
-------------------
- fix some problems

0.0.3 (23/8/2021)
-------------------
- fix README.md
```

