tspreprocess icon indicating copy to clipboard operation
tspreprocess copied to clipboard

Change import of compress

Open nikhase opened this issue 8 years ago • 1 comments

from tspreprocess.compress.compress import compress looks very redundant.

I would prefer from tspreprocess.compress import compress. One could get rid of the intermediate folders and have all files on the 2nd level?

One could also think of renaming the compression function such that it does not coincide with the module name, e.g. to compress_ts.

nikhase avatar Aug 12 '17 17:08 nikhase

I would prefer from tspreprocess.compress import compress. One could get rid of the intermediate folders and have all files on the 2nd level?

this is easy. just import the method in the respective init.py to move methods from one namespace to another. we can do that later once we have more code and an indication into which direction we are going with tspreprocess

MaxBenChrist avatar Aug 14 '17 10:08 MaxBenChrist