About 299 results
Open links in new tab
  1. The Python Standard Library — Python 3.14.2 documentation

    1 day ago · In addition to the standard library, there is an active collection of hundreds of thousands of components (from individual programs and modules to packages and entire …

  2. Python Module Index — Python 3.14.2 documentation

    3 days ago · Python Module Index _ | a | b | c | d | e | f | g | h | i | j | k | l | m | n | o | p | q | r | s | t | u | v | w | x | z

  3. 6. Modules — Python 3.14.2 documentation

    1 day ago · Packages are a way of structuring Python’s module namespace by using “dotted module names”. For example, the module name A.B designates a submodule named B in a …

  4. 12. Virtual Environments and Packages — Python 3.14.2 …

    2 days ago · The solution for this problem is to create a virtual environment, a self-contained directory tree that contains a Python installation for a particular version of Python, plus a …

  5. 2. Writing the Setup Script — Python 3.11.14 documentation

    Mar 11, 2014 · The value for this keyword is a list of strings, each of which names a Python module or package, and optionally identifies the version. If the version is not specified, it is …

  6. statistics — Mathematical statistics functions — Python 3.14.2 ...

    3 days ago · Using a probability density function (pdf), compute the relative likelihood that a random variable X will be near the given value x. Mathematically, it is the limit of the ratio P(x …

  7. email — An email and MIME handling package - Python

    3 days ago · The email package is a library for managing email messages. It is specifically not designed to do any sending of email messages to SMTP (RFC 2821), NNTP, or other servers; …

  8. 5. The import system — Python 3.14.2 documentation

    5 days ago · Python defines two types of packages, regular packages and namespace packages. Regular packages are traditional packages as they existed in Python 3.2 and earlier.

  9. Installing Python Modules — Python 3.10.19 documentation

    Mar 10, 2019 · More information and resources regarding pip and its capabilities can be found in the Python Packaging User Guide. Creation of virtual environments is done through the venv …

  10. venv — Creation of virtual environments — Python 3.14.2 …

    3 days ago · The venv module supports creating lightweight “virtual environments”, each with their own independent set of Python packages installed in their site directories.