gpt4 book ai didi

python - 将下载的图像转换为单行文件对象

转载 作者:太空宇宙 更新时间:2023-11-04 00:41:34 24 4
gpt4 key购买 nike

这是引用 self 正在使用的 DeathByCaptcha API 文档。

dict deathbycaptcha.Client.decode(file imageFile, int timeout)
dict deathbycaptcha.Client.decode(str imageFileName, int timeout)

它可以接受图像文件的路径或文件对象

我有这行代码。

client.decode(urllib.urlopen('https://example/image.jpg').read(), 30)

但它给我错误,因为 .read() 确实返回了 file-like 对象。

我的偏好是在一行中完成。

有什么方法可以轻松地将 read() 读取的流转换为类文件对象?

如果不能像我们在 PHP 中那样在一行中使用 (string) 100 那么我将接受多行

最佳答案

我不确定urllib.urlopen,但你可以使用urllib2.urlopen获取 file-like 对象的方法,您可以将其传递给 decode 函数。它看起来或多或少像:

client.decode(urllib2.urlopen('https://example/image.jpg'), 30)

编辑:我看了一下 urllib documentation看起来 urllib.urlopen 也返回 file-like 对象。

关于python - 将下载的图像转换为单行文件对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41721898/

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