Read *.pyc files
hesperancia
Posted messages
2
Registration date
Status
Member
Last intervention
-
hesperancia Posted messages 2 Registration date Status Member Last intervention -
hesperancia Posted messages 2 Registration date Status Member Last intervention -
Hello,
I wanted to know how to read *.pyc files. I have already installed Python, and I'm trying to open it through file/open file/<file.pyc> but they open as unreadable files...
need help!
Configuration: Windows XP / Firefox 3.0.19
I wanted to know how to read *.pyc files. I have already installed Python, and I'm trying to open it through file/open file/<file.pyc> but they open as unreadable files...
need help!
Configuration: Windows XP / Firefox 3.0.19
2 answers
-
Hello,
The .pyc files, unlike .py files, are not "meant to be opened". In fact, they are a type of bytecode (yes, like with Java), a sort of compilation. To access the code, you should rather get the sources, the real ones.
Check out this post if it can help you:
https://www.developpez.net/forums/d28800/autres-langages/python/deploiement-installation/fichier-executable-linux/#post202265 -
I'm going to dig a little...
Thanks for your help!!!! :)