From 2163bfa4f62dceada7c4383f29844642051e8f9d Mon Sep 17 00:00:00 2001 From: internetlandlord Date: Wed, 12 Oct 2022 20:58:36 +0000 Subject: Updated README.md and added a testing file --- tester.py | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100755 tester.py (limited to 'tester.py') diff --git a/tester.py b/tester.py new file mode 100755 index 0000000..e44982f --- /dev/null +++ b/tester.py @@ -0,0 +1,25 @@ +#!/bin/python3 + +# ---------- Testing script +# Uses command line arguments to call functions + + +# ---------- Imported modules + +import inputoutput as io +import csv +import sys + +# ---------- Main + +# command line args passed to variables +rspan = int(sys.argv[1]) +rlim = int(sys.argv[2]) +ofile =sys.argv[3] + +print("Your params:\n") +print("\tCSV size: {}".format(rspan)) +print("\tNumber range: 1 - {}".format(rlim)) +print("\tOutput file: {}".format(ofile)) +print("\nGenerating a CSV!") +io.generateCSV(rspan,rlim,ofile) -- cgit v1.2.3