From 0cf3c6721456258219f627657c04982c7d49d159 Mon Sep 17 00:00:00 2001 From: Graham Northup Date: Wed, 10 Oct 2018 19:31:05 -0400 Subject: added compressions for IV files --- broadcast.py | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'broadcast.py') diff --git a/broadcast.py b/broadcast.py index bd607ca..d554e97 100644 --- a/broadcast.py +++ b/broadcast.py @@ -456,7 +456,15 @@ for fname in args: print 'PCM: exit' continue try: - iv = ET.parse(fname).getroot() + if fname.endswith('.ivz'): + import gzip + ivf = gzip.open(fname, 'rb') + elif fname.endswith('.ivb'): + import bz2 + ivf = bz2.BZ2File(fname, 'r') + else: + ivf = open(fname, 'rb') + iv = ET.parse(ivf).getroot() except IOError: import traceback traceback.print_exc() -- cgit v1.2.3-70-g09d2