Ian Carroll

Results 109 comments of Ian Carroll

Thanks, @alexandervladsemenov. In your proposed modification: ```python class EarthAccessFile(fsspec.spec.AbstractBufferedFile): ... def __init__(...): ... # Automatically copy all methods from self.f for name, member in inspect.getmembers(f): if inspect.ismethod(member) or inspect.isfunction(member): setattr(self,...

Thanks for checking on this one @chuckwondo! My guess on the need for this class was something to do with deserializing into a useable object in case authentication timed out....

@jrbourbeau The essential question is whether removing `fsspec.spec.AbstractBufferedFile` from the MRO of `EarthAccessFile` will break the usage @betolink describes. I don't think we have a test using coiled. (We still...

@chuckwondo: > Pickling potentially oddly complex objects to distribute them to other processes can be more problematic than passing around simpler things, such as the URLs from which the files...

No worries @jrbourbeau, thanks for the review! > Though not sure exactly what's going on with the integration tests Someone with write-access needs to trigger them is all.

Am I correct that the suggestion to disable progress bars by default, noted as possibly controversial by @mfisher87, has now been merged but not released? I think many users will...

Also, the `pqdm_kwargs` option does not work for `earthaccess.download` when in region.

Opportunity to revisit #761. I will aim to make it to next hackday and attempt progress there with this fairly simple decision as a practical case.

How would you like to handle name collisions with categories from an environment.yml?