aboutsummaryrefslogtreecommitdiffstats
path: root/tests/optf-cmso/cmso/attlibs/CurlLibrary.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/optf-cmso/cmso/attlibs/CurlLibrary.py')
-rw-r--r--tests/optf-cmso/cmso/attlibs/CurlLibrary.py13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/optf-cmso/cmso/attlibs/CurlLibrary.py b/tests/optf-cmso/cmso/attlibs/CurlLibrary.py
deleted file mode 100644
index 44c62293..00000000
--- a/tests/optf-cmso/cmso/attlibs/CurlLibrary.py
+++ /dev/null
@@ -1,13 +0,0 @@
-from curl import Curl
-
-class CurlLibrary:
-
-
- def get_zip(self, url, filename):
- fp = open(filename, "wb")
- c = Curl()
- c.get(url, )
- c.set_option(c.WRITEDATA, fp)
- c.perform()
- c.close()
- fp.close() \ No newline at end of file