Re: Deploy application in bytecode

2008-10-16 Thread [EMAIL PROTECTED]
H. Thank you bruno, thank ovnicraft, thank all. I understand this question, we all help me. On 16 out, 14:45, bruno desthuilliers <[EMAIL PROTECTED]> wrote: > On 16 oct, 18:31, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > > H. > > The byte-code of Java and byte-code of dot.net are

Re: Deploy application in bytecode

2008-10-16 Thread bruno desthuilliers
On 16 oct, 18:31, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > H. > The byte-code of Java and byte-code of dot.net are also not safe? Not even binary machine code is safe. Where do you think all these cracked softwares come from ? Back in the mid-heighties, when Steinberg came to France

Re: Deploy application in bytecode

2008-10-16 Thread Ovnicraft
2008/10/16 [EMAIL PROTECTED] <[EMAIL PROTECTED]> > > H. > The byte-code of Java and byte-code of dot.net are also not safe? > > The best way to protected my code is a license? What you mean with protect? > > > On 16 out, 11:54, bruno desthuilliers <[EMAIL PROTECTED]> > wrote: > > On 16 oct

Re: Deploy application in bytecode

2008-10-16 Thread [EMAIL PROTECTED]
H. The byte-code of Java and byte-code of dot.net are also not safe? The best way to protected my code is a license? On 16 out, 11:54, bruno desthuilliers <[EMAIL PROTECTED]> wrote: > On 16 oct, 07:02, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > > > On Oct 16, 3:41 pm, "[EMAIL PROTECTED]"

Re: Deploy application in bytecode

2008-10-16 Thread bruno desthuilliers
On 16 oct, 07:02, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > On Oct 16, 3:41 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > > > I agree with you, but I am an officer and my boss likes of things > > well, then, I am trying to bring a legal solution for him with Django, > > I came to dot.ne

Re: Deploy application in bytecode

2008-10-16 Thread James Bennett
On Thu, Oct 16, 2008 at 12:02 AM, Graham Dumpleton <[EMAIL PROTECTED]> wrote: > Why has no one yet mentioned that .pyc files don't really protect your > code? I tend to treat Python bytecode as the "no-right-click script" of the Python world; those sorts of silly JavaScript tricks which "protect"

Re: Deploy application in bytecode

2008-10-16 Thread [EMAIL PROTECTED]
On Oct 16, 6:41 am, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I agree with you, but I am an officer and my boss likes of things > well, then, I am trying to bring a legal solution for him with Django, > I came to dot.net where the code is compiled. Haven't you ever heard of Lutz's Reflecto

Re: Deploy application in bytecode

2008-10-15 Thread Steve Holden
Because that won't matter to his boss ;-) regards Steve Graham Dumpleton wrote: > > On Oct 16, 3:41 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > >> I agree with you, but I am an officer and my boss likes of things >> well, then, I am trying to bring a legal solution for him with Djan

Re: Deploy application in bytecode

2008-10-15 Thread Graham Dumpleton
On Oct 16, 3:41 pm, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > I agree with you, but I am an officer and my boss likes of things > well, then, I am trying to bring a legal solution for him with Django, > I came to dot.net where the code is compiled. > > In this situation, pass the .pyc fil

Re: Deploy application in bytecode

2008-10-15 Thread [EMAIL PROTECTED]
I agree with you, but I am an officer and my boss likes of things well, then, I am trying to bring a legal solution for him with Django, I came to dot.net where the code is compiled. In this situation, pass the .pyc files to .py is hard? You know? Thank you for all that words, have 3 days I'm tr

Re: Deploy application in bytecode

2008-10-15 Thread Steve Holden
Yes, I understand. But the best way to protect yourself is to deal with trustworthy clients under a sensible license agreement. If I don't trust a client not to steal my code they don't stay a client ... regards Steve [EMAIL PROTECTED] wrote: > Steve. > I have test the .pyc files, work perfect

Re: Deploy application in bytecode

2008-10-15 Thread Ovnicraft
2008/10/15 [EMAIL PROTECTED] <[EMAIL PROTECTED]> > > Hi steve. > I know if i have only the .pyc files i don't see the source. > > But then, if upload to the server only the .pyc and my application > work correctly, then this solve my problem. > > Exists programs which convert .py files in .pyc? I

Re: Deploy application in bytecode

2008-10-15 Thread [EMAIL PROTECTED]
Steve. I have test the .pyc files, work perfectly. I have tested the compile_dir() function too, work perfectly. Then now, about my question? Ovnicraft. Because I came across with an issue where the client may want to take the entire application with it and i want to protect my code. Undestand?

Re: Deploy application in bytecode

2008-10-15 Thread Steve Holden
Ovnicraft wrote: > > > 2008/10/15 [EMAIL PROTECTED] > <[EMAIL PROTECTED] > > > > Hi steve. > I know if i have only the .pyc files i don't see the source. > > But then, if upload to the server only the .pyc and my application > wo

Re: Deploy application in bytecode

2008-10-15 Thread Steve Holden
First, make it work. Then worry about security. Once you have a working site the rest will be easy. regards Steve [EMAIL PROTECTED] wrote: > In this situation, pass the .pyc files to .py is hard? > Because all i want to do is dificulty to see my source code, or never > see my source code if po

Re: Deploy application in bytecode

2008-10-15 Thread [EMAIL PROTECTED]
In this situation, pass the .pyc files to .py is hard? Because all i want to do is dificulty to see my source code, or never see my source code if possible! On 16 out, 01:25, "[EMAIL PROTECTED]" <[EMAIL PROTECTED]> wrote: > thank you Steve > > On 15 out, 23:35, Steve Holden <[EMAIL PROTECTED]> wr

Re: Deploy application in bytecode

2008-10-15 Thread [EMAIL PROTECTED]
thank you Steve On 15 out, 23:35, Steve Holden <[EMAIL PROTECTED]> wrote: > [EMAIL PROTECTED] wrote: > > Hi steve. > > I know if i have only the .pyc files i don't see the source. > > > But then, if upload to the server only the .pyc and my application > > work correctly, then this solve my probl

Re: Deploy application in bytecode

2008-10-15 Thread Steve Holden
[EMAIL PROTECTED] wrote: > Hi steve. > I know if i have only the .pyc files i don't see the source. > > But then, if upload to the server only the .pyc and my application > work correctly, then this solve my problem. > > Exists programs which convert .py files in .pyc? I want this because > in the

Re: Deploy application in bytecode

2008-10-15 Thread [EMAIL PROTECTED]
Hi steve. I know if i have only the .pyc files i don't see the source. But then, if upload to the server only the .pyc and my application work correctly, then this solve my problem. Exists programs which convert .py files in .pyc? I want this because in the situation when i have only the .py fil

Re: Deploy application in bytecode

2008-10-15 Thread Steve Holden
[EMAIL PROTECTED] wrote: > Hi, i'm new django user. > I have a question, if i want to hidden my source code, which way i do > this? > > I think about deploy the bytecode, this is correct? > You could deploy only the .pyc files, yes. But unless you are distributing web applications for other peo

Deploy application in bytecode

2008-10-15 Thread [EMAIL PROTECTED]
Hi, i'm new django user. I have a question, if i want to hidden my source code, which way i do this? I think about deploy the bytecode, this is correct? --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users"