开源 企业版 高校版 私有云 模力方舟 AI 队友
代码拉取完成,页面将自动刷新
加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
已有帐号? 立即登录
文件
master
分支 (1)
master
master
分支 (1)
master
克隆/下载
克隆/下载
提示
下载代码请复制以下命令到终端执行
为确保你提交的代码身份被 Gitee 正确识别,请执行以下命令完成配置
初次使用 SSH 协议进行代码克隆、推送等操作时,需按下述提示完成 SSH 配置
1 生成 RSA 密钥
2 获取 RSA 公钥内容,并配置到 SSH公钥
在 Gitee 上使用 SVN,请访问 使用指南
使用 HTTPS 协议时,命令行会出现如下账号密码验证步骤。基于安全考虑,Gitee 建议 配置并使用私人令牌 替代登录密码进行克隆、推送等操作
Username for 'https://gitee.com': userName
Password for 'https://userName@gitee.com': # 私人令牌
master
分支 (1)
master
python3.7.4
/
Doc
/
library
/
asyncio-subprocess.rst
python3.7.4
/
Doc
/
library
/
asyncio-subprocess.rst
asyncio-subprocess.rst 11.14 KB
一键复制 编辑 原始数据 按行查看 历史
zhangweibo 提交于 2021年11月17日 13:49 +08:00 . git init
.. currentmodule:: asyncio

Subprocesses

This section describes high-level async/await asyncio APIs to create and manage subprocesses.

Here's an example of how asyncio can run a shell command and obtain its result:

import asyncio

async def run(cmd):
 proc = await asyncio.create_subprocess_shell(
 cmd,
 stdout=asyncio.subprocess.PIPE,
 stderr=asyncio.subprocess.PIPE)

 stdout, stderr = await proc.communicate()

 print(f'[{cmd!r} exited with {proc.returncode}]')
 if stdout:
 print(f'[stdout]\n{stdout.decode()}')
 if stderr:
 print(f'[stderr]\n{stderr.decode()}')

asyncio.run(run('ls /zzz'))

will print:

['ls /zzz' exited with 1]
[stderr]
ls: /zzz: No such file or directory

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. It is indeed trivial to modify the above example to run several commands simultaneously:

async def main():
 await asyncio.gather(
 run('ls /zzz'),
 run('sleep 1; echo "hello"'))

asyncio.run(main())

See also the Examples subsection.

Creating Subprocesses

.. coroutinefunction:: create_subprocess_exec(program, \*args, stdin=None, \
 stdout=None, stderr=None, loop=None, \
 limit=None, \*\*kwds)

 Create a subprocess.

 The *limit* argument sets the buffer limit for :class:`StreamReader`
 wrappers for :attr:`Process.stdout` and :attr:`Process.stderr`
 (if :attr:`subprocess.PIPE` is passed to *stdout* and *stderr* arguments).

 Return a :class:`~asyncio.subprocess.Process` instance.

 See the documentation of :meth:`loop.subprocess_exec` for other
 parameters.

.. coroutinefunction:: create_subprocess_shell(cmd, stdin=None, \
 stdout=None, stderr=None, loop=None, \
 limit=None, \*\*kwds)

 Run the *cmd* shell command.

 The *limit* argument sets the buffer limit for :class:`StreamReader`
 wrappers for :attr:`Process.stdout` and :attr:`Process.stderr`
 (if :attr:`subprocess.PIPE` is passed to *stdout* and *stderr* arguments).

 Return a :class:`~asyncio.subprocess.Process` instance.

 See the documentation of :meth:`loop.subprocess_shell` for other
 parameters.

Important

It is the application's responsibility to ensure that all whitespace and special characters are quoted appropriately to avoid :func:`shlex.quote` function can be used to properly escape whitespace and special shell characters in strings that are going to be used to construct shell commands.

Note

The default asyncio event loop implementation on Windows does not support subprocesses. Subprocesses are available for Windows if a :class:`ProactorEventLoop` is used. See :ref:`Subprocess Support on Windows <asyncio-windows-subprocess>` for details.

.. seealso::

 asyncio also has the following *low-level* APIs to work with subprocesses:
 :meth:`loop.subprocess_exec`, :meth:`loop.subprocess_shell`,
 :meth:`loop.connect_read_pipe`, :meth:`loop.connect_write_pipe`,
 as well as the :ref:`Subprocess Transports <asyncio-subprocess-transports>`
 and :ref:`Subprocess Protocols <asyncio-subprocess-protocols>`.


Constants

.. data:: asyncio.subprocess.PIPE

 Can be passed to the *stdin*, *stdout* or *stderr* parameters.

 If *PIPE* is passed to *stdin* argument, the
 :attr:`Process.stdin <asyncio.subprocess.Process.stdin>` attribute
 will point to a :class:`StreamWriter` instance.

 If *PIPE* is passed to *stdout* or *stderr* arguments, the
 :attr:`Process.stdout <asyncio.subprocess.Process.stdout>` and
 :attr:`Process.stderr <asyncio.subprocess.Process.stderr>`
 attributes will point to :class:`StreamReader` instances.

.. data:: asyncio.subprocess.STDOUT

 Special value that can be used as the *stderr* argument and indicates
 that standard error should be redirected into standard output.

.. data:: asyncio.subprocess.DEVNULL

 Special value that can be used as the *stdin*, *stdout* or *stderr* argument
 to process creation functions. It indicates that the special file
 :data:`os.devnull` will be used for the corresponding subprocess stream.


Interacting with Subprocesses

Both :func:`create_subprocess_exec` and :func:`create_subprocess_shell` functions return instances of the Process class. Process is a high-level wrapper that allows communicating with subprocesses and watching for their completion.

