How and where to execute the python bulkloader command to upload a .CSV file to Google App engine ?
I am trying to upload a simple CSV file (2 column: tag, value, 7000 lines) into my datastore google app engine using the bulkloader. I read the topic at: http://code.google.com/intl/fr-FR/appengine/docs/python/tools/uploadingdata.html
I added to the app.yaml file : builtins: - remote_api: on
Then I tried to execute the python command "create_bulkloader_config -- filename=bulkloader.yaml" , but I don’t know where to put it: => In python command line ? => In Python IDLE ? => In Command.exe windows ? => elsewhere ?
Then, where do I get the file bulkloader.yaml" generated ? => on my local disc ? on the api remote path ? how to catch it ?
This is certainly basic questions but I am not a python programmer, I need a step by step explanation to set my environment.
I used Google app engine launcher, Python 2.5 on Windows.
I set up a customtinywebdb service using the code provided at http://appinventor.googlelabs.com/learn/reference/other/tinywebdb.html
Can you help me ?
Thanks in advance ! (I am blocked at this point of my development).