About 240,000 results
Open links in new tab
  1. How do I open a compiled python file (.pyc) - Stack Overflow

    Sep 19, 2019 · 0 Using vim, you can just open the .pyc file, but normally you have to specify in binary or hexadecimal because the byte code is actually in hexadecimal. I suppose you can use any text editor …

  2. How to run a .pyc (compiled python) file? - Ask Ubuntu

    Since your python file is byte compiled you need to run it through the python interpreter python yourfile.pyc The reason you can run your .py files directly is because you have the line …

  3. Is it possible to decompile a compiled .pyc file into a .py file?

    Mar 13, 2011 · Is it possible to get some information out of the .pyc file that is generated from a .py file?

  4. Given a python .pyc file, is there a tool that let me view the bytecode?

    Jun 21, 2012 · A Python module is automatically compiled into a .pyc file by CPython interpreter. The .pyc file, which contains the bytecode, is in binary format (marshaled code?). Is there a GUI (or …

  5. How to open a ".pyc" file with Pycharm? - Stack Overflow

    Mar 10, 2023 · 0 You can not open .pyc file becuase it is already python interpreter compiled file so that's why it is shows only binary code. So, you have to find your .py file for viewing your code

  6. Is it possible to import a compiled python file? - Stack Overflow

    Mar 28, 2012 · If there is a source file in the same directory as the compiled file, Python will use the compiled file in the __pycache__ directory instead, or recompile from source if it's not there. If you …

  7. What do the python file extensions, .pyc .pyd .pyo stand for?

    Jan 11, 2012 · What do these python file extensions mean? .pyc .pyd .pyo What are the differences between them and how are they generated from a *.py file?

  8. How can I import a .pyc compiled python file and use it

    Jan 11, 2016 · Im trying to figure out how to include a .pyc file in a python script. For example my script is called: myscript.py and the script I would like to include is called: included_script.pyc So, do I...

  9. If Python is interpreted, what are .pyc files? - Stack Overflow

    Jun 8, 2010 · Python is an interpreted language. But why does my source directory contain .pyc files, which are identified by Windows as "Compiled Python Files"?

  10. python - Cannot see pyc files in PyCharm - Stack Overflow

    Oct 5, 2020 · 13 I am using PyCharm for a project and I need to access pyc files. Unfortunately, IDE seems not to show *.pyc files nor __pycache__, even in searches with double Shift + Shift. I cannot …