do the pep8 dance
This commit is contained in:
parent
92d289c00f
commit
1c55509b0c
2 changed files with 10 additions and 4 deletions
|
@ -7,7 +7,6 @@ if sys.version_info < (3, 3):
|
||||||
sys.stderr.write("Sorry, requires at least Python 3.3\n")
|
sys.stderr.write("Sorry, requires at least Python 3.3\n")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
||||||
|
|
||||||
import collections
|
import collections
|
||||||
import os
|
import os
|
||||||
import pickle
|
import pickle
|
||||||
|
@ -15,6 +14,7 @@ import shlex
|
||||||
from pydrive.auth import GoogleAuth
|
from pydrive.auth import GoogleAuth
|
||||||
from pydrive.drive import GoogleDrive
|
from pydrive.drive import GoogleDrive
|
||||||
|
|
||||||
|
|
||||||
try:
|
try:
|
||||||
with open(os.path.expanduser('~/.local/share/drive-download/seen.pickle'), 'rb') as f:
|
with open(os.path.expanduser('~/.local/share/drive-download/seen.pickle'), 'rb') as f:
|
||||||
seen = pickle.load(f)
|
seen = pickle.load(f)
|
||||||
|
@ -26,15 +26,16 @@ gauth.CommandLineAuth()
|
||||||
|
|
||||||
drive = GoogleDrive(gauth)
|
drive = GoogleDrive(gauth)
|
||||||
|
|
||||||
|
|
||||||
def folder_id(folder_name):
|
def folder_id(folder_name):
|
||||||
query = "title = '%s'" % folder_name
|
query = "title = '%s'" % folder_name
|
||||||
file1 = drive.ListFile({'q': query}).GetList()[0]
|
file1 = drive.ListFile({'q': query}).GetList()[0]
|
||||||
assert file1['mimeType'] == 'application/vnd.google-apps.folder'
|
assert file1['mimeType'] == 'application/vnd.google-apps.folder'
|
||||||
return file1['id']
|
return file1['id']
|
||||||
|
|
||||||
file_list = drive.ListFile(
|
|
||||||
{'q': "'%s' in parents and trashed=false" % folder_id(FOLDER)}
|
file_query = "'%s' in parents and trashed=false" % folder_id(FOLDER)
|
||||||
).GetList()
|
file_list = drive.ListFile({'q': file_query}).GetList()
|
||||||
|
|
||||||
file_names = [f['title'] for f in file_list]
|
file_names = [f['title'] for f in file_list]
|
||||||
file_names_dupes = [f for f, count in collections.Counter(file_names).items() if count > 1]
|
file_names_dupes = [f for f, count in collections.Counter(file_names).items() if count > 1]
|
||||||
|
@ -60,3 +61,5 @@ for file1 in file_list:
|
||||||
else:
|
else:
|
||||||
print("{} exists locally!".format(shlex.quote(local_filename)))
|
print("{} exists locally!".format(shlex.quote(local_filename)))
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
|
|
||||||
|
# vim:tw=100:
|
||||||
|
|
3
setup.cfg
Normal file
3
setup.cfg
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
[pep8]
|
||||||
|
ignore = E402
|
||||||
|
max-line-length = 100
|
Loading…
Add table
Add a link
Reference in a new issue