Hiding python source code
|
|||
|
Rank: ? (2)
Member #: 25298 |
If any of you caught my last post this is an inquiry about another approach. I have a large python application that I need to send somewhere else but I don't want them to be able to see the source code. What are my options in terms of hiding the source code or obfuscating it so that they can use the program but not use the source. Any help is greatly appreciated
|
||
|
|||
|
|||
|
Rank: ? (1)
Member #: 25599 |
You can send the byte code of the extension then there won't be any need for sending the source code
|
||
|
|||
|
|||
|
Rank: ? (6)
Member #: 26285 |
Hmm, sending the bytecode may or may not be a good solution. If the person you send the bytecode to _really_ wants to get the code it can be decompiled (and it looks to be very readable after decompilation). Check out "decompyle" or follow these links..
Debian package of decompyle A service charging to run decompyle Oh, and for the record, I have no suggestions on how to hide the code, sorry :\ Perhaps, at best, you can encrypt it, and decrypt at runtime? Hope it helps! |
||
|
Please login or register to post a reply.