python的等待命令是什么意思_Python子进程:在开始下一个命令之前等待命令完成?...

I've written a Python script that downloads and converts many images, using wget and then ImageMagick via chainedsubprocess calls:

for img in images:

convert_str = 'wget -O ./img/merchant/download.jpg %s; ' % img['url']

convert_str += 'convert ./img/merchant/download.jpg -resize 110x110 '

convert_str += ' -background white -gravity center -extent 110x110'

convert_str += ' ./img/thumbnails/%s.jpg' % img['id']

subprocess.call(convert_str, shell=True)

If I run the content of convert_str manually at the command line, it appears to work without any errors, but if I run the script so it executes repeatedly, it sometimes gives me the following output:

--2013-06-19 04:01:50--

http://www.lkbennett.com/medias/sys_master/8815507341342.jpg

Resolving www.lkbennett.com... 157.125.69.163

Connecting to www.lkbennett.com|157.125.69.163|:80... connected.

HTTP request sent, awaiting response... 200 OK

Length: 22306 (22K) [image/jpeg]

Saving to: `/home/me/webapps/images/m/img/merchant/download.jpg'

0K .......... .......... . 100% 1.03M=0.02s

2013-06-19 04:01:50 (1.03 MB/s) -

`/home/annaps/webapps/images/m/img/merchant/download.jpg' saved [22306/22306]

/home/annaps/webapps/images/m/img/merchant/download.jpg

[Errno 2] No such file or directory:

' /home/annaps/webapps/images/m/img/merchant/download.jpg'

Oddly, despite the No such file or directory message, the images generally seem to have downloaded and converted OK. But occasionally they look corrupt, with black stripes on them (even though I'm using the latest version of ImageMagick), which I assume is because they aren't completely downloaded before the command executes.

Is there any way I can say to Python or to subprocess: "don't run the second command until the first has definitely completed successfully?". I found this question but can't see a clear answer!

解决方案

Normally, subprocess.call is blocking.

If you want non blocking behavior, you will use subprocess.Popen. In that case, you have to explicitly use Popen.wait to wait for the process to terminate.

BTW, in shell, if you wish to chain process you should use && instead of ; -- thus preventing the second command to be launched if the first one failed. In addition, you should test the subprocess exit status in your Python program in order to determine if the command was successful or not.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值