Re: How to achieve pyc only deployment for module in python3.6

2018-10-02 Thread Michael F. Stemper
On 2018-10-02 00:41, Chris Angelico wrote: > On Tue, Oct 2, 2018 at 12:01 PM Chandana Pattanayak > wrote: >> I have a requirement to provide basic code protection for a module in our >> product suite. With python 3.6 the .pyc files are created under pycache , >> so if i remove the py file the

Re: How to achieve pyc only deployment for module in python3.6

2018-10-02 Thread Kirill Balunov
On Tue, Oct 2, 2018, 08:42 Chris Angelico wrote: > On Tue, Oct 2, 2018 at 12:01 PM Chandana Pattanayak > wrote: > > > > Hi, > > > > I have a requirement to provide basic code protection for a module in our > > product suite. With python 3.6 the .pyc files are created under pycache , > > so if i

Re: How to achieve pyc only deployment for module in python3.6

2018-10-02 Thread Chandana Pattanayak
Thank you all. I will go for containers. Will ask for more time based on all your inputs.. Thanks, Chandana On Tue, 2 Oct 2018, 11:22 dieter, wrote: > dieter writes: > > Chandana Pattanayak writes: > >> I have a requirement to provide basic code protection for a module in > our > >> product

Re: How to achieve pyc only deployment for module in python3.6

2018-10-01 Thread dieter
dieter writes: > Chandana Pattanayak writes: >> I have a requirement to provide basic code protection for a module in our >> product suite. With python 3.6 the .pyc files are created under pycache , >> so if i remove the py file the module is not found anymore. > ... > Note that you can

Re: How to achieve pyc only deployment for module in python3.6

2018-10-01 Thread Chris Angelico
On Tue, Oct 2, 2018 at 12:01 PM Chandana Pattanayak wrote: > > Hi, > > I have a requirement to provide basic code protection for a module in our > product suite. With python 3.6 the .pyc files are created under pycache , > so if i remove the py file the module is not found anymore. If you want

Re: How to achieve pyc only deployment for module in python3.6

2018-10-01 Thread dieter
Chandana Pattanayak writes: > I have a requirement to provide basic code protection for a module in our > product suite. With python 3.6 the .pyc files are created under pycache , > so if i remove the py file the module is not found anymore. One approach could be to define and register your own

How to achieve pyc only deployment for module in python3.6

2018-10-01 Thread Chandana Pattanayak
Hi, I have a requirement to provide basic code protection for a module in our product suite. With python 3.6 the .pyc files are created under pycache , so if i remove the py file the module is not found anymore. Thank you, Chandana -- https://mail.python.org/mailman/listinfo/python-list