Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8662433
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 12, 20262026-06-12T16:44:13+00:00 2026-06-12T16:44:13+00:00

I have a script which runs a subprocess as follows: child_process = subprocess.Popen([python, testset[‘dir’]

  • 0

I have a script which runs a subprocess as follows:

child_process = subprocess.Popen(["python", testset['dir'] + testname, \                                                                                                                                     
                              output_spec_file, plugin_directory],\                                                          
                              stderr=subprocess.PIPE, stdout=subprocess.PIPE)

In that process, I am trying to insert print statements but they are not appearing to stdout. I tried using sys.stdout.write() in that subprocess and then sys.stduout.read() right after child_process but it is not capturing the output.

I am new to Python and I haven’t gotten to that level of complexity in Python. I am actually working low level in C and there are some Python test scripts and I’m not sure how to print out from the subprocess.

Any suggestions?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-12T16:44:15+00:00Added an answer on June 12, 2026 at 4:44 pm

    sys.stdout.read (and write) are for standard input/output of the current process (not the subprocess). If you want to write to stdin of the child process, you need to use:

    child_process.stdin.write("this goes to child")  #Popen(..., stdin=subprocess.PIPE)
    

    and similar for reading from the child’s stdout stream:

    child_process = subprocess.Popen( ... , stdout=subprocess.PIPE)
    child_process.stdout.read("This is the data that comes back")
    

    Of course, it is generally more idiomatic to use:

    stdoutdata, stderrdata = child_process.communicate(stdindata)
    

    (taking care to pass subprocess.PIPE to the Popen constructor where appropriate) provided that your input data can be passed all at once.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a python script which uses subprocess.Popen to run multiple instances of another
I have a python script that runs a program, which generates few .exe files
So I have a python script that runs a loop in which it calls
I have a python script that runs a subprocess to get some data and
I have a school project for a Python script which runs an SQL query
I have this script which runs well in Python 2.7 but not in 2.6:
I have a shell script which runs a python program which has its own
I have made a batch script which runs a Python application. This batch script
Currently I have a bash script which runs the find command, like so: find
I have a simple Perl script which runs as a Linux daemon using an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.