On 3/1/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > I've looked around the FAQ on the website and didn't see anything > obvious. Is anyone creating redistributable applications on top of > Django that can be compiled for shrinkwrap style software? I want to > redistribute a web application without having the source laying > around. I've seen applications such as the Zend optimizer for PHP, > and am wondering if this is a possibility? >
If you're concerned about not having any dependencies, it's kind of a tall order. How about the database? Anyway, have a look at http://cheeseshop.python.org/pypi/py2app/ and http://www.py2exe.org/. If you're just concerned about not having source available, you can run this over all your files: http://docs.python.org/lib/module-compileall.html --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