An object that wraps OS processes created by the :func:`create_subprocess_exec` and :func:`create_subprocess_shell` functions.

This class is designed to have a similar API to the :class:`subprocess.Popen` class, but there are some notable differences:

This class is :ref:`not thread safe <asyncio-multithreading>`.

See also the :ref:`Subprocess and Threads <asyncio-subprocess-threads>` section.

.. coroutinemethod:: wait()

 Wait for the child process to terminate.

 Set and return the :attr:`returncode` attribute.

 .. note::

 This method can deadlock when using ``stdout=PIPE`` or
 ``stderr=PIPE`` and the child process generates so much output
 that it blocks waiting for the OS pipe buffer to accept
 more data. Use the :meth:`communicate` method when using pipes
 to avoid this condition.

.. coroutinemethod:: communicate(input=None)

 Interact with process:

 1. send data to *stdin* (if *input* is not ``None``);
 2. read data from *stdout* and *stderr*, until EOF is reached;
 3. wait for process to terminate.

 The optional *input* argument is the data (:class:`bytes` object)
 that will be sent to the child process.

 Return a tuple ``(stdout_data, stderr_data)``.

 If either :exc:`BrokenPipeError` or :exc:`ConnectionResetError`
 exception is raised when writing *input* into *stdin*, the
 exception is ignored. This condition occurs when the process
 exits before all data are written into *stdin*.

 If it is desired to send data to the process' *stdin*,
 the process needs to be created with ``stdin=PIPE``. Similarly,
 to get anything other than ``None`` in the result tuple, the
 process has to be created with ``stdout=PIPE`` and/or
 ``stderr=PIPE`` arguments.

 Note, that the data read is buffered in memory, so do not use
 this method if the data size is large or unlimited.

.. method:: send_signal(signal)

 Sends the signal *signal* to the child process.

 .. note::

 On Windows, :py:data:`SIGTERM` is an alias for :meth:`terminate`.
 ``CTRL_C_EVENT`` and ``CTRL_BREAK_EVENT`` can be sent to processes
 started with a *creationflags* parameter which includes
 ``CREATE_NEW_PROCESS_GROUP``.

.. method:: terminate()

 Stop the child process.

 On POSIX systems this method sends :py:data:`signal.SIGTERM` to the
 child process.

 On Windows the Win32 API function :c:func:`TerminateProcess` is
 called to stop the child process.

.. method:: kill()

 Kill the child.

 On POSIX systems this method sends :py:data:`SIGKILL` to the child
 process.

 On Windows this method is an alias for :meth:`terminate`.

.. attribute:: stdin

 Standard input stream (:class:`StreamWriter`) or ``None``
 if the process was created with ``stdin=None``.

.. attribute:: stdout

 Standard output stream (:class:`StreamReader`) or ``None``
 if the process was created with ``stdout=None``.

.. attribute:: stderr

 Standard error stream (:class:`StreamReader`) or ``None``
 if the process was created with ``stderr=None``.

Warning

Use the :meth:`communicate` method rather than :attr:`process.stdin.write() <stdin>`, :attr:`await process.stdout.read() <stdout>` or :attr:`await process.stderr.read <stderr>`. This avoids deadlocks due to streams pausing reading or writing and blocking the child process.

.. attribute:: pid

 Process identification number (PID).

 Note that for processes created by the :func:`create_subprocess_shell`
 function, this attribute is the PID of the spawned shell.

.. attribute:: returncode

 Return code of the process when it exits.

 A ``None`` value indicates that the process has not terminated yet.

 A negative value ``-N`` indicates that the child was terminated
 by signal ``N`` (POSIX only).

Subprocess and Threads

Standard asyncio event loop supports running subprocesses from different threads, but there are limitations:

  • An event loop must run in the main thread.
  • The child watcher must be instantiated in the main thread before executing subprocesses from other threads. Call the :func:`get_child_watcher` function in the main thread to instantiate the child watcher.

Note that alternative event loop implementations might not share the above limitations; please refer to their documentation.

.. seealso::

 The :ref:`Concurrency and multithreading in asyncio
 <asyncio-multithreading>` section.


Examples

An example using the :class:`~asyncio.subprocess.Process` class to control a subprocess and the :class:`StreamReader` class to read from its standard output.

The subprocess is created by the :func:`create_subprocess_exec` function:

import asyncio
import sys

async def get_date():
 code = 'import datetime; print(datetime.datetime.now())'

 # Create the subprocess; redirect the standard output
 # into a pipe.
 proc = await asyncio.create_subprocess_exec(
 sys.executable, '-c', code,
 stdout=asyncio.subprocess.PIPE)

 # Read one line of output.
 data = await proc.stdout.readline()
 line = data.decode('ascii').rstrip()

 # Wait for the subprocess exit.
 await proc.wait()
 return line

if sys.platform == "win32":
 asyncio.set_event_loop_policy(
 asyncio.WindowsProactorEventLoopPolicy())

date = asyncio.run(get_date())
print(f"Current date: {date}")

See also the :ref:`same example <asyncio_example_subprocess_proto>` written using low-level APIs.

Loading...
举报
举报成功
我们将于2个工作日内通过站内信反馈结果给你!
请认真填写举报原因,尽可能描述详细。
请选择举报类型
取消
发送
误判申诉

此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。

如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。

取消
提交

简介

暂无描述
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
编辑仓库简介
简介内容
主页
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/python_sourcecode/python3.7.4.git
git@gitee.com:python_sourcecode/python3.7.4.git
python_sourcecode
python3.7.4
python3.7.4
master
点此查找更多帮助

搜索帮助

评论
仓库举报
回到顶部
登录提示
该操作需登录 Gitee 帐号,请先登录后再操作。
立即登录
没有帐号,去注册

AltStyle によって変換されたページ (->オリジナル) /