标签: python-3.x
我想从驱动器中读取图像并将其转换为二进制格式。我应该如何操作?我使用了这个代码,但是没有得到实际的图像。
link = urllib.request.urlopen("https://drive.google.com/file/d/1CT12YIeF0xcc8cwhBpvR-Oq0AFOABwsw/view?usp=sharing").read() image_base64 = base64.encodestring(link)