Jay Qi
Jay Qi
Good news! @pjbull pointed out to me another option, which is probably the best for cases that support it. (0): For write functions that support getting [file objects/handles](https://docs.python.org/3/glossary.html#term-file-object) as inputs,...
Speculation: I wonder if perhaps `force_overwrite_from_cloud` could be a way to make this work. So the mechanism is: someone has `force_overwrite_from_cloud=True`, then those actions would skip trying to read anything...
I tried a new idea for `AnyPath`'s implementation to address type-checking issues, and had some successes, but unfortunately I don't think it will totally work. The idea I had was:...
@pjbull per my comment [here](https://github.com/drivendataorg/cloudpathlib/pull/206#issuecomment-1030867493), I think that the root cause for this issue may be misidentified. I think it might actually be the issue with `download_to` + `iterdir` that...
Probably makes sense to also document non-pathlib-interface alternatives: - [fsspec](https://filesystem-spec.readthedocs.io/en/latest/)-family of projects - [smart_open](https://github.com/RaRe-Technologies/smart_open) : only implements `open` for reading/writing
I did some light reading about ADLS Gen2. In particular, this [blog post](https://www.linkedin.com/pulse/azure-data-engineering-series-part-1-blob-storage-vs-lake-grandy/) was pretty helpful at explaining the differences between it and regular Blob Storage. It appears that ADLS...
I don't know that much about Azure Storage. Is it not the case that Blob Storage is `.blob.` and ADLS Gen2 is `.dfs.`? Is there some other way to determine...
Wow, well done. 👏 It looks to me like you're capturing the main cases. I think grabbing the entire source of the frame and parsing the AST is probably the...
Do you think `inspect.getsource` might have a different speed if it's getting the source from an installed version of cloudpathlib? (Editable and normal) 6 ms wall time per run isn't...
Uh oh, did we end up using a Python 3.8-only feature? It looks like the 3.8 build passed but 3.6 and 3.7 failed.