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 8567189
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T17:49:31+00:00 2026-06-11T17:49:31+00:00

I have a text CLI based script written to test some equipment. Some of

  • 0

I have a text CLI based script written to test some equipment. Some of the test requires entering back yes/no answers as well as reading the script’s output. I want to see if it’s feasible to create a PyQT app. that can put a GUI front end on this type of interaction? E.g. when the user clicks a button to run a script, the script is run sending it’s output line at a time to a text window on the GUI, and any lines entered from the GUI are also sent down to the script.

TIA,
Fred

  • 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-11T17:49:32+00:00Added an answer on June 11, 2026 at 5:49 pm

    What is the criteria by which you’ll be judging whether it’s feasible or not?

    It certainly is possible. The QProcess class provides everything that you would need for running and interacting with external processes inside a Qt application. At its core, it can do everything that subprocess can do (albeit, less conveniently). Here’s a contrived usage example:

    button = QPushButton('start')
    textedit = QTextEdit()
    process = QProcess()
    
    button.clicked.connect(on_clicked)
    
    def on_clicked():
        process.readyReadStandardOutput.connect(read_ready)
        process.start('/bin/sh',
           ('-c', "while /bin/true; do echo hello world ; sleep 1; done"))
    
    def read_ready(self):
        chunk = process.readAllStandardOutput()
        textedit.append(str(chunk))
    

    Since you’re still at the planning stage, why not consider a tool such as zenity for the GUI part? It could save you a lot of work. Getting a list of checkboxes and sending the output of a command to a textarea becomes a matter of:

    parameters=$(
    zenity --list --text "Test parameters:" \
           --checklist --column "Check" --column "Parameter" \
           TRUE "One" TRUE "Two" TRUE "Three" FALSE "Four" \
           --separator=":");
    
    # parameters -> One:Two:Three
    ./instrument-test.py $parameters | zenity --text-info
    

    Best of luck with your project!

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

Sidebar

Related Questions

I have text file with some stuff that i would like to put into
I have a php CLI script and cannot get the output to break on
I'm an experienced GUI C# programmer and have some experience with C/C++ for CLI
To date, I have always coded using a text editor, and compiling using CLI
I have text next to a image (red square for now). When i make
I have text like this format term: 156^^^:^^59 datainput Or term: 156^^^:59 datainput or
I have text within a paragraph tag that that fits snug on the bottom
I have text input boxes. There is validation for each of the boxes using
I have text I am displaying in SIlverlight that is coming from a CMS
I have text file with something like first line line nr 2 line three

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.