Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #70144
| Date | 2014-04-11 09:19 -0600 |
|---|---|
| From | Michael Torrie <torriem@gmail.com> |
| Subject | Re: python obfuscate |
| References | <c17a58f4-e22d-4531-beb4-d810ec4b2857@googlegroups.com> |
| Newsgroups | comp.lang.python |
| Message-ID | <mailman.9206.1397229568.18130.python-list@python.org> (permalink) |
On 04/10/2014 07:29 PM, Wesley wrote: > Hi all, Does python has any good obfuscate? > > Currently our company wanna release one product developed by python > to our customer. But dont's wanna others see the py code. > > I googled for a while but mostly just say using pyc. Any better one? > > Our product is deployed on Linux bed. I guess it all depends on what you are really trying to do. If you're trying to prevent people from making and using unauthorized copies of your software then even obfuscating the code certainly won't help that at all. If you're trying to prevent people from learning trade secrets, then simply don't put that part of your product in the hands of customers. And on this point the language doesn't matter. Could be a binary compiled from C++. Someone could, in theory, reverse-engineer and trace the code and uncover your secret algorithm. The question is, is it worth it for the mythical, theoretical, bad guy to do this? Is it worth it for you to go to lengths to prevent this theoretical possibility? If you have IP you truly need to keep secret, separate it out from your application and stick it on a server and talk to it over some form of RPC. If you're simply trying to keep the boss happy, simply wrapping up your python scripts into a self-contained executable format (say py2exe or a similar tool) is probably good enough. Most end users will never know or care what you build the app with, even if you have a directory full of open .py files. 99% of the users of a popular ebook app called Calibre never know or care that it's made of python and that you could go in and see the code. All they care about is they can click an icon and the program launches and runs.
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
python obfuscate Wesley <nispray@gmail.com> - 2014-04-10 18:29 -0700
Re: python obfuscate Tobiah <toby@tobiah.org> - 2014-04-10 18:48 -0700
Re: python obfuscate Wesley <nispray@gmail.com> - 2014-04-10 19:14 -0700
Re: python obfuscate Ian Kelly <ian.g.kelly@gmail.com> - 2014-04-10 20:23 -0600
Re: python obfuscate Ben Finney <ben+python@benfinney.id.au> - 2014-04-11 11:41 +1000
Re: python obfuscate Wesley <nispray@gmail.com> - 2014-04-10 19:17 -0700
Re: python obfuscate Ian Kelly <ian.g.kelly@gmail.com> - 2014-04-10 20:28 -0600
Re: python obfuscate Grant Edwards <invalid@invalid.invalid> - 2014-04-11 16:19 +0000
Re: python obfuscate Ben Finney <ben+python@benfinney.id.au> - 2014-04-11 13:12 +1000
Re: python obfuscate Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-04-11 06:53 +0100
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 09:17 +0000
Re: python obfuscate Ian Kelly <ian.g.kelly@gmail.com> - 2014-04-11 04:22 -0600
Re: python obfuscate Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-04-11 11:44 +0000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 12:42 +0000
Re: python obfuscate Joshua Landau <joshua@landau.ws> - 2014-04-11 07:00 +0100
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-11 16:10 +1000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 09:17 +0000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 09:17 +0000
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-11 19:40 +1000
Re: python obfuscate cl@isbd.net - 2014-04-11 13:32 +0100
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-11 22:47 +1000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 13:06 +0000
Re: python obfuscate Mark Lawrence <breamoreboy@yahoo.co.uk> - 2014-04-11 14:10 +0100
Re: python obfuscate Grant Edwards <invalid@invalid.invalid> - 2014-04-11 16:22 +0000
Re: python obfuscate alister <alister.nospam.ware@ntlworld.com> - 2014-04-11 13:07 +0000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 14:00 +0000
Re: python obfuscate Grant Edwards <invalid@invalid.invalid> - 2014-04-11 16:27 +0000
Re: python obfuscate Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2014-04-12 00:49 +0000
Re: python obfuscate Ben Finney <ben+python@benfinney.id.au> - 2014-04-12 14:52 +1000
Re: python obfuscate Mark H Harris <harrismh777@gmail.com> - 2014-04-11 10:09 -0500
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-12 01:22 +1000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 16:13 +0000
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-11 16:13 +0000
Re: python obfuscate CM <cmpython@gmail.com> - 2014-04-11 22:01 -0700
Re: python obfuscate Sturla Molden <sturla.molden@gmail.com> - 2014-04-12 12:07 +0000
Re: python obfuscate CM <cmpython@gmail.com> - 2014-04-12 20:14 -0700
Re: python obfuscate Michael Torrie <torriem@gmail.com> - 2014-04-11 09:19 -0600
Re: python obfuscate Chris Angelico <rosuav@gmail.com> - 2014-04-12 01:30 +1000
Re: python obfuscate Joshua Landau <joshua@landau.ws> - 2014-04-11 22:48 +0100
Re: python obfuscate Denis McMahon <denismfmcmahon@gmail.com> - 2014-04-12 07:48 +0000
Re: python obfuscate Stefan Behnel <stefan_ml@behnel.de> - 2014-04-13 06:58 +0200
csiph-web