Is it possible to run Python egg files directly as you can run jar files with Java?
example: java -jar jar-file
|
1
|
|
|
|
|
|
A python egg is a "a single-file importable distribution format". Which is typically a python package. You can import the package in the egg as long as you know it's name and it's in your path. You can execute a package using the "-m" option and the package name. However, python packages generally do not do anything when executed, and you may get an error. The -c option can be used to run code. (See http://docs.python.org/using/cmdline.html for details on command line options)
|
|||
|
|