ネットに紹介されていたプログラムですが
以下のエラーが出てしまいます
パスを指定しても治りませんでしたtt
よろしくお願いします
Python 2.7.13
Authentication successful.
Traceback (most recent call last):
File "upload_image2.py", line 8, in <module>
f.SetContentFile('test.jpg')
File "/home/pi/.local/lib/python2.7/site-packages/pydrive/files.py", line 169, in SetContentFile
self.content = open(filename, 'rb')
IOError: [Errno 2] No such file or directory: 'test.jpg'
ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー
/#-- coding: utf-8 --
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
gauth = GoogleAuth()
gauth.CommandLineAuth()
drive = GoogleDrive(gauth)
f = drive.CreateFile({'title':'test.jpg','mimeType':'image/jpeg'})
f.SetContentFile('test.jpg')
f.Upload()
print(f['title'], f['id'])
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/11/10 03:32
2019/11/10 05:55
2019/11/10 06:26
2019/11/10 06:29
2019/11/11 00:02
2019/11/11 00:03
2019/11/11 15:15