Created
April 1, 2015 17:07
-
-
Save krisarmstrong/e67198ef7bbe31c750c6 to your computer and use it in GitHub Desktop.
Command line arguments input file and output file along with a help statement
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| def main(argv): | |
| inputfile = '' | |
| outputfile = '' | |
| try: | |
| opts, args = getopt.getopt(argv,"hi:o:", ["ifile=", "ofile="]) | |
| except getopt.GetoptError: | |
| print('test.py -i <inputfile> -o <outputfile>') | |
| sys.exit(2) | |
| for opt, arg in opts: | |
| if opt == '-h': | |
| print('test.py -i <inputfile> -o <outputfile>') | |
| sys.exit() | |
| elif opt in ("-i", "--ifile"): | |
| inputfile = arg | |
| elif opt in ("-o", "--ofile"): | |
| outputfile = arg | |
| print('Input file is "', inputfile) | |
| print('Output file is "', outputfile) | |
| if __name__ == "__main__": | |
| main(sys.argv[1:]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment