Git Product home page Git Product logo

Comments (2)

puzrin avatar puzrin commented on July 24, 2024

I don't know. Used help only to show subcomands list. It's better to search in google for python's examples.

from argparse.

rlidwka avatar rlidwka commented on July 24, 2024

Find a working python example, then it should work here as well.

Something like this?:
https://stackoverflow.com/questions/20094215/argparse-subparser-monolithic-help-output

#!/usr/bin/env node
'use strict';

let argparse = require('./')

// create the top-level parser
let parser = argparse.ArgumentParser('PROG')
parser.add_argument('--foo',{ action: 'store_true', help: 'foo help' })
let subparsers = parser.add_subparsers({help: 'sub-command help'})

// create the parser for the "a" command
let parser_a = subparsers.add_parser('a', {help: 'a help'})
parser_a.add_argument('bar',{ type: 'int', help: 'bar help'})

// create the parser for the "b" command
let parser_b = subparsers.add_parser('b', {help: 'b help'})
parser_b.add_argument('--baz', {choices: 'XYZ', help: 'baz help'})
// print main help
console.log(parser.format_help())

// retrieve subparsers from parser
let subparsers_actions = parser._actions
  .filter(a => a.constructor.name === '_SubParsersAction')

// there will probably only be one subparser_action,
// but better safe than sorry
for (let subparsers_action of subparsers_actions) {
    // get all subparsers and print help
    for (let [ choice, subparser ] of Object.entries(subparsers_action.choices)) {
        console.log(`Subparser '${choice}'`)
        console.log(subparser.format_help())
    }
}

This is the example from that SO article ported to js.

You can override ArgumentParser.print_help() via subclass to print it.

from argparse.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.