I would like to ask which kind of credentials do I need to put on for importing data using the Google App Engine BulkLoader class
appcfg.py upload_data --config_
Yes, comment out the admin requirement for the remote_api:
[app.yaml]
- url: /remote_api script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py # login: admin
Then run this command:
$ bulkloader.py --dump --kind=DbMyKind --url=http://localhost:8080/remote_api --filename=export.csv --app_id=my_appid --auth_domain=localhost:8080
Note: verify that --auth_domain is passed, and proper port is passed for localhost.