Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to use Google App Engine to deploy a BootlePy + PeeWee web application.

I use PeeWee with SQLite.

Here is PeeWee's source code:

try:
    import sqlite3
except ImportError:
    sqlite3 = None

Here is the error I'm getting in my Google App Engine development console:

ImportError: No module named _sqlite3

Why does the import fails?

share|improve this question

1 Answer

up vote 4 down vote accepted

Google App Engine does not allow sqlite, thus does not have the module within it. Here is a bit more info: Using sqlite3 within Google App Engine?

share|improve this answer
Ho.. Okay. I was sure GAE was accepting SQLite. Thx – shkschneider Aug 10 '12 at 15:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.