I have deployed my app and I want to populate the datastore with a csv file.
After following the tutorial, I wrote a python loader file (DataStoreLoader.py) in my application directory and updated the app.yaml file with the following line: - url: /remote_api script: $PYTHON_LIB/google/appengine/ext/remote_api/handler.py login: admin I got this error: appcfg.py: error: You must have google.appengine.ext.remote_api.handler assigned to an endpoint in app.yaml, or provide the url of the handler via the 'url' option. So I added this line to app.yaml - url: /DataStoreLoader script: DataStoreLoader.py I got the same error. I'm confused about what I need to add to app.yaml. -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-appengine?hl=en.
