aboutsummaryrefslogtreecommitdiffstats
path: root/random241arg.py
diff options
context:
space:
mode:
authorDavid Runge <david.runge@frqrec.com>2014-01-31 11:48:32 +0100
committerDavid Runge <david.runge@frqrec.com>2014-01-31 11:48:32 +0100
commit9ea16a768cd4143d2a3508d7193f8d0d784e40be (patch)
tree44baccc06244854d8efc5814f2b13917a24a7e74 /random241arg.py
parentf36bab3657757251435c676f91991873387e324d (diff)
downloadrandom241-9ea16a768cd4143d2a3508d7193f8d0d784e40be.tar.gz
random241-9ea16a768cd4143d2a3508d7193f8d0d784e40be.tar.bz2
random241-9ea16a768cd4143d2a3508d7193f8d0d784e40be.tar.xz
random241-9ea16a768cd4143d2a3508d7193f8d0d784e40be.zip
First commit, still some TODOs
Diffstat (limited to 'random241arg.py')
-rwxr-xr-xrandom241arg.py25
1 files changed, 25 insertions, 0 deletions
diff --git a/random241arg.py b/random241arg.py
new file mode 100755
index 0000000..4bd00d8
--- /dev/null
+++ b/random241arg.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python2
+
+from sys import argv
+
+
+def read_params():
+ # Checks the given parameters
+ info = """Use the program as following:
+ random241.py [option] <param> ...
+ Options:
+ -c number of cam to use (starts with first found camera 0 (default))
+ -r remote address to send the output to (standard 192.168.0.7)
+ """
+ default = {'-c': "1", '-r': "192.168.0.7"}
+ parameters = default.copy()
+ if len(argv) != 3:
+ for i in xrange(1, len(argv) - 1, 2):
+ if argv[i] in parameters:
+ parameters[argv[i]] = argv[i + 1]
+ else:
+ print info
+ return 0
+ return parameters
+ else:
+ return default