[Tutor] Creating a closed source application in Python?

2007-05-28 Thread Sophie Marston
Is it possible to create a closed source project in Python? Like in C++ or something, where they can't view your code? ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Creating a closed source application in Python?

2007-05-28 Thread Thorsten Kampe
* Sophie Marston (Mon, 28 May 2007 09:56:45 +0100) Is it possible to create a closed source project in Python? Like in C++ or something, where they can't view your code? Google for Python code obfuscation (web and comp.lang.python) Thorsten ___

Re: [Tutor] Creating a closed source application in Python?

2007-05-28 Thread Alan Gauld
Sophie Marston [EMAIL PROTECTED] wrote Is it possible to create a closed source project in Python? Like in C++ or something, where they can't view your code? Partially. It is usually possible to reverse engineer the code but it won''t look as pretty as the original nor will it necessarily

Re: [Tutor] Creating a closed source application in Python?

2007-05-28 Thread Alan Gauld
Alan Gauld [EMAIL PROTECTED] wrote use Jython and compile to JVM code which is easily reverse engineered into Jaba, but not so easily into Python! Erm, that would of course be Java and nothing to do with Star Wars, no matter how much I may dislike Java! :-) Alan G.