Andreas Poehlmann
Andreas Poehlmann
> I'm thinking about ways to run HistoQC on a large dataset like all 30k slides from TCGA. A use case like this, was exactly why I started prototyping using...
This seems to be related to [ExceptionGroups](https://docs.python.org/3.11/library/exceptions.html#exception-groups) There's also a backport: https://github.com/agronholm/exceptiongroup And here's a relevant discussion https://discuss.python.org/t/accepting-pep-654-exception-groups-and-except/10813/41
Note: a url-chaining implementation should also support other chaining styles, see: https://github.com/zarr-developers/zeps/pull/48
Thank you for offering to contribute! To implement url chaining support two items have to be completed: 1. We need to first parse the chained url into (protocol, path, and...
A few notes regarding flavours: With #114 coming up, future versions of `universal_pathlib` will probably derive from the `pathlib.PathBase` base class (probably available in `python>=3.13`). Support for older pythons (`
It looks like we should implemenent our custom `pathlib_abc.PathModuleBase` for all Pythons when we start to rely on `pathlib_abc` See: https://github.com/barneygale/pathlib_abc/issues/19
Note to self: This should be relatively simple to achieve in the Python-3.12 support PR I have already drafted: https://github.com/ap--/universal_pathlib/blob/2878bff22e32dbc5240766f51b3e7d31c00b4b9a/upath/core312plus.py#L38-L58
see: https://github.com/python/cpython/issues/114575
With #129 merged, this will be possible (with the next release) with a very similar interface: **filesystem_spec** ```pycon >>> import fsspec >>> >>> fs0 = fsspec.filesystem("file", auto_mkdir=True) >>> fs0.storage_options {'auto_mkdir':...
This has been fixed via #96 Thank you @brl0 ❤️