This is a static archive of the Python wiki, which was retired in February 2026 due to lack of usage and the resources necessary to serve it — predominately to bots, crawlers, and LLM companies.
Pages are preserved as they were at the time of archival. For current information, please visit python.org.
If a change to this archive is absolutely needed, requests can be made via the infrastructure@python.org mailing list.

ComPYiler

This is a program that compiles every .py file in the Python directory. Please note that it only works if you set Python's directory to C:\Python24. If you are using an older version or customized your directory choice. I am not sure what opperating systems it will work on, but I know it will work on win32.

This program is part of the Powerful Python One-Liners group. I hope to help expand the Code page. Thank you for visiting this page and HAVE A GREAT DAY! :-)

Code

from compileall import compile_dir; compile_dir("C:/Python24/")


2026-02-14 16:09