Peter Bull

Results 265 comments of Peter Bull

Ah, yep. Sorry I missed that those just sit directly in `site-packages`. Here's the contents: - `__editable__.nbautoexport-0.5.0+3.g01818e8.dirty.pth`: ```python import __editable___nbautoexport_0_5_0_3_g01818e8_dirty_finder; __editable___nbautoexport_0_5_0_3_g01818e8_dirty_finder.install() ``` - `__editable___nbautoexport_0_5_0_3_g01818e8_dirty_finder.py`: ```python import sys from importlib.machinery import...

@torrinworx Like with boto3 directly, in order to access public resources anonymously you need to pass [`no_sign_request=True`](https://cloudpathlib.drivendata.org/stable/api-reference/s3client/) when you instantiate the `S3Client` (you can find [examples here](https://cloudpathlib.drivendata.org/stable/authentication/#advanced-use)). We'd take a...

Sorry @chbehrens. Delay is because, as you point out, the current implementation is a lot of boilerplate which seems less than ideal just to support use of `AnyPath` as a...

We'd accept a PR to [match the `shutil` signature](https://docs.python.org/3/library/shutil.html#shutil.rmtree). Thanks! (Also, curious what errors you are hitting since we're pretty diligent about existence checks throughout).

Thanks @benbemoh. Can you file a related issue where discussion of this change can happen? I see the value, but I want to make sure we cover all the potential...

Thanks for the patience @benbemoh. @gaisensei has filed a related issue, #254 where we can discuss this.

Thanks for filing @gaisensei! @benbemoh has a [sample implementation here](https://github.com/drivendataorg/cloudpathlib/pull/253) which is relevant for the discussion. I think we'd like to support passing the `ExtraArgs`, but I want to think...

Thanks @hugolytics for your thoughts here. It's definitely interesting to think about ways to leverage `smart_open`, especially given the breadth of backends it supports. We have a number of features...

The GCS tests have recently become flaky. We should see if there's some retry setting we can use at the SDK level to avoid this kind of flakiness. Here's the...

(1) Agreed that `src` -> `{{project name}}` makes sense. We'd accept that PR. (2) At times it can be useful to distinguish scripts from packages. In our experience, we don't...