
Argparse Tutorial — Python 3.14.3 documentation
12 hours ago · The argparse module allows you to specify custom type converters for your command-line arguments. This allows you to modify user input before it’s stored in the argparse.Namespace.
getopt — C-style parser for command line options - Python
4 days ago · This module helps scripts to parse the command line arguments in sys.argv. It supports the same conventions as the Unix getopt() function (including the special meanings of arguments of the …
cmd — Support for line-oriented command interpreters — Python …
4 days ago · The Cmd class provides a simple framework for writing line-oriented command interpreters. These are often useful for test harnesses, administrative tools, and prototypes that will later be …
Python Documentation contents — Python 3.14.3 documentation
Why does Python use methods for some functionality (e.g. list.index ()) but functions for other (e.g. len (list))? Why is join () a string method instead of a list or tuple method?
Modules command-line interface (CLI) — Python 3.14.3 documentation
4 days ago · The following modules have a command-line interface. ast, asyncio, base64, calendar, code, compileall, cProfile: see profile, dis, doctest, encodings.rot_13, ensurepip, filecmp, fileinput, …
warnings — Warning control — Python 3.14.3 documentation
4 days ago · Developers of applications written in Python may wish to hide all Python level warnings from their users by default, and only display them when running tests or otherwise working on the …
gettext — Multilingual internationalization services — Python 3.14.3 ...
4 days ago · It is the recommended way of localizing your Python applications and modules. gettext defines a GNUTranslations class which implements the parsing of GNU .mo format files, and has …
Command-line interface libraries — Python 3.14.3 documentation
4 days ago · Command-line interface libraries ¶ The modules described in this chapter assist with implementing command line and terminal interfaces for applications. Here’s an overview:
8. Compound statements — Python 3.14.3 documentation
4 days ago · A suite can be one or more semicolon-separated simple statements on the same line as the header, following the header’s colon, or it can be one or more indented statements on …
ftplib — FTP protocol client — Python 3.14.3 documentation
You can use this to write Python programs that perform a variety of automated FTP jobs, such as mirroring other FTP servers. It is also used by the module urllib.request to handle URLs that use FTP.