-
Notifications
You must be signed in to change notification settings - Fork 24
/
appengine_console.py
40 lines (30 loc) · 973 Bytes
/
appengine_console.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python
"""
For more information on the remote api:
http://code.google.com/appengine/articles/remote_api.html
How do you use this?
python appengine_console.py <your_app_name_here>
"""
import code
import getpass
import sys
from utils import find_gae_sdk
find_gae_sdk()
from google.appengine.ext.remote_api import remote_api_stub
from google.appengine.ext import db
def auth_func():
return raw_input('Username:'), getpass.getpass('Password:')
def main():
if len(sys.argv) < 2:
print "Usage: %s app_id [host]" % (sys.argv[0])
app_id = sys.argv[1]
if len(sys.argv) > 2:
host = sys.argv[2]
else:
host = '%s.appspot.com' % app_id
remote_api_stub.ConfigureRemoteDatastore(app_id, '/remote_api',
auth_func, host)
code.interact('App Engine interactive console for %s' %\
(app_id), None, locals())
if __name__ == '__main__':
main()