Giter VIP home page Giter VIP logo

Comments (4)

wotanzheng avatar wotanzheng commented on July 29, 2024

for example:《财

from py-googletrans.

wotanzheng avatar wotanzheng commented on July 29, 2024

》has the same error. I think you can review special char list. :)

from py-googletrans.

ssut avatar ssut commented on July 29, 2024

Jsut for the memo here, the deobfuscated code for google translate token generator:

var a = "©×";
for (var result = [], counter = 0, i = 0; i < a.length; i++) {
    var l = a.charCodeAt(i);
    if (128 > l) {
        result[counter++] = l
    } else {
        if (2048 > l) {
            result[counter++] = l >> 6 | 192
        } else {
            if (55296 == (l & 64512) && i + 1 < a.length && 56320 == (a.charCodeAt(i + 1) & 64512)) {
                l = 65536 + ((l & 1023) << 10) + (a.charCodeAt(++i) & 1023)
                result[counter++] = l >> 18 | 240
                result[counter++] = l >> 12 & 63 | 128
            } else {
                result[counter++] = l >> 12 | 224
                result[counter++] = l >> 6 & 63 | 128
            }
        }
        
        result[counter++] = l & 63 | 128
    }
}

console.log(result);

from py-googletrans.

ssut avatar ssut commented on July 29, 2024

Solved this issue with a new release 2.1.2.

from py-googletrans.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.