Hi
I have a large CSV file, approx 10 MB in size, which contains all the data which need to be imported in the Google App Engine DataStore. I tried following approaches to perform import but all the times it failed in half way.
- Import using mapping a command to url and then executing url, failed because of request time out...
- Import using creating cron job, but got DeadlineExceededError...
- Import using remort_api_shell, but got Operation timed out.
Can you please suggest me and approch (using dummy data you can imagine) how to do it... Suggestion with code will be more helpful..
** I am using Python and google's web app framework to develop the said app.