![]() |
|
How i can protect my python code - Printable Version +- Sinisterly (https://sinister.li) +-- Forum: Coding (https://sinister.li/Forum-Coding) +--- Forum: Python (https://sinister.li/Forum-Python) +--- Thread: How i can protect my python code (/Thread-How-i-can-protect-my-python-code) Pages:
1
2
|
How i can protect my python code - yuyboy - 03-15-2014 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). RE: How i can protect my python code - Ex094 - 03-15-2014 Here you go 1) http://stackoverflow.com/questions/15581890/how-does-dropbox-protect-its-python-code 2) http://stackoverflow.com/questions/261638/how-do-i-protect-python-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) RE: How i can protect my python code - Psycho_Coder - 03-15-2014 (03-15-2014, 07:00 PM)Ex094 Wrote: Here you go 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 RE: How i can protect my python code - Ex094 - 03-15-2014 @Psycho_Coder lol I didn't even notice that, I just went for the answers
RE: How i can protect my python code - Psycho_Coder - 03-15-2014 Why don't you make it opensource and put a licence like Apache, or MIT or GNU GPL etc. RE: How i can protect my python code - Deque - 03-15-2014 (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. RE: How i can protect my python code - yuyboy - 03-15-2014 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++ . RE: How i can protect my python code - yuyboy - 03-16-2014 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.
RE: How i can protect my python code - Ex094 - 03-16-2014 (03-16-2014, 07:53 AM)yuyboy Wrote: But i have an idea i dont know if its work. 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/ RE: How i can protect my python code - yuyboy - 03-16-2014 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? |