Python Forum
Failing to iterate over captured StdOut
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Failing to iterate over captured StdOut
#1
Greetings!
I’m using a subprocess to run and capture an output of the “ARP- A” command to a list.
I’d like to iterate and filter some of the IPs from the captured list but I’m failing with no errors.
If I capture the same output to a file I have no problem with filtering IPs I want.
Code:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from pathlib import Path
import subprocess
import re
 
kk = []       
output = subprocess.run(
        ["arp", "-a"],
        #encoding="utf-8",
        capture_output=True,
        creationflags=subprocess.CREATE_NO_WINDOW,   # Notice this is a function argument, not variable assignment
    )
kk.append(output.stdout.strip())
 
for el in kk :
    el=el.strip()
    if "192.168.1" in el :
        cell = re.split('\s+', el)
       # and so on...
I understand stdout I'm capturing is in a 'wrong' format to do line by line search. I'm not sure how to get around this problem.
Thank you!
Reply
#2
output.stdout is bytes. Use decode to convert to a str.
1
2
3
4
5
6
7
8
9
import subprocess
 
output = subprocess.run(
        ["arp", "-a"],
        capture_output=True,
        creationflags=subprocess.CREATE_NO_WINDOW,
)
for i, line in enumerate(output.stdout.decode('utf-8').splitlines()):
    print(i, line)
The "encoding" argument in the run() command is for input, not output. Your command doesn't use input, so there is no need to provide an encoder.

The reason things work when you write output to a file is that reading from a text file invokes a decoder to convert the bytes in the file to python strings.
tester_V likes this post
Reply
#3
Great! I learned something new.
I removed 'enumerate', I do not need it, and it works great!
Thank you! You guys are awesome!
1
2
3
4
5
6
7
8
9
10
11
import subprocess
  
output = subprocess.run(
        ["arp", "-a"],
        capture_output=True,
        creationflags=subprocess.CREATE_NO_WINDOW,
)
aa = (output.stdout.decode('utf-8').splitlines())
for i in aa :
    if "192.168.1" in i :
        print(f" Found =>  {i}")
Reply
#4
If you add an encoding argument in run(), I think it may output a str instead of a bytes
1
subprocess. run(..., encoding='utf8')
tester_V likes this post
« We can solve any problem by introducing an extra level of indirection »
Reply
#5
Gribouillis is correct (as usual). This works fine.
1
2
3
4
5
6
7
8
9
10
import subprocess
 
output = subprocess.run(
    ["arp", "-a"],
    encoding="utf-8",
    capture_output=True,
    creationflags=subprocess.CREATE_NO_WINDOW,
)
for i, line in enumerate(output.stdout.splitlines()):
    print(i, line)
Somehow I missed this in the documentation:
Quote:If encoding or errors are specified, or text is true, file objects for stdin, stdout and stderr are opened in text mode using the specified encoding and errors or the io.TextIOWrapper default. The universal_newlines argument is equivalent to text and is provided for backwards compatibility. By default, file objects are opened in binary mode.
And this:
Quote:stdout¶
Captured stdout from the child process. A bytes sequence, or a string if run() was called with an encoding, errors, or text=True. None if stdout was not captured.
Not a good day for me.
tester_V likes this post
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  subprocess_run and stdout flux paul18fr 2 498 Jan-09-2025, 08:50 PM
Last Post: Gribouillis
  Failing to connect by 'net use' tester_V 1 1,027 Apr-20-2024, 06:31 AM
Last Post: tester_V
  [subprocess] Why stdout sent to stderr? Winfried 3 1,948 Jan-26-2024, 07:26 PM
Last Post: snippsat
  Performance options for sys.stdout.writelines dgrunwal 11 5,935 Aug-23-2022, 10:32 PM
Last Post: Pedroski55
  Failing regex tester_V 3 2,299 Aug-16-2022, 03:53 PM
Last Post: deanhystad
  Failing to connect to a host with WMI tester_V 6 6,062 Aug-10-2021, 06:25 PM
Last Post: tester_V
  Failing to get Stat for a Directory tester_V 11 5,373 Jul-20-2021, 10:59 PM
Last Post: Larz60+
  changing stdout and stderr Skaperen 4 3,895 Dec-02-2020, 08:58 PM
Last Post: Skaperen
  Failing to Zip files tester_V 4 3,170 Dec-01-2020, 07:28 AM
Last Post: tester_V
  Get stdout of a running process yok0 0 4,335 Aug-20-2020, 10:12 AM
Last Post: yok0

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020