python / cpython

The Python programming language
https://www.python.org
Other
62.75k stars 30.07k forks source link

Summary tables for argparse add_argument options #58058

Closed ncoghlan closed 4 days ago

ncoghlan commented 12 years ago
BPO 13850
Nosy @rhettinger, @ncoghlan, @ezio-melotti, @merwok, @bitdancer, @masklinn, @berkerpeksag, @matrixise
PRs
  • python/cpython#12070
  • Files
  • argparse-actions-matrix: matrix of actions for add_argument parameters
  • argparse-actions-matrix-v2
  • patch13850v0.patch: first version of patch
  • Note: these values reflect the state of the issue at the time it was migrated and might not reflect the current state.

    Show more details

    GitHub fields: ```python assignee = None closed_at = None created_at = labels = ['3.8', 'type-feature', '3.7', 'docs'] title = 'Summary tables for argparse add_argument options' updated_at = user = 'https://github.com/ncoghlan' ``` bugs.python.org fields: ```python activity = actor = 'matrixise' assignee = 'docs@python' closed = False closed_date = None closer = None components = ['Documentation'] creation = creator = 'ncoghlan' dependencies = [] files = ['25018', '38917', '38966'] hgrepos = [] issue_num = 13850 keywords = ['patch'] message_count = 22.0 messages = ['151880', '151881', '151889', '151891', '151895', '151918', '151926', '151928', '151930', '156760', '156762', '159565', '223250', '240616', '240617', '240752', '240816', '240817', '336768', '336805', '336814', '338719'] nosy_count = 12.0 nosy_names = ['rhettinger', 'ncoghlan', 'bethard', 'ezio.melotti', 'eric.araujo', 'r.david.murray', 'xmorel', 'docs@python', 'tshepang', 'berker.peksag', 'matrixise', 'ttz'] pr_nums = ['12070'] priority = 'normal' resolution = None stage = 'patch review' status = 'open' superseder = None type = 'enhancement' url = 'https://bugs.python.org/issue13850' versions = ['Python 2.7', 'Python 3.7', 'Python 3.8'] ```

    Linked PRs

    ncoghlan commented 12 years ago

    With the current argparse docs, it's very hard to get a quick reminder of how to spell the various parameters for add_argument, and just what they do. This issue suggests adding a "Quick Reference" section for add_argument, with the following elements:

    1. Summary table with a one line description of each parameter
    2. Summary table with a one line description of each alternative for the "action" parameter (including noting which other parameters are potentially relevant, such as 'choices' and 'metavar' for 'store' and 'const' for 'store_const')
    3. Summary table with a one line description of each alternative for the "nargs" parameter
    ncoghlan commented 12 years ago

    Looking at the docs, a 4th table in the quick reference section would be useful: the parameters for ArgumentParser itself.

    Note that the ArgumentParser and add_arguments() parameters are already summarised in their respective entries, but there are currently no summaries at all for the possible "action" and "nargs" values

    50b270af-29d1-4e60-929e-94b6a6a5e3f6 commented 12 years ago

    Creating the tables should not be too hard, especially using e.g. org-mode, but:

    1. Where should those tables live? The argparse documentation is pretty big and there's no completely obvious place. I would guess table 1. could just replace the list of arguments in http://docs.python.org/py3k/library/argparse.html#the-add-argument-method but things are harder for action (as many actions have examples as well, so the listing can't just be replaced) and for nargs

    2. If the current lists of argument: role (in ArgumentParser and add_argument) are not sufficient, why would a table somehow be considering it would add visual clutter (table borders, for instance)?

    Maybe a good alternative would be to build a table style for info fields lists and to use :param: wherever that belongs?

    Or the doc could be split into a "quickstart" with just a listing of arguments and a *very simple* example or two, and then the exhaustive documentation, which could even be a separate document?

    ncoghlan commented 12 years ago

    My specific suggestion is to have a dedicated "Quick Reference" section before the first example.

    This section would be aimed at two groups of people:

    Since the heart of argparse is the ability to map arguments to actions, I'd suggest the quick reference section actually lead with a table of "actions" that argparse natively supports, along with a final entry pointing to the information on custom actions (i.e. subclasses of argparse.Action).

    Likely columns for this first table: Action Name, Description, Parameters

    The "Parameters" column would span multiple lines, with one parameter and a brief description of the parameter on each line.

    The second table could then just be a short summary of the various 'nargs' values.

    Repeating the list of parameters to ArgumentParser in the quick reference section probably isn't necessary, and the short parameter descriptions in the actions table should suffice for add_argument().

    50b270af-29d1-4e60-929e-94b6a6a5e3f6 commented 12 years ago

    My specific suggestion is to have a dedicated "Quick Reference" section before the first example.

    OK, that looks like a good plan.

    8955c213-fd54-471c-9758-9cc5f49074db commented 12 years ago

    Sounds like an excellent plan to me too.

    50b270af-29d1-4e60-929e-94b6a6a5e3f6 commented 12 years ago

    The "Parameters" column would span multiple lines, with one parameter and a brief description of the parameter on each line.

    I started looking into that, and it turns out that's more annoying than expected: a bunch of parameters are shared by many (to all) actions, leading to lots of duplications in the table. And the full matrix of actions to parameters is not really explained in the doc.

    In fact, I'm coming around to thinking a matrix of the interaction between actions and arguments could be better and clearer than a table of actions with parameters bunched together at the end.

    In any case, it would certainly be more maintainable... except for rST not really having support for attributes on data tables, and (as far as I can tell) can't handle horizontal headers.

    ncoghlan commented 12 years ago

    Having a second table of "Applicable Parameters" could definitely work. I don't think the "no horizontal headers" limitation should be a big problem - the matrix should be readable even if the action names are just listed in an ordinary column.

    rhettinger commented 12 years ago

    +1 from me. The docs in their present form are a great tutorial but are a total failure as a quick reference.

    Besides having table of parameters, it may also be worthwhile to move some of the examples to a HOWTO document (much as was done with the logging package).

    50b270af-29d1-4e60-929e-94b6a6a5e3f6 commented 12 years ago

    Had some time to play with this today, here's a draft matrix of actions and add_argument parameters which is pretty readable, but:

    I also tried my hand at formatting nargs, but I don't see it as much clearer than http://docs.python.org/library/argparse.html#nargs without the examples, it's still just a mapping from a value to a behavior. I think the result would be just as good if the current nargs description was made into a definition list (in effect, it already is one emulated through an unordered list) and the examples were moved or removed.

    50b270af-29d1-4e60-929e-94b6a6a5e3f6 commented 12 years ago

    completion for list item 4:

    although it would definitely make the "raw text" (in-rst) much harder to read compared to the current table (which can be used from the rst source without compiling)

    ezio-melotti commented 12 years ago
    • It's incredibly not helpful for people who don't know argparse

    Indeed. Maybe this should be moved down in the page, and possibly provide a link to the top (see e.g. the unittest doc 0 and the link on top to jump to the list of assert methods). Once people know it's there they will find it easily, but opening the doc with this table is a bit confusing IMHO. Adding a couple of line to explain what the table is for might also help.

    • I tried adding effects descriptions in the cells instead of mere tick marks, the table becomes completely unreadable.

    In the rst source only latin-1 chars are allowed (otherwise make pdf breaks), so you should replace the tick marks with something else (e.g. "x" or "yes"/"no").

    I added a note directive below the table but it only lists a few really important/weird things, and it really won't scale beyond the current 3 items (which might already be too much)

    You can also add notes numbers just next to the "x"s and add a description below [1]. This could be applied to the "const" column as well if you want to save some horizontal space. If you want to save even more space you could remove the version row/column and add a note about it.

    • I completely removed the help action from the table as it's unlikely anyone will want to override it (and its row was completely blank)

    Maybe you could add a note about this too.

    • Hyperlinking and cross-linking (to the params, the actions, footnotes) would probably be a good idea, although it would definitely make the "raw text" (in-rst)

    This might be useful (I did it in the assert methods' tables in the unittest doc 0), and having links in the HTML probably outweighs the fact that the rst source becomes less readable.

    Note that (depending on what you change), you might be able to use the lightweight syntax for tables if you prefer.

    [1]: e.g. http://docs.python.org/library/stdtypes.html#numeric-types-int-float-long-complex

    83d2e70e-e599-4a04-b820-3814bbdb9bef commented 10 years ago

    At a quick glance the patch looks okay to me so as there's been a lot of positive comments can we have a formal patch review please.

    matrixise commented 9 years ago

    Just updated this patch with "x" instead of the unicode character.

    matrixise commented 9 years ago

    On 13 Apr 2015, at 10:56, Stéphane Wirtel wrote:

    Stéphane Wirtel added the comment:

    Just updated this patch with "x" instead of the unicode character.

    Sorry bad patch, I have read the last comment (“replace by x or “yes/no”) and not the other comments.

    bff23bca-d612-4eb4-83c7-a8b9000c451e commented 9 years ago

    Created Quick Reference table subsection under the add_argument() method section - used the table originally created by xmorel, replacing ticks with 'x' and adding links to the sections in the documentation for each parameter names. Removed the 'version' column and row as that wasn't adding much info.

    There is also a link to the quick reference subsection at the top of the page.

    bitdancer commented 9 years ago

    I think it would be better to move the summary table to the end (just before the Action section), and add another link to the summary to the sentence "The following sections describe how each of these are used." That is, follow that sentence with something like 'a summary table of the relevance of each paramter to the various possible actions is given at the end of the section', with a link on summary table.

    Otherwise, the patch looks good to me.

    matrixise commented 9 years ago

    Hi all,

    If you think the patch is ok, please merge it, we will close this issue.

    Thanks

    matrixise commented 5 years ago

    just for 2.7, 3.7 & 3.8 because they are in bugfix mode.

    rhettinger commented 5 years ago

    I like the idea of having various summary tables for argparse, but the one in the PR isn't visually attractive or self-explanatory.

    matrixise commented 5 years ago

    Hi @Raymond,

    Yep, I understand about the "look", I have seen the result after the build of the doc but the patch was like that and I did not want to change the initial patch.

    Would you suggest one layout and I could update the PR with your recommendations?

    Thanks for your review

    matrixise commented 5 years ago

    I close my PR, if anyone wants to submit an other PR, feel free to do it.

    savannahostrowski commented 4 days ago

    This is can be closed as completed now as both https://github.com/python/cpython/pull/124227 and https://github.com/python/cpython/pull/91726 have been merged.