Skip to main content

sogou translate for free

Project description

sogou-tr-free PyPI versionLicense: MITCode style: black

Sogou translate for free -- no more local cache (looks like there is some problem with the requests_cache package, will take a close look later), throttling (1.5 calls/s from 1001st call on). Let's hope it lasts.

Installation

pip install -U sogou-tr-free

or

  • Install (pip or whatever) necessary requirements, e.g. pip install requests requests_cache jmespath fuzzywuzzy or pip install -r requirements.txt
  • Drop the file sogou_tr.py in any folder in your PYTHONPATH (check with import sys; print(sys.path)
  • or clone the repo (e.g., git clone https://github.com/ffreemt/sogou-tr-free.git or download https://github.com/ffreemt/sogou-tr-free/archive/master.zip and unzip) and change to the sogou-tr-free folder and do a python setup.py develop

Usage

from sogou_tr import sogou_tr
print(sogou_tr('hello world'))  # -> '你好世界'
print(sogou_tr('hello world', to_lang='de'))  # -> 'Hallo Welt'
print(sogou_tr('hello world', to_lang='fr'))  # -> 'Salut tout le monde'
print(sogou_tr('hello world', to_lang='ja'))  # ->'ハローワールド'

Speedup

For each request made by sogou_tr, a vlaid SNUID is reqired. It takes time to acquire a SNUID, however. On the other hand, the SNUID can be used for a certain time period.

Hence, sogout_tr has a parameter to control whether to update SNUID or not. The parameter is, well, called update_snuid. By default, update_snuid=True. You can turn it off to speed things up:

text = "test 1232"
res = sogou_tr(text, update_snuid=False)

How do we know the SNUID is still valid? sogou_tr will throw an Exception("sogou server likely acting up") when the SNUID is no longer valid. Therefore, we might do something like this:

text = "test 1232"
try:
    res = sogou_tr(text, update_snuid=False)
except Exception as exc:
    if "server likely acting up" in str(exc):
        res = sogou_tr(text, update_snuid=True)

Project details


Download files

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

Source Distribution

sogou-tr-free-0.0.9a0.tar.gz (8.2 kB view details)

Uploaded Source

File details

Details for the file sogou-tr-free-0.0.9a0.tar.gz.

File metadata

  • Download URL: sogou-tr-free-0.0.9a0.tar.gz
  • Upload date:
  • Size: 8.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.0.0 requests-toolbelt/0.8.0 tqdm/4.43.0 CPython/3.6.7

File hashes

Hashes for sogou-tr-free-0.0.9a0.tar.gz
Algorithm Hash digest
SHA256 c5e8b9459eb421b43a652be228d60ffcdb4327732db12ae4884b813df2372951
MD5 af17cd9e90e020ab2dae6f8bfd2269b1
BLAKE2b-256 d69174c88319ae641bab0ffb608701e9acd4e4e60905e8fffe2b3d6e119966cf

See more details on using hashes here.

Supported by

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