I find myself needing to log into google to use the remote api, however it requires an email and password to authenticate the process. Is there anyway I could hide both of them and require other contributors to the project to add their own (securely)?
from google.appengine.ext.remote_api import remote_api_stub
import database
import getpass
email = "gmail@gmail.com" #can't show this line
password = "password" #can't show this line
def auth_func():
return (email, password)
remote_api_stub.ConfigureRemoteApi(None, '/_ah/remote_api', auth_func,
'app.appspot.com')