About 399 results
Open links in new tab
  1. subprocess — Subprocess management — Python 3.14.2 documentation

    3 days ago · Information about how the subprocess module can be used to replace these modules and functions can be found in the following sections.

  2. Subprocesses — Python 3.14.2 documentation

    3 days ago · Because all asyncio subprocess functions are asynchronous and asyncio provides many tools to work with such functions, it is easy to execute and monitor multiple subprocesses in parallel.

  3. concurrent.futures — Launching parallel tasks — Python 3.9.24 …

    Mar 9, 2024 · The concurrent.futures module provides a high-level interface for asynchronously executing callables. The asynchronous execution can be performed with threads, using …

  4. argparse — Parser for command-line options, arguments and ... - Python

    Tutorial This page contains the API reference information. For a more gentle introduction to Python command-line parsing, have a look at the argparse tutorial. The argparse module makes it easy to …

  5. 日志操作手册 — Python 3.6.15 文档

    大多数 TTS 系统都有一个可运行的命令行程序,在 handler 中可以用 subprocess 进行调用。 这里假定 TTS 命令行程序不会与用户交互,或需要很长时间才会执行完毕,写入日志的信息也不会多到影响用 …

  6. Isolating Extension Modules — Python 3.14.2 documentation

    5 days ago · Isolating Extension Modules ¶ Abstract Traditionally, state belonging to Python extension modules was kept in C static variables, which have process-wide scope. This document describes …

  7. csv — CSV File Reading and Writing — Python 3.14.2 documentation

    3 days ago · Source code: Lib/csv.py The so-called CSV (Comma Separated Values) format is the most common import and export format for spreadsheets and databases. CSV format was used for many …

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

    Mar 11, 2014 · 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...

  9. 9. Classes — Python 3.14.2 documentation

    3 days ago · 9. Classes ¶ Classes provide a means of bundling data and functionality together. Creating a new class creates a new type of object, allowing new instances of that type to be made. Each class …

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

    Mar 11, 2014 · The context argument can have one of three values: 'main', indicating that it is called from virtualize() itself, and 'stdout' and 'stderr', which are obtained by reading lines from the output …