>> blob=TextBlob(text) >>> blob.translate(to="es") 问题是,我-6ren">
gpt4 book ai didi

python - 为 textblob 设置代理

转载 作者:太空宇宙 更新时间:2023-11-04 03:23:06 25 4
gpt4 key购买 nike

我已经安装了textblob,我想进行简单的翻译。

>>> text="Hello"
>>> blob=TextBlob(text)
>>> blob.translate(to="es")

问题是,我不知道在哪里指定代理身份验证。你能告诉我在哪里指定用户名、密码和代理地址,以便我可以让它工作吗?

最佳答案

我在我的代码中应用了这个技巧,它运行良好。

1) 导入“nltk”库。

2) 在您的代码中插入这一行,根据您的需要替换用户名、密码、代理和端口:

nltk.set_proxy('http://username:password@proxy:port')

现在你的代码看起来像这样:

import textblob

import nltk
from textblob import TextBlob
text="Hello"
blob=TextBlob(text)
nltk.set_proxy('http://username:password@proxy:port')
blob.translate(to="es")
print(blob.translate(to="es"))

关于python - 为 textblob 设置代理,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34036158/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com