
The Python Standard Library — Python 3.13.3 documentation
1 day ago · While The Python Language Reference describes the exact syntax and semantics of the Python language, this library reference manual describes the standard library that is distributed with Python. It also describes some of the optional components that are commonly included in Python distributions.
Library and Extension FAQ — Python 3.13.3 documentation
2 days ago · You need to do two things: the script file’s mode must be executable and the first line must begin with #! followed by the path of the Python interpreter. The first is done by executing chmod +x scriptfile or perhaps chmod 755 scriptfile .
The Python Tutorial — Python 3.13.3 documentation
1 day ago · Python’s elegant syntax and dynamic typing, together with its interpreted nature, make it an ideal language for scripting and rapid application development in many areas on most platforms. The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms from the Python web site ...
runpy — Locating and executing Python modules — Python 3.13.3 …
4 days ago · The runpy module is used to locate and run Python modules without importing them first. Its main use is to implement the -m command line switch that allows scripts to be located using the Python module namespace rather than the filesystem.
modulefinder — Find modules used by a script - Python
4 days ago · This class provides run_script() and report() methods to determine the set of modules imported by a script. path can be a list of directories to search for modules; if not specified, sys.path is used.
2. Writing the Setup Script — Python 3.11.12 documentation
Mar 11, 2012 · The setup script is the centre of all activity in building, distributing, and installing modules using the Distutils. The main purpose of the setup script is to describe your module distribution to the Distutils, so that the various commands that operate on …
email: Examples — Python 3.13.3 documentation
2 days ago · This page is licensed under the Python Software Foundation License Version 2. Examples, recipes, and other code in the documentation are additionally licensed under the Zero Clause BSD License. See History and License for more information.
cgi — Common Gateway Interface support — Python 3.13.3 …
1 day ago · This module is no longer part of the Python standard library. It was removed in Python 3.13 after being deprecated in Python 3.11. The removal was decided in PEP 594.
zipapp — Manage executable Python zip archives — Python 3.13.3 ...
2 days ago · This module provides tools to manage the creation of zip files containing Python code, which can be executed directly by the Python interpreter. The module provides both a Command-Line Interface and a Python API. Basic Example¶
6. Modules — Python 3.13.3 documentation
1 day ago · Python comes with a library of standard modules, described in a separate document, the Python Library Reference (“Library Reference” hereafter).