I have two python scripts with the following structure:
# Script1.py
from optparse import OptionParser
def main():
    parser = OptionParser()
    parser.add_option("-a", "--add-foobar", action="store_true", help="set foobar true",
        dest="foobar", default=False)
    options, args = parser.parse_args()
    print options.foobar
if __name__ == "__main__":
    main()
# Script2.py
from Script1 import main as script1Main
def main():
    script1Main()
Is there a way to pass command line arguments from script 2 to script 1? Script 1 in this example is immutable, therefore this must be done only thorough optparse.
 
     
     
    