You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
363 B
13 lines
363 B
# Set up the system so that this development
|
|
# version of google-api-python-client is run, even if
|
|
# an older version is installed on the system.
|
|
#
|
|
# To make this totally automatic add the following to
|
|
# your ~/.bash_profile:
|
|
#
|
|
# export PYTHONPATH=/path/to/where/you/checked/out/googleapiclient
|
|
import sys
|
|
import os
|
|
|
|
sys.path.insert(0, os.path.dirname(__file__))
|