UlionTse

Results 46 comments of UlionTse

@mercuree It Has little effect. If you think some modules have been updated, you can restore the updated modules after downloading.

@Seraphli OK, thx, I'll debug it. You can also try a parameter `version='v1'`.

@Seraphli Hello friend, At present, the problem of the v2 version still needs to be solved. Baidu's initial translator version is switched to v1 to ensure that it can be...

@kevindragon Bro, this http://ip-api.com/json failed, but thanks

@kevindragon Because I have upgraded new version already, please resubmit PR, I'll merge it , thx.

@FunnySaltyFish it has been fixed. Retry `pip install --upgrade translatos`

Give me the evidence and I will give you the answer. -------- 原始邮件 -------- 发件人: Haofan Wang ***@***.***> 日期: 2021年3月17日周三 17:14 收件人: UlionTse/translators ***@***.***> 抄送: Subscribed ***@***.***> 主 题: [UlionTse/translators]...

@haofanwang Sorry for the late reply. It is confirmed that some of the request parameters (seemingly unnecessary) are missing, which results in inconsistency with the results returned by the webpage....

@haofanwang Hi, friend There is no update at present, because the root of the problem has not been found yet. I suggest you use `ts.bing()` or `ts.sogou()` instead of `ts.google()`...

```python import time from timeout_decorator import * @timeout(5) def mytest(message): print(message) for i in range(1,10): time.sleep(1) print('{} seconds have passed'.format(i)) def main(): try: mytest('starting') except TimeoutError: print('whatever You want') if...