gpt4 book ai didi

python-2.7 - Telegram-bot (telepot api) : Is it possible to send an image directly from URL without saving it

转载 作者:行者123 更新时间:2023-12-03 22:44:50 29 4
gpt4 key购买 nike

我正在使用 python 编写电报机器人 telepot api .我现在被困在我想发送直接来自 URL 而不将其存储在本地的图片的点。 Telepot提供以下发送照片的说明:

>>> f = open('zzzzzzzz.jpg', 'rb')  # some file on local disk
>>> response = bot.sendPhoto(chat_id, f)

现在我正在使用
f = urllib2.urlopen('http://i.imgur.com/B1fzGoh.jpg')
bot.sendPhoto(chat_id, f)

这里的问题是 urllib2.urlopen('url')为我提供类似文件的对象,例如:
<addinfourl at 140379102313792 whose fp = <socket._fileobject object at 0x7fac8e86d750>>
并且不喜欢 open('myFile.jpg', 'rb')一个文件对象,如:
<open file 'app-root/runtime/repo/myImage.jpg', mode 'rb' at 0x7fac8f322540>
如果我在 sendPhoto() 中发送类似文件的对象,我会收到以下错误:
回溯(最近一次调用最后一次):
[Wed Feb 10 06:21:09 2016] [error]   File "/var/lib/openshift/56b8e2787628e1484a00013e/python/virtenv/lib/python2.7/site-packages/telepot/__init__.py", line 340, in handle
[Wed Feb 10 06:21:09 2016] [error] callback(update['message'])
[Wed Feb 10 06:21:09 2016] [error] File "/var/lib/openshift/56b8e2787628e1484a00013e/app-root/runtime/repo/moviequiz_main.py", line 35, in handle
[Wed Feb 10 06:21:09 2016] [error] response = bot.sendPhoto(chat_id, gif)
[Wed Feb 10 06:21:09 2016] [error] File "/var/lib/openshift/56b8e2787628e1484a00013e/python/virtenv/lib/python2.7/site-packages/telepot/__init__.py", line 230, in sendPhoto
[Wed Feb 10 06:21:09 2016] [error] return self._sendFile(photo, 'photo', p)
[Wed Feb 10 06:21:09 2016] [error] File "/var/lib/openshift/56b8e2787628e1484a00013e/python/virtenv/lib/python2.7/site-packages/telepot/__init__.py", line 226, in _sendFile
[Wed Feb 10 06:21:09 2016] [error] return self._parse(r)
[Wed Feb 10 06:21:09 2016] [error] File "/var/lib/openshift/56b8e2787628e1484a00013e/python/virtenv/lib/python2.7/site-packages/telepot/__init__.py", line 172, in _parse
[Wed Feb 10 06:21:09 2016] [error] raise BadHTTPResponse(response.status_code, response.text)
[Wed Feb 10 06:21:09 2016] [error] BadHTTPResponse: (414, u'<html>\\r\\n<head><title>414 Request-URI Too Large</title></head>\\r\\n<body bgcolor="white">\\r\\n<center><h1>414 Request-URI Too Large</h1></center>\\r\\n<hr><center>nginx/1.9.1</center>\\r\\n</body>\\r\\n</html>\\r\\n')

有一个 different telegram-bot project provided here 的解决方案他们在哪里发送 urllib2.urlopen('url').read()回到电报,但在我的情况下,这会产生与没有 .read() 相同的错误。

我怎样才能从 url 获取文件作为文件对象(最好不要在本地保存它)?
或者如何从 urlopen() 提供的“类文件对象”中获取“文件对象”?

谢谢你的帮助 :)

最佳答案

在当前 Bot Api 2.3.1 , 您可以简单地将文件的 url 发送到服务器:

bot.sendPhoto(chat_id, "http://i.imgur.com/B1fzGoh.jpg");

就是这样。

你甚至不需要下载它, Telegram会自己上传。

关于python-2.7 - Telegram-bot (telepot api) : Is it possible to send an image directly from URL without saving it,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35314526/

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