import logging import os import google try: import apiclient except ImportError: try: import google_sql google_sql.fix_sys_path(google_sql.GOOGLE_SQL_EXTRA_PATHS) except ImportError: logging.warning( 'Attempt to automatically load Google Cloud SQL dependencies failed! ' 'Ensure that the App Engine SDK directory has been added to your ' 'PYTHONPATH when using this backend.') from apiclient import errors from apiclient import http from apiclient import model import httplib2 from oauth2client import client from oauth2client import file as oauth_file from google.storage.speckle.proto import sql_pb2 from google.storage.speckle.python.api import rdbms
import logging import google try: import apiclient except ImportError: try: import google_sql google_sql.fix_sys_path(include_google_sql_libs=True) except ImportError: logging.warning( 'Attempt to automatically load Google Cloud SQL dependencies failed! ' 'Ensure that the App Engine SDK directory has been added to your ' 'PYTHONPATH when using this backend.') from apiclient import errors from apiclient import http from apiclient import model import httplib2 from oauth2client import client from oauth2client import file as oauth_file from oauth2client import tools from google.storage.speckle.proto import sql_pb2
# See the License for the specific language governing permissions and # limitations under the License. # """Speckle connection module for Google API.""" import logging import google try: import apiclient except ImportError: try: import google_sql google_sql.fix_sys_path(include_google_sql_libs=True) except ImportError: logging.warning( 'Attempt to automatically load Google Cloud SQL dependencies failed! ' 'Ensure that the App Engine SDK directory has been added to your ' 'PYTHONPATH when using this backend.') from apiclient import errors from apiclient import http from apiclient import model import httplib2 from oauth2client import client from oauth2client import file as oauth_file from oauth2client import tools from google.storage.speckle.proto import sql_pb2