About 40,500 results
Open links in new tab
  1. argparse — Parser for command-line options, arguments and

    2 days ago · Source code: Lib/argparse.py Tutorial: This page contains the API reference information. For a more gentle introduction to Python command-line parsing, have a look at …

  2. Argparse Tutorial — Python 3.14.0 documentation

    2 days ago · author, Tshepang Mbambo,. This tutorial is intended to be a gentle introduction to argparse, the recommended command-line parsing module in the Python standard library. …

  3. Command-line interface libraries — Python 3.14.0 documentation

    2 days ago · The modules described in this chapter assist with implementing command line and terminal interfaces for applications. Here’s an overview: argparse — Parser for command-line …

  4. Migrating optparse code to argparse — Python 3.14.0 …

    6 days ago · For applications that do choose to migrate from optparse to argparse, the following suggestions should be helpful: Replace all optparse.OptionParser.add_option() calls with …

  5. Pending removal in future versions — Python 3.14.0 documentation

    3 days ago · The following APIs will be removed in the future, although there is currently no date scheduled for their removal. argparse:- Nesting argument groups and nesting mutually …

  6. urllib.parse — Parse URLs into components — Python 3.14.0 …

    6 days ago · Source code: Lib/urllib/parse.py This module defines a standard interface to break Uniform Resource Locator (URL) strings up in components (addressing scheme, network …

  7. optparse — Parser for command line options - Python

    5 days ago · In the absence of more specific argument parsing design constraints, argparse is the recommended choice for implementing command line applications, as it offers the highest …

  8. getopt — C-style parser for command line options - Python

    5 days ago · Further functional enhancements for command line parameter processing are provided either as third party modules on PyPI, or else as features in the argparse module.

  9. What’s New In Python 3.13 — Python 3.15.0a1 documentation

    Nov 3, 2025 · argparse ¶ Add the deprecated parameter to the add_argument() and add_parser() methods, to enable deprecating command-line options, positional arguments, and subcommands.

  10. Deprecations — Python 3.12.12 documentation

    Mar 12, 2012 · argparse: The type, choices, and metavar parameters of argparse.BooleanOptionalAction are deprecated and will be removed in 3.14. (Contributed by …