On Fri, 2004-04-16 at 18:16, Jacob Martinson wrote:
> is it possible in webware to deploy an app with only .pyc files so as to
> keep your source secure if you are hosting with a questionable provider?

This has been recently discussed on this list (".pyc files" was the
subject), and it is possible but probably not worth the effort, since
.pyc files are hardly secure - a google search turned up this (untested)
function to decompile one:

def dis_pyc(pyc_name):
   import marshal,dis
   file=open(pyc_name,'rb')
   file.read(8)
   code=marshal.load(file)
   did.dis(code)

Pretty much anything can be decompiled, including C.





-------------------------------------------------------
This SF.Net email is sponsored by: IBM Linux Tutorials
Free Linux tutorial presented by Daniel Robbins, President and CEO of
GenToo technologies. Learn everything from fundamentals to system
administration.http://ads.osdn.com/?ad_id=1470&alloc_id=3638&op=click
_______________________________________________
Webware-discuss mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/webware-discuss

Reply via email to