Gdrive optional

This commit is contained in:
Jack Darlington 2017-03-16 23:36:37 +00:00
parent b352bbfd14
commit 3916205a95
3 changed files with 15 additions and 6 deletions

View File

@ -1,5 +1,8 @@
try:
from pydrive.auth import GoogleAuth
from pydrive.drive import GoogleDrive
except ImportError:
pass
import os, time
from ub import config

View File

@ -35,7 +35,10 @@ import shutil
import requests
import zipfile
from tornado.ioloop import IOLoop
try:
import gdriveutils as gd
except ImportError:
pass
import web
try:

View File

@ -1,6 +1,11 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
try:
from pydrive.auth import GoogleAuth
from googleapiclient.errors import HttpError
gdrive_support= True
except ImportError:
gdrive_support=False
import mimetypes
import logging
@ -56,8 +61,6 @@ import io
import hashlib
import threading
from googleapiclient.errors import HttpError
from tornado import version as tornadoVersion
try: