Nothing Special   »   [go: up one dir, main page]

Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

can't handle multiple "usage" messages? #4

Open
sjpb opened this issue Sep 18, 2018 · 1 comment
Open

can't handle multiple "usage" messages? #4

sjpb opened this issue Sep 18, 2018 · 1 comment

Comments

@sjpb
Copy link
sjpb commented Sep 18, 2018

With a docstring like this:

Usage:
    script.py <arg>
    script.py [<cmd>] <arg>

here's what I get for docopt and argopt:

With python script.py a

docopt:
docopt: {'<arg>': 'a','<cmd>': None}

argopt:

usage: script.py [-h] arg arg [cmd]
script.py: error: too few arguments

With python script.py run a

docopt:
docopt: {'<arg>': 'a','<cmd>': 'run'}

argopt:
Namespace(arg='a', cmd='None').

In both cases docopt does what I'd expect?

@casperdcl
Copy link
Owner

In this case you could use

Usage:
    script.py [<cmd>] <arg>

or

Usage:
    script.py <arg> [<cmd>]

What would the use case be? It's not the same as #3

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants