Projects/laydi
Projects
/
laydi
Archived
7
0
Fork 0

read_ftsv and write_ftsv now supports filenames as well as file descriptors.

This commit is contained in:
Einar Ryeng 2007-08-08 12:23:45 +00:00
parent 04126e9c83
commit e08dba0924
1 changed files with 16 additions and 0 deletions

View File

@ -444,6 +444,11 @@ def write_ftsv(fd, ds):
@param ds: The dataset to be written. The function handles datasets
of these classes: Dataset, CategoryDataset and GraphDataset
"""
opened = False
if isinstance(fd, str):
fd = open(fd, 'w')
opened = True
# Write header information
if isinstance(ds, CategoryDataset):
type = 'category'
@ -475,6 +480,8 @@ def write_ftsv(fd, ds):
print >> fd, "%s\t" % m[j, i],
print >> fd
if opened:
fd.close()
def read_ftsv(fd):
"""Read a dataset in fluents tab separated values (ftsv) form and return it.
@ -483,6 +490,11 @@ def read_ftsv(fd):
@return: A Dataset, CategoryDataset or GraphDataset depending on the information
read.
"""
opened = False
if isinstance(fd, str):
fd = open(fd)
opened = True
split_re = re.compile('^#\s*(\w+)\s*:\s*(.+)')
dimensions = []
identifiers = {}
@ -548,5 +560,9 @@ def read_ftsv(fd):
else:
ds = Dataset(matrix, dims, name)
if opened:
fd.close()
return ds