summaryrefslogtreecommitdiff
path: root/python-template.py
diff options
context:
space:
mode:
authorgrothedev <grothedev@gmail.com>2026-04-29 01:00:18 -0400
committerGitHub <noreply@github.com>2026-04-29 01:00:18 -0400
commitfe210355a480b2386a05ba385aa5a265c4f7c966 (patch)
treeed10fcc4dd1153d983164bff9523f594b4d63ff8 /python-template.py
parente757d3020571cb139d9480f97e1b0fa86222660e (diff)
parent00a8a558aa2984401728c5027cf054b9d7a97b6f (diff)
Merge pull request #1 from grothedev/copilot/clean-up-and-organize-repomaster
Clean up top-level repo layout and document the script inventory
Diffstat (limited to 'python-template.py')
-rw-r--r--python-template.py27
1 files changed, 0 insertions, 27 deletions
diff --git a/python-template.py b/python-template.py
deleted file mode 100644
index fda7a42..0000000
--- a/python-template.py
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/usr/bin/python3
-
-import argparse
-import sys
-
-#this is a template for a python program that can be run from command line or used as a module
-
-def parseArgs():
- parser = argparse.ArgumentParser(description='the program does a thing')
- parser.add_argument('-v', '--verbose', action='store_true', help='verbose')
- parser.add_argument('-i', '--input', type=str, required=True, help='input file')
- parser.add_argument('-o', '--output', type=str, required=False, help='output file')
- args = parser.parse_args()
- return args
-
-def main():
- args = parseArgs()
- if args.verbose:
- print(f"Input file: {args.input}")
- if args.output:
- print(f"Output file: {args.output}")
-
-
-
-
-if __name__ == '__main__':
- main() \ No newline at end of file