有没有我可以这样运行的程序:
py2py.py < orig.py > smaller.py
其中orig.py包含带有注释和doc字符串的python源代码,而small.py包含相同的,可运行的源代码,但没有注释和doc字符串?
最初看起来像这样的代码:
#/usr/bin/python """Do something blah blah... """ # Beware the frubnitz! def foo(it): """Foo it!""" print it # hmm?
那么看起来像这样:
def foo(it): print it
解决方法
This Python minifier看起来像它做你需要的.