take a look at the bulk loader from google: http://code.google.com/appengine/docs/python/tools/uploadingdata.html
i think it takes a CSV format, so if you can get your data from sqlite in proper CSV format you should be able to upload via bulk loader. good luck! christian On Aug 15, 8:33 am, Jurgis Pralgauskis <jurgis.pralgaus...@gmail.com> wrote: > Hello, > what's the best way to import my currently sqlite db to GAE? > > I think for each table: > 1) export CSV on nonGAE, > 2) then paste it into some form in GAE environment and adapt > import_from_csv_file... ? > > but maybe there are other/better/ready recipies?