We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
You can start POX components from the commandline, optionally passing them arguments.
./pox.py foo --bar=baz spam --eggs --tomatoes=3 one.more
Will do something very like the following:
import foo foo.launch(bar="baz") import spam spam.launch(eggs=True,tomatoes="3") import one.more