Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/bennyscripts/python-translator
- Owner: bennyscripts
- License: mit
- Created: 2022-03-06T21:14:08.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-13T17:33:25.000Z (almost 3 years ago)
- Last Synced: 2024-12-01T22:50:32.541Z (21 days ago)
- Language: Python
- Size: 2.74 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: license
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)
> ```