Modifying Plugins question..

NikolasP

Vu+ Newbie
Hello community ,

i am just starting to enter the world of programming, my knowledge is very little yet and i wanted to ask from the expert users this:If i want to modify any file.py, file.pyo do i need to work in Linux enviroment or its enough if i have python installed on my windows7 pc ?

The other day i opened with python a .pyo file but it was encrypted(encoded) is there anyway i can decode/decrypt or its not possible ??

Many thanks and sorry if my post doesn't fit in this community....
 
Hello community ,

i am just starting to enter the world of programming, my knowledge is very little yet and i wanted to ask from the expert users this:If i want to modify any file.py, file.pyo do i need to work in Linux enviroment or its enough if i have python installed on my windows7 pc ?

The other day i opened with python a .pyo file but it was encrypted(encoded) is there anyway i can decode/decrypt or its not possible ??

Many thanks and sorry if my post doesn't fit in this community....

If you need to modify a python file you must work on py file. Pyo files are compiled objects and cannot be modified.
The best solution is to use Linux ... but python exists also for Windows.
 
Back
Top