Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bennyscripts/python-translator

A python library to translate text from one language to another.
https://github.com/bennyscripts/python-translator

Last synced: about 15 hours ago
JSON representation

A python library to translate text from one language to another.

Awesome Lists containing this project

README

        

# python-translator
A python library to translate text from one language to another.

### Why use this?
> It uses the Google API, showing the best results. And unlike other repos, does not require an API key to operate.

### Install
> ```bash
> $ pip install python-translator
> ```

> ### Example
> ```python
> from python_translator import Translator
>
> translator = Translator()
> result = translator.translate("Hello world!", "spanish", "english")
>
> print(result)
> ```