6

I have one doubt. I need to write site on embedded system ( memory 64MB, HD 256MB ), I already have Python there and SQLite. I thought to use Django for this, but I heard that Django uses memory a lot. What framework is the best choice for me ( I need to have session and access to sqlite )?

Almira Bojani
  • 579
  • 2
  • 11
  • 19

1 Answers1

4

If you need only simple features, the embedded http server of python simplehttpserver it a good choice.

If you need more advanced features, it seems that CherryPy is a serious candidate as an embedded WebServer as it is able to run on an android platform.

Cédric Julien
  • 78,516
  • 15
  • 127
  • 132