“Adicionar opção no script python” Respostas de código

Adicionar opção no script python

from optparse import OptionParser
...
parser = OptionParser()
parser.add_option("-f", "--file", dest="filename",
                  help="write report to FILE", metavar="FILE")
parser.add_option("-q", "--quiet",
                  action="store_false", dest="verbose", default=True,
                  help="don't print status messages to stdout")

(options, args) = parser.parse_args()
Amused Angelfish

Adicionar opção no script python


import argparse
import sys

parser = argparse.ArgumentParser(description="Does some awesome things.")
parser.add_argument('message', type=str, help="pass a message into the script")

if __name__ == '__main__':
    args = parser.parse_args(sys.argv[1:])
    print args.message

Exuberant Earthworm

Respostas semelhantes a “Adicionar opção no script python”

Perguntas semelhantes a “Adicionar opção no script python”

Mais respostas relacionadas para “Adicionar opção no script python” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código