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

  • Home
  • SEARCH
  • 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 8431891
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T05:58:37+00:00 2026-06-10T05:58:37+00:00

I have a program in python 2.7 and I cannot seem to run it

  • 0

I have a program in python 2.7 and I cannot seem to run it in command prompt on Windows XP using a redirected input. I’m trying to do something like:

C:\>python foo.py < input.txt

but nothing works. I’ve tried using <& variations along with leaving off the explicit call to python.exe.
I’ve tried variations of piping as well, but nothing seems to work.

I can run python programs from command prompt and parse argument inputs just fine. The problem is that I can’t make one of those arguments be input from a simple .txt file.

Thanks in advance.

  • 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-10T05:58:38+00:00Added an answer on June 10, 2026 at 5:58 am

    The problem is not with how you are running it from the command line, but rather how you have argparse set up in your script. You are definitely redirecting the file properly to stdin.

    input.txt

    foo
    

    foo.py

    import argparse, sys
    
    parser = argparse.ArgumentParser()
    parser.add_argument('infile', nargs='?', 
                        type=argparse.FileType('r'), 
                        default=sys.stdin)
    
    opts = parser.parse_args()
    
    print opts.infile.read()
    

    Output

    C:\> python foo.py < input.txt
    foo
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a python program that must work on Windows and Linux. There are
I have a python program/file that I want to run repeatedly and calculate the
I have a written a program in Python 3 and are using Sphinx to
On Windows I have a program (prog.exe) that reads from stdin. In python I
I have a Python program that uses psutil to run some various twistd ...
I have program that requires Python 3, but I develop Django and it uses
I have this program in Python which should save text files to a folder
I have a Python program that executes a large MySQL statement. How do I
I have a python program that takes the md5 & sha1 hash values of
I have a python program that opens several urls in seperate tabs in a

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.