[Chennaipy] Basic questions in python
Vijay Kumar
vijaykumar at bravegnu.org
Wed Aug 30 00:53:36 EDT 2017
On Wed, August 30, 2017 10:07 am, Sai Dinesh wrote:
> Hi all,
>
>
> I'm new to python.. Learning out of own interest. I have couple of
> questions. Hope i vl get help on it.
>
> 1. I want to write any application which needs to work in Windows and
> Mac.
Depends on what you are doing. For most simple applications this will
work. Most of the standard library is portable across Windows and Mac. If
not, it will be mentioned in the documentation.
>
> 2. Does my code is protected from revers engineering
Not really. It is usually easy to recover the original source code, from
Python byte code.
>
> 3. If i use any other libraries while development, if i deploy my
> application in another machine does all libraries need to install on that
> machine too..
Yes. Unless you are using something like pyinstaller, to create an archive
of the program and the dependencies.
Regards,
Vijay
More information about the Chennaipy
mailing list