Skip to main content

google_trans_new but it is async!

Project description

async_google_trans_new

PyPI - Version PyPI - Downloads

This is a library based on google_trans_new but it is async!
It's very easy to use and solve the problem that the old api which use tk value cannot be used.
This interface is for academic use only, please do not use it for commercial use.


Installation

Run this:

pip install async-google-trans-new

Basic Usage

Translate

import asyncio
import async_google_trans_new


async def coro():
    g = async_google_trans_new.AsyncTranslator()
    print(await g.translate("こんにちは、世界!","en"))

loop = asyncio.get_event_loop()
loop.run_until_complete(coro())
-> Hello world!

Advanced Usage

Translate

Multi Translate

import asyncio
from async_google_trans_new import AsyncTranslator


async def coro():
    g = AsyncTranslator()
    texts = ["こんにちは、世界!", "こんばんは、世界!", "おはよう、世界!"]
    gathers = []
    for text in texts:
    	gathers.append(g.translate(text, "en"))

    print(await asyncio.gather(*gathers))

loop = asyncio.get_event_loop()
loop.run_until_complete(coro())
-> ['Hello World! ', 'Good evening, the world! ', 'Good morning, the world! ']

Prerequisites

  • Python 3.8 (Please make GitHub issue if you can use this lib on different python version)
  • aiohttp
  • urllib3

License

Please see LICENSE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

async_google_trans_new-1.4.6-py3-none-any.whl (12.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page