Commandline - noxrepo/pox GitHub Wiki

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