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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:04:09+00:00 2026-05-13T12:04:09+00:00

I have a c console app which converts a c file to a html

  • 0

I have a c console app which converts a c file to a html file, the c file location is passed to the program as a command line argument.(the app is for the windows platform)

What I would like to do is have a python gui app to allow the user to select a file and pass the location of the file to the c app for processing.

I already know how to create a basic python gui with tkinter, but I can’t figure out or find any usefull info on how I would go about intgrating the two programs.

Maybe its possible to pipe the string to the c app with the pOpen() method? (but I can’t figure out how…)

Note: Im new to python so code examples might be helpful rather then just description, (as Im not familiar with all of the python libraries etc,) although any help at all would be appreciated.

  • 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-05-13T12:04:09+00:00Added an answer on May 13, 2026 at 12:04 pm

    You probably want the subprocess module.

    At the very minimum:

    import subprocess
    retcode = subprocess.call(["/path/to/myCprogram", "/path/to/file.c"])
    if retcode == 0:
       print "success!"
    

    This will run the program with the arguments, and then return its return code.

    Note that subprocess.call will block until the program has completed, so if it’s not one which runs quickly, your entire Tkinter GUI will stop redrawing until it’s completed.

    For more advanced use, you may want to use subprocess.Popen. This will require you polling until the command has completed, but allows you to do it with less blocking.

    If your C program prints the HTML to standard out, you will need to pipe the output like so:

    proc = subprocess.Popen(["/path/to/myCprogram", "/path/to/file.c"], 
                            stdout=subprocess.PIPE, stderr=subprocess.PIPE)
    output, err_output = proc.communicate()
    # output will now contain the stdout of the program in a string
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a .Net console App which using a scheduled event will start, call
I have a console app that needs to display the state of items, but
I have one console app that is doing some lengthy syncing to an ftp
I have a C# console app App1 that reads a row of data from
What am I doing wrong? I have a simple console app in VS08. When
I have a C# class library and a startup project (a console app). The
I have a console program written in C# that I am using to send
In a C# console application, is there a smart way to have console output
I have a console application that will be kicked off with a scheduler. If
I have a Console application hosting a WCF service. I would like to be

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.