Re: Decoding a process output

2014-03-05 Thread Francis Moreau
On 03/04/2014 05:05 PM, Peter Otten wrote: > Francis Moreau wrote: > >> Hi, >> >> In my understanding (I'm relatively new to python), I need to decode any >> bytes data provided, in my case, by a shell command (such as findmnt) >> started by the subprocess module. The goal of my application is to

Re: Decoding a process output

2014-03-04 Thread Peter Otten
Francis Moreau wrote: > Hi, > > In my understanding (I'm relatively new to python), I need to decode any > bytes data provided, in my case, by a shell command (such as findmnt) > started by the subprocess module. The goal of my application is to parse > the command outputs. > > My application ru

Decoding a process output

2014-03-04 Thread Francis Moreau
Hi, In my understanding (I'm relatively new to python), I need to decode any bytes data provided, in my case, by a shell command (such as findmnt) started by the subprocess module. The goal of my application is to parse the command outputs. My application runs only on linux BTW and should run fin