On May 16, 12:52 pm, ydjango <[EMAIL PROTECTED]> wrote:
> I do not want to make it easy for some one who breaks in , either a
> outsider or may be an rougue hosting provider employee or contractor,
> to easily get access to all the information - data and code.
>

Your best bet is to ensure that doesn't happen--secure passwords and
limiting server access to your IP address is a good start. But if
someone gets into your server they will be able to access your code.
It doesn't matter if it's .py or .pyc--if it can be executed it can be
deconstructed by a motivated attacker. This isn't the fault of Python,
it's the same in other languages. You can obfuscate your code, but
it's still security through obscurity.

> Also, I read somewhere that google does not use python for its  core
> busines applications. It uses it as glue langauage and for internal
> operations automation mostly. Just a random thought.

This isn't because of security, it's because of speed. There are
plenty of public facing services using Python, including Groups and
Code. Google does a ton in Java (like Gmail) and that's really easy to
decompile. Google protects access to its code and as such a .py file
is just as secure as anything else.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to