-
Notifications
You must be signed in to change notification settings - Fork 32
/
gDrive_download.py
420 lines (296 loc) · 12.7 KB
/
gDrive_download.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#
# gDrive_download.py
#
# Recursively enumerates a google drive directory, optionally downloading all the
# files in that directory. These are two separate steps; files are enumerated
# and written to file before anything is downloaded. If you only want to connect
# file names and gDrive GUIDs, you don't need to download anything.
#
# Uses the PyDrive library to talk to google drive, and assumes you've created a
# .json file with your secret key to access the drive, following this tutorial
# verbatim:
#
# https://gsuitedevs.github.io/PyDrive/docs/build/html/quickstart.html#authentication
#
# It can take a few tries to run this on large data sets (in particular to
# retry failed downloads a semi-arbitrary number of times), so this isn't
# entirely meant to be run from scratch; I'd say I ran this semi-interactvely.
#
# Note that gDrive caps free access at 1000 queries / 100 seconds / user =
# 10 queries / second. You may get slightly faster access than that in practice, but
# not much.
#
# dan@microsoft.com
#
#%% Imports
import time
import datetime
import json
import os
import csv
from pydrive.auth import GoogleAuth
from multiprocessing.pool import ThreadPool
from pydrive.drive import GoogleDrive
import humanfriendly
#%% Configuration and constants
# Should we actually download images, or just enumerate images?
downloadImages = 1
# Set to 'errors' when you've already downloaded most of the files and are just
# re-trying failures
#
# 'all','errors','ifnecessary'
enumerationMode = 'ifnecessary'
# The GUID for the top-level folder
parentID = ''
# client_secrets.json lives here
clientSecretsPath = r'd:\git\ai4edev\dan\danMisc'
# Limits the number of files we enumerate (for debugging). Set to -1 to enumerate
# all files.
maxFiles = -1
# This can be empty if we're not writing images
imageOutputDir = r'f:\video'
# When duplicate folders exist, should we merge them? The alternative is
# renaming the second instance of "blah" to "blah (1)". My experience has been
# that the gDrive sync behavior varies with OS; on Windows, renaming occurs, on MacOS,
# folders are merged.
bMergeDuplicateFolders = True
#%% Derived constants
# Change to the path where the client secrets file lives, to simplify auth
os.chdir(clientSecretsPath)
# Create a datestamped filename to which we'll write all the metadata we
# retrieve when we crawl the gDrive.
metadataOutputDir = os.path.join(imageOutputDir,'metadata_cache')
os.makedirs(metadataOutputDir,exist_ok=True)
metadataFileBase = os.path.join(metadataOutputDir,'imageMetadata.json')
dateStamp = datetime.datetime.now().strftime('%Y.%m.%d.%H.%M.%S')
name, ext = os.path.splitext(metadataFileBase)
metadataFile = "{}.{}{}".format(name,dateStamp,ext)
# List of files we need to download, just filename and GUID. This .csv
# file is written by the enumeration step.
downloadListFileBase = os.path.join(metadataOutputDir,'downloadList.csv')
name, ext = os.path.splitext(downloadListFileBase)
downloadListFile = "{}.{}{}".format(name,dateStamp,ext)
# List of download errors
errorListFileBase = os.path.join(metadataOutputDir,'enumerationErrors.csv')
name, ext = os.path.splitext(errorListFileBase)
errorListFile = "{}.{}{}".format(name,dateStamp,ext)
# If we are running in "errors" mode, this is the list of directories we want to re-try
errorListFileResume = os.path.join(metadataOutputDir,r"enumerationErrors.csv")
assert (not downloadImages) or (not len(imageOutputDir)==0), 'Can\'t have empty output dir if you\'re downloading images'
# Only applies to downloading; enumeration is not currently multi-threaded
nThreads = 10
#%% Authenticate
gauth = GoogleAuth()
gauth.LocalWebserverAuth()
drive = GoogleDrive(gauth)
#%% Enumerate files for download (functions)
class DataEnumerator:
nFiles = 0
nFolders = 0
errors = []
fileInfo = []
downloadList = []
def PrepareFolderDownload(folderID,folderTargetDir,dataEnumerator=None):
'''
Enumerate files and directories in a single folder, specified by the GUID
folderID. Will be called once for every folder we encounter. Does not make
recursive calls.
'''
if dataEnumerator == None:
dataEnumerator = DataEnumerator()
try:
fileList = drive.ListFile({'q': "'%s' in parents and trashed=false" % folderID}).GetList()
except Exception as ex:
# ex = sys.exc_info()[0]
errorString = str(ex)
print("Error listing directory {}:{}:{}".format(folderTargetDir,folderID,errorString))
dataEnumerator.errors.append( ['folder',folderTargetDir,folderID,errorString] )
return dataEnumerator
titles = set()
# Handle redundant directory names
for f in fileList:
title = f['title']
nRenames = 0
if title in titles:
nRenames = nRenames + 1
if bMergeDuplicateFolders:
print("Warning: folder conflict at {}/{}".format(folderTargetDir,title))
else:
# Try to rename folders and files the way the gDrive sync app does, i.e. if there are
# two files called "Blah", we want "Blah" and "Blah (1)".
newTitle = title + " ({})".format(nRenames)
print("Renaming {} to {} in [{}]".format(title,newTitle,folderTargetDir))
title = newTitle
f['title'] = title
else:
titles.add(title)
# ...for every file in our list (handling redundant directory names)
# Enumerate and process files in this folder
for f in fileList:
if maxFiles > 0 and dataEnumerator.nFiles > maxFiles:
return dataEnumerator
dataEnumerator.fileInfo.append(f)
title = f['title']
if f['mimeType']=='application/vnd.google-apps.folder': # if folder
dataEnumerator.nFolders = dataEnumerator.nFolders + 1
# Create the target directory if necessary
outputDir = os.path.join(folderTargetDir,title)
f['target'] = outputDir
if downloadImages:
if not os.path.exists(outputDir):
os.mkdir(outputDir)
print("Enumerating folder {} to {}".format(title,outputDir))
# Recurse
dataEnumerator = PrepareFolderDownload(f['id'],outputDir,dataEnumerator)
else:
dataEnumerator.nFiles = dataEnumerator.nFiles + 1
targetFile = os.path.join(folderTargetDir,title)
f['target'] = targetFile
print("Downloading file {} to {}".format(title,targetFile))
dataEnumerator.downloadList.append( [targetFile,f['id']] )
# ...for each file in this folder
return dataEnumerator
# ... def PrepareFolderDownload
#%% Enumerate files for download (execution)
startTime = time.time()
if (enumerationMode == 'ifnecessary') and (os.path.exists(downloadListFile)):
downloadList = []
with open(downloadListFile) as csvfile:
r = csv.reader(csvfile)
for iRow,row in enumerate(r):
if maxFiles > 0 and iRow > maxFiles:
break
else:
downloadList.append(row)
print("Read {} downloads from {}".format(len(downloadList),downloadListFile))
else:
dataEnumerator = None
if enumerationMode == 'errors':
splitLines = []
assert(os.path.isfile(errorListFileResume))
# Read the error file
# For each line in the input file
with open(errorListFileResume) as f:
rows = csv.reader(f)
for iRow,row in enumerate(rows):
splitLines.append(row)
# Lines look like:
#
# ['folder',folderTargetDir,folderID,errorString]
for iRow,row in enumerate(splitLines):
targetDir = row[1]
folderID = row[2]
errorString = row[3]
print('Re-trying folder ID {} ({})'.format(targetDir,folderID))
dataEnumerator = PrepareFolderDownload(folderID,targetDir)
# Either we're in 'all' mode or we're in 'ifnecessary' mode and enumeration is necessary
else:
print("Starting enumeration")
startTime = time.time()
dataEnumerator = PrepareFolderDownload(parentID,imageOutputDir)
elapsed = time.time() - startTime
print("Finished enumeration in {}".format(str(datetime.timedelta(seconds=elapsed))))
print("Enumerated {} files".format(len(dataEnumerator.downloadList)))
s = json.dumps(dataEnumerator.fileInfo)
with open(metadataFile, "w+") as f:
f.write(s)
print("Finished writing metadata to {}".format(metadataFile))
with open(downloadListFile,'w+') as f:
for fileInfo in dataEnumerator.downloadList:
f.write(",".join(fileInfo) + "\n")
print("Finished writing download list to {}".format(downloadListFile))
with open(errorListFile,'w+') as f:
for e in dataEnumerator.errors:
f.write(",".join(e) + "\n")
print("Finished writing error list ({} errors) to {}".format(len(dataEnumerator.errors),errorListFile))
elapsed = time.time() - startTime
print("Done enumerating files in {}".format(humanfriendly.format_timespan(elapsed)))
downloadList = dataEnumerator.downloadList
# if/else on enumeration modes
#%% Compute total download size
import tqdm
import humanfriendly
sizeBytes = 0
for f in tqdm.tqdm(dataEnumerator.fileInfo):
if 'fileSize' in f:
sizeBytes = sizeBytes + int(f['fileSize'])
print('Total download size is {} in {} files'.format(
humanfriendly.format_size(sizeBytes),len(dataEnumerator.fileInfo)))
#%% Download images (functions)
import sys
def ProcessDownload(fileInfo):
status = 'unknown'
targetFile = fileInfo[0]
if os.path.exists(targetFile):
print("Skipping download of file {}".format(targetFile))
status = 'skipped'
return status
id = fileInfo[1]
try:
f = drive.CreateFile({'id': id})
title = f['title']
except:
print("File creation error for {}".format(targetFile))
status = 'create_error'
return status
print("Downloading file {} to {}".format(title,targetFile))
try:
f.GetContentFile(targetFile)
status = 'success'
return status
except:
print("Download error for {}: {}".format(targetFile,sys.exc_info()[0]))
status = 'download_error'
return status
def ProcessDownloadList(downloadList):
pool = ThreadPool(nThreads)
# results = pool.imap_unordered(lambda x: fetch_url(x,nImages), indexedUrlList)
results = pool.map(ProcessDownload, downloadList)
# for iFile,fileInfo in enumerate(downloadList):
# ProcessDownload(fileInfo)
return results
#%% Download images (execution)
if downloadImages:
print('Downloading data...')
# results = ProcessDownloadList(downloadList[1:10])
results = ProcessDownloadList(downloadList)
print('...done.')
#%% Scrap
if False:
#%% List files
from pydrive.drive import GoogleDrive
drive = GoogleDrive(gauth)
file_list = drive.ListFile({'q': "'root' in parents and trashed=false"}).GetList()
for file1 in file_list:
print('title: %s, id: %s' % (file1['title'], file1['id']))
#%% List a particular directory
from pydrive.drive import GoogleDrive
drive = GoogleDrive(gauth)
folder_id = 'blahblahblah'
q = {'q': "'{}' in parents and trashed=false".format(folder_id)}
file_list = drive.ListFile(q).GetList()
for iFile,f in enumerate(file_list):
print('{}: {}, id: {}'.format(iFile,f['title'],f['id']))
#%% Recursive list
from pydrive.drive import GoogleDrive
drive = GoogleDrive(gauth)
def ListFolder(parentID,fileListOut=None):
if fileListOut is None:
fileListOut = []
parentList = drive.ListFile({'q': "'%s' in parents and trashed=false" % parentID}).GetList()
for f in parentList:
if len(fileListOut) > maxFiles:
return fileListOut
if f['mimeType']=='application/vnd.google-apps.folder': # if folder
title = f['title']
print("Enumerating folder {}".format(title))
childFiles = ListFolder(f['id'],fileListOut)
print("Enumerated {} files".format(len(childFiles)))
fileListOut = fileListOut + childFiles
# fileListOut.append({"id":f['id'],"title":f['title'],"list":})
else:
fileListOut.append(f['title'])
return fileListOut
parent = -1;
file_list = ListFolder(parent)
print("Enumerated {} files".format(len(file_list)))