1 # Set up the system so that this development 2 # version of google-api-python-client is run, even if 3 # an older version is installed on the system. 4 # 5 # To make this totally automatic add the following to 6 # your ~/.bash_profile: 7 # 8 # export PYTHONPATH=/path/to/where/you/checked/out/googleapiclient 9 import sys 10 import os 11 12 sys.path.insert(0, os.path.dirname(__file__)) 13