From 3c51abc350b203cfe0468f7103574108082c399b Mon Sep 17 00:00:00 2001 From: Shawn Wilkinson Date: Fri, 29 May 2015 23:20:30 -0400 Subject: [PATCH] Added RandomIO Test --- tools/__init__.py | 1 + tools/client.py | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 tools/__init__.py create mode 100644 tools/client.py diff --git a/tools/__init__.py b/tools/__init__.py new file mode 100644 index 0000000..e448a52 --- /dev/null +++ b/tools/__init__.py @@ -0,0 +1 @@ +__author__ = 'super3' diff --git a/tools/client.py b/tools/client.py new file mode 100644 index 0000000..42780c8 --- /dev/null +++ b/tools/client.py @@ -0,0 +1,5 @@ +import RandomIO + +path = RandomIO.RandomIO('seed string').genfile(50) +with open(path,'rb') as f: + print(f.read()) \ No newline at end of file