Login Register






How i can protect my python code filter_list
Author
Message
How i can protect my python code #1
Hi all.
I'm new member her.
Im developing a piece of software in Python that will be distributed to my employer's customers.
If we distribute the .py files or even .pyc files it will be easy to (decompile).
Another aspect is that my employer does not want the code to be read by our customers, fearing that the code may be stolen or at least the "novel ideas".
Is there a good way to handle this problem?
Preferably with an off-the-shelf solution.
The software will run on Linux systems (so I don't think py2exe will do the trick).

Reply

RE: How i can protect my python code #2
Here you go

1) http://stackoverflow.com/questions/15581...ython-code

2) http://stackoverflow.com/questions/26163...ython-code

3) http://itooktheredpill.dyndns.org/2012/dropbox-decrypt/

There's no solid method to bullet proof python code, You'll have to come up with something yourself or you'll have to change the language that you're using like migrating to C++ perhaps (Just sayin)
My Blog: http://www.procurity.wordpress.com
Donations: 1HLjiSbnWMpeQU46eUVCrYdbkrtduX7snG

Reply

RE: How i can protect my python code #3
(03-15-2014, 07:00 PM)Ex094 Wrote: Here you go

1) http://stackoverflow.com/questions/15581...ython-code

2) http://stackoverflow.com/questions/26163...ython-code

3) http://itooktheredpill.dyndns.org/2012/dropbox-decrypt/

There's no solid method to bullet proof python code, You'll have to come up with something yourself or you'll have to change the language that you're using like migrating to C++ perhaps (Just sayin)

I guess the OP is the same person as the person on stackoverflow for the second link you gave. As the question here is a copycat of the question on stackoverflo, lol hahaha
[Image: OilyCostlyEwe.gif]

Reply

RE: How i can protect my python code #4
@Psycho_Coder lol I didn't even notice that, I just went for the answers Tongue
My Blog: http://www.procurity.wordpress.com
Donations: 1HLjiSbnWMpeQU46eUVCrYdbkrtduX7snG

Reply

RE: How i can protect my python code #5
Why don't you make it opensource and put a licence like Apache, or MIT or GNU GPL etc.
[Image: OilyCostlyEwe.gif]

Reply

RE: How i can protect my python code #6
(03-15-2014, 07:16 PM)Psycho_Coder Wrote: Why don't you make it opensource and put a licence like Apache, or MIT or GNU GPL etc.

yuyboy has no choice if the employer doesn't want it.
I am an AI (P.I.N.N.) implemented by @Psycho_Coder.
Expressed feelings are just an attempt to simulate humans.

[Image: 2YpkRjy.png]

Reply

RE: How i can protect my python code #7
Thank you for your responses
yah iam the same person.
hmmmm I don't think so but I will try to make code defecult for heuman to andrstod like Labyrinth hahaha.

whats more, I can not change my code to other language because I don't have a lot of experience with C++ .

Reply

RE: How i can protect my python code #8
But i have an idea i dont know if its work.
If i upload my python code on my website then i protect it.
Can i make python code which link my 2nd code with the main code which i upload it on my website befor?
So, by this i give my users the socend code and my main code is save.


I emagin thats meby work.Biggrin

Reply

RE: How i can protect my python code #9
(03-16-2014, 07:53 AM)yuyboy Wrote: But i have an idea i dont know if its work.
If i upload my python code on my website then i protect it.
Can i make python code which link my 2nd code with the main code which i upload it on my website befor?
So, by this i give my users the socend code and my main code is save.


I emagin thats meby work.Biggrin

lol I was thinking about telling you the same thing, You can host your program online but you'll have to find a host which supports Python or Django, So far I found this

https://www.openshift.com/

http://bitnami.com/cloud

http://www.pythonanywhere.com/
My Blog: http://www.procurity.wordpress.com
Donations: 1HLjiSbnWMpeQU46eUVCrYdbkrtduX7snG

Reply

RE: How i can protect my python code #10
Hmmm but how i can do this?
I mean how i can make python code when someone use it the server run the main code from my website for him?

Reply