Mercurial > ~darius > hgwebdir.cgi > pyinst
view datafile.py @ 73:ca5a822c550a
Fix for Python 3
Add getbin function to read large non-arrat data blocks (eg screen capture)
author | Daniel O'Connor <doconnor@gsoft.com.au> |
---|---|
date | Wed, 25 Sep 2024 20:57:26 +0930 |
parents | 91b476ebc0f2 |
children |
line wrap: on
line source
import exceptions import numpy class DataFile(object): def __init__(self, fname): f = file(fname) self.opts = {} for line in f: key, value = line.strip().split(' ', 1) if key == "XDATA": self.freqs = numpy.fromstring(value, sep = ', ') continue if key == "YDATA": self.powers = numpy.fromstring(value, sep = ', ') continue try: self.opts[key] = int(value) except exceptions.ValueError as e: try: self.opts[key] = float(value) except exceptions.ValueError as e: self.opts[key] = value def __getitem__(self, k): return self.opts[k]