Michael D Labriola

Results 6 comments of Michael D Labriola

Any chance this gets merged soon? Ever? I haven't tried @mat813's most recent branch yet, but I have been using one of his original branches for years for offsite replication.

> The way I've handled this in the past is to add the module arg when invoking a reader/transform/writer that's not already imported. i.e. > > ``` > transforms: >...

> Would something like this work: Use the reader/transforms/writers/ `__init__.py` files to import all the readers/transforms/writers. i.e. > > ``` > #logger.readers.__init__.py > > from . import cached_data_reader > from...

> Okay - I'm going to have a go at implementing the __init__.py solution. Will keep you posted. Cool! FYI, I haven't noticed any performance difference explicitly importing all the...

> The one change I've had to make (branch issue_391) is that instead of Webb's from . import cached_data_reader from . import logfile_reader I'm having to do from .cached_data_reader import...

> It works fine with "from logger.readers import *" - it's just that importing "*" is considered poor form. I misunderstood. This seems like a perfectly legit use case for...