Importing Sqlite data into Google App Engine
Posted
by Keck
on Stack Overflow
See other posts from Stack Overflow
or by Keck
Published on 2010-05-20T00:47:16Z
Indexed on
2010/05/20
0:50 UTC
Read the original article
Hit count: 294
I have a relatively extensive sqlite database that I'd like to import into my Google App Engine python app.
I've created my models using the appengine API which are close, but not quite identical to the existing schema. I've written an import script to load the data from sqlite and create/save new appengine objects, but the appengine environment blocks me from accessing the sqlite library. This script is only to be run on my local app engine instance, and from there I hope to push the data to google.
Am I approaching this problem the wrong way, or is there a way to import the sqlite library while running in the local instance's environment?
© Stack Overflow or respective owner