对 Python 的分叉子进程支持
项目描述
对 Python 的分叉子进程支持
这个包允许在后台运行一个子进程,包括向子进程发送数据和从它接收数据。线程用于实现数据的读/写。
基本用法
from forkedsubprocess import ForkedSubprocess
process = ForkedSubprocess(['cat'])
process.run()
process.send('some string')
returncode = process.wait()
stdout = process.stdout
stderr = process.stderr
output = process.output
将输出写入控制台
输出可以同时使用enable_output=True.
from forkedsubprocess import ForkedSubprocess
process = ForkedSubprocess(['cat'], enable_output=True)
process.run()
process.send('some string')
returncode = process.wait()
stdout = process.stdout
stderr = process.stderr
output = process.output
使用回调
回调可用于接收到的每一行输出。
from forkedsubprocess import ForkedSubprocess
def my_callback(line: str):
print(f'LINE: {line}')
process = ForkedSubprocess(['cat'], output_callback=my_callback)
process.run()
process.send('some string')
returncode = process.wait()
stdout = process.stdout
stderr = process.stderr
output = process.output
执照
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
项目详情
关
forkedsubprocess -1.0.3.tar.gz 的哈希值
| 算法 | 哈希摘要 | |
|---|---|---|
| SHA256 | e60072c30d8fcefdf30f6a02fd4e202a1cae3681bf3bb56d31c4875c73662753 |
|
| MD5 | ac30f326d50d944af934990b3d0e4776 |
|
| 布莱克2-256 | 7c79081b129a4fd8f852277084a42ec4d6fd81b78835d5ecdd2e2e5d6a63dbbc |
关
forkedsubprocess -1.0.3-py3-none-any.whl 的哈希值
| 算法 | 哈希摘要 | |
|---|---|---|
| SHA256 | 6f45250724402f1bdc940ac4f6bf23934a5330e3a8b3290f8a1d37c4649ad14d |
|
| MD5 | 3aa5b35458cc0901d1791f9c32c5bb39 |
|
| 布莱克2-256 | 8a20a4369bc6704c0a7381ad161ebf109f4a3039007be093acefe0caa041b3c9 |