GibbonJojo
Results
2
issues of
GibbonJojo
Hey, For a project, I used a logarithmic filter. I though others might find that useful as well. Code: ```python class Logarithmic(Codec): codec_id="logarithmic" def __init__(self, dtype, astype=None): self.dtype = np.dtype(dtype)...
New codec
I sometimes want to package virtualenvs with other python version than my system default. This adds another cli option to specify an alternative python executable. Naming is the same as...