ydjango <neerashish <at> gmail.com> writes:
> I have propriety commercial code and some formula/ algo > implementations which I do not want to expose. > Hence I do not want to upload .py source files > > Is rewriting that business logic in a compiled langauge only way out? > how do I call it from python, Using web services? > No no, I have come across a number of ways of obfuscating Python code, just have a search. Using the .pyc files provides weaker obfuscation which may or may not be enough. Can you not simply do something using rsync: rsync -vrlptzH --delete --progress /home/user/*.pyc \ [EMAIL PROTECTED]:/home/user/www Can't remember what exactly to get rsync to only copy pyc files but check the man pages. Otherwise you could look at scp. --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---