/django_offline

Get a django app working on the desktop, with no need for a server!

Primary LanguagePythonMIT LicenseMIT

Django-offline

Overview

This project allows you to use django as way to develop a desktop application. The django app is rendered in a QWebView and you should be able to develop the django app in the same way you normally would.

Caveats

Currently only supports GET and POST requests. Adding others should be fairly trivial but I haven't done it yet!

Dependencies

  • Python27*
  • PyQt4
  • Django

Build

python main.py

Licence

MIT Licence, see MIT-LICENSE.txt

Footnotes

  • specifically 2.7.3. 2.7.2 appears to have a bug in it with cStringIO adding additional white space on reads. 2.7.2 can be made to work by replacing cStringIO with StringIO.