Adam Murphy
Adam Murphy
Can you add some python code we can copy/paste that will regenerate your error?
@Oreilles did you figure out a way to solve that? I write the same file with fiona and it doesn't complain. But pyogrio does. Would love to write at the...
Wow thanks for the super speedy responses! I'm using pyogrio 0.7.2. Good to know that the values are actually written correctly. @jorisvandenbossche maybe I'm missing something but it seems like...
Similarly, if you try to do `chain.predict(abc='hello')` when the chain expects input to be `xyz`, the ValueError is a bit vague: `ValueError: Missing some input keys: {'abc'}` Something like `ValueError:...
Update: this works ```python import boto3 from cloudpathlib import S3Path from loguru import logger output_path = S3Path("s3://bucket-name/key.gpkg") if isinstance(output_path, S3Path): a.to_file(output_path.name, engine='pyogrio') logger.info(f"Written to disk locally {output_path.name}") s3 = boto3.resource('s3')...
``` SYSTEM INFO ----------- python : 3.10.6 (tags/v3.10.6:9c7b4bd, Aug 1 2022, 21:53:49) [MSC v.1932 64 bit (AMD64)] executable : C:\Users\User\AppData\Local\pypoetry\Cache\virtualenvs\big-bertha-O8kHtzvf-py3.10\Scripts\python.exe machine : Windows-10-10.0.22621-SP0 GEOS, GDAL, PROJ INFO --------------------- GEOS :...
Wonderful :) any idea when this will be released?
Aha! Yes `logger.complete()` makes it work. Thanks
But hmm, does this mean I always have to call `logger.complete()` before `assert_no_errors_logged()`?
Amazing thank you! @theroggy could you write 'python' after the triple backticks? It's so much nicer to read.