pythonmoduleimp

What is a frozen Python module?


The Python help of the module imp is talking about a frozen module. What is it?

http://docs.python.org/library/imp.html#imp.PY_FROZEN


Solution

  • This link explains what the Python Freeze utility is in detail: http://wiki.python.org/moin/Freeze

    In a nutshell, it creates a portable version of a python script that carries its own built in interpreter (basically like a binary executable), so that you can run it on machines without python.