Add google appengine to repo
[frozenviper.git] / google_appengine / tools / bulkload_client.py
blobd28a227bd526b89642a2ed1b920a53df478ba9b4
1 #!/usr/bin/env python
3 # Copyright 2007 Google Inc.
5 # Licensed under the Apache License, Version 2.0 (the "License");
6 # you may not use this file except in compliance with the License.
7 # You may obtain a copy of the License at
9 # http://www.apache.org/licenses/LICENSE-2.0
11 # Unless required by applicable law or agreed to in writing, software
12 # distributed under the License is distributed on an "AS IS" BASIS,
13 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 # See the License for the specific language governing permissions and
15 # limitations under the License.
17 """Convenience wrapper for starting bulkload_client.py"""
20 import os
21 import sys
23 sys.stderr.write("This version of bulkload_client.py has been deprecated; "
24 "please use the version at the root of your Google App "
25 "Engine SDK install.")
27 if not hasattr(sys, 'version_info'):
28 sys.stderr.write('Very old versions of Python are not supported. Please '
29 'use version 2.5 or greater.\n')
30 sys.exit(1)
31 version_tuple = tuple(sys.version_info[:2])
32 if version_tuple < (2, 4):
33 sys.stderr.write('Error: Python %d.%d is not supported. Please use '
34 'version 2.5 or greater.\n' % version_tuple)
35 sys.exit(1)
36 if version_tuple == (2, 4):
37 sys.stderr.write('Warning: Python 2.4 is not supported; this program may '
38 'break. Please use version 2.5 or greater.\n')
40 BULKLOAD_CLIENT_PATH = 'google/appengine/tools/bulkload_client.py'
42 DIR_PATH = os.path.abspath(os.path.dirname(
43 os.path.dirname(os.path.realpath(__file__))))
45 EXTRA_PATHS = [
46 DIR_PATH,
47 os.path.join(DIR_PATH, 'lib', 'django'),
48 os.path.join(DIR_PATH, 'lib', 'webob'),
49 os.path.join(DIR_PATH, 'lib', 'yaml', 'lib'),
52 if __name__ == '__main__':
53 sys.path = EXTRA_PATHS + sys.path
54 script_path = os.path.join(DIR_PATH, BULKLOAD_CLIENT_PATH)
55 execfile(script_path, globals())