pgcopy icon indicating copy to clipboard operation
pgcopy copied to clipboard

fast data loading with binary copy

Results 10 pgcopy issues
Sort by recently updated
recently updated
newest added

Is it possible for the Money DataType to be added? If not, does anyone have any tips on how to do this? I tried creating a formatter myself but with...

Need to check if the field is a timestamp... in that case use timedelta

In `threading_copy`, all exceptions raised from the `COPY` statement are lost. Using `concurrent.futures` solves this, because the `Future.result()` method raises unhandled exceptions. ### Warning This is Python 3.2+ only. I...

This is a question rather than an issue. I saw in the docs that: > PostgreSQL numeric does not support Decimal('Inf') or Decimal('-Inf'). pgcopy serializes these as NaN. However I...

Addressing https://github.com/altaurog/pgcopy/pull/27 but Python2 compatible.

Using your library to batch insert data from Parquet files into PostgreSQL, prepared like so: ```py schema = pa.schema( [ pa.field("timestamp_col", pa.timestamp("ms", tz="UTC")), pa.field("json_col", pa.struct([("can", pa.string())])), pa.field("array_str_col", pa.list_(pa.string())), pa.field("array_bigint_col", pa.list_(pa.int64())),...

Hi, are there any plans supporting new psycopg version https://pypi.org/project/psycopg/?

@altaurog Can you please help me check if I am missing something obvious. Any help is appreciated. I had 16 columns in tables where I am copying to and most...