Skip to main content

Library for read and write PGPack format between PostgreSQL and file.

Project description

PGPackDumper

Library for read and write PGPack format between PostgreSQL and file

Examples

Initialization

from pgpack_dumper import (
    CompressionMethod,
    PGConnector,
    PGPackDumper,
)

connector = PGConnector(
    host = <your host>,
    dbname = <your database>,
    user = <your username>,
    password = <your password>,
    port = <your port>,
)

dumper = PGPackDumper(
    connector=connector,
    compression_method=CompressionMethod.ZSTD,  # or CompressionMethod.LZ4 or CompressionMethod.NONE
)

Read dump from PostgreSQL into file

file_name = "test_table.pgpack"
# you need define one of parameter query or table_name
query = "select ..."  # some sql query
table_name = "public.test_table"  # or some table

with open(file_name, "wb") as fileobj:
    dumper.read_dump(
        fileobj,
        query,
        table_name,
    )

Write dump from file into PostgreSQL

file_name = "test_table.pgpack"
# you need define one of parameter table_name
table_name = "public.test_table"  # some table

with open(file_name, "rb") as fileobj:
    dumper.write_dump(
        fileobj,
        table_name,
    )

Write from PostgreSQL into PostgreSQL

Same server

table_dest = "public.test_table_write"  # some table for write
table_src = "public.test_table_read"  # some table for read
query_src = "select ..."  # or some sql query for read

dumper.write_between(
    table_dest,
    table_src,
    query_src,
)

Different servers

connector_src = PGConnector(
    host = <host src>,
    dbname = <database src>,
    user = <username src>,
    password = <password src>,
    port = <port src>,
)

dumper_src = PGPackDumper(connector=connector_src)

table_dest = "public.test_table_write"  # some table for write
table_src = "public.test_table_read"  # some table for read
query_src = "select ..."  # or some sql query for read

dumper.write_between(
    table_dest,
    table_src,
    query_src,
    dumper_src,
)

Get stream object

# you need define one of parameter query or table_name
query = "select ..."  # some sql query
table_name = "public.test_table"  # or some table
reader = dumper.to_reader(query=query, table_name=table_name)
print(reader)
# <PostgreSQL/GreenPlum stream reader>
# ┌─────────────────┬─────────────────┐
# │ Column Name     │ PostgreSQL Type │
# ╞═════════════════╪═════════════════╡
# │ column1         │ date            │
# │-----------------+-----------------│
# │ column2         │ bpchar          │
# │-----------------+-----------------│
# │ column3         │ bpchar          │
# └─────────────────┴─────────────────┘
# Total columns: 3
# Readed rows: 0

StreamReader has three methods available, but only one of the methods is available at a time within a single session.

# read as python generator object
reader.to_rows()
# or read as pandas.DataFrame
reader.to_pandas()
# or read as polars.DataFrame
reader.to_polars()

Write from python objects into target table

# some table for write data
table_name = "public.test_table"
dtype_data: Itarable[Any]
pandas_frame: pandas.DataFrame
polars_frame: polars.DataFrame

# write from python object
dumper.from_rows(dtype_data, table_name)
# write from pandas.DataFrame
dumper.from_pandas(pandas_frame, table_name)
# write from polars.DataFrame
dumper.from_polars(polars_frame, table_name)

Open PGPack file format

Get info from my another repository https://github.com/0xMihalich/pgpack

Installation

From pip

pip install pgpack-dumper

From local directory

pip install .

From git

pip install git+https://github.com/0xMihalich/pgpack_dumper

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pgpack_dumper-0.3.4.0-cp314-cp314-win_amd64.whl (47.3 kB view details)

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pgpack_dumper-0.3.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (214.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pgpack_dumper-0.3.4.0-cp314-cp314-macosx_11_0_arm64.whl (49.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pgpack_dumper-0.3.4.0-cp314-cp314-macosx_10_15_x86_64.whl (48.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pgpack_dumper-0.3.4.0-cp313-cp313-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pgpack_dumper-0.3.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pgpack_dumper-0.3.4.0-cp313-cp313-macosx_11_0_arm64.whl (49.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.4.0-cp313-cp313-macosx_10_14_x86_64.whl (48.6 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

pgpack_dumper-0.3.4.0-cp312-cp312-win_amd64.whl (46.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (227.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pgpack_dumper-0.3.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pgpack_dumper-0.3.4.0-cp312-cp312-macosx_11_0_arm64.whl (49.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.4.0-cp312-cp312-macosx_10_14_x86_64.whl (49.2 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

pgpack_dumper-0.3.4.0-cp311-cp311-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (220.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pgpack_dumper-0.3.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pgpack_dumper-0.3.4.0-cp311-cp311-macosx_11_0_arm64.whl (50.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.4.0-cp311-cp311-macosx_10_14_x86_64.whl (49.2 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

pgpack_dumper-0.3.4.0-cp310-cp310-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

pgpack_dumper-0.3.4.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (205.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

pgpack_dumper-0.3.4.0-cp310-cp310-macosx_11_0_arm64.whl (50.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.4.0-cp310-cp310-macosx_10_14_x86_64.whl (49.3 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

Details for the file pgpack_dumper-0.3.4.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d8cc300159fe24c23b7b40b18a7e7ed84c5f811a7bce5abccad5bf147a07e089
MD5 5923f3de653b77d61fddf554cf933705
BLAKE2b-256 849b92000a1131871501ba53f53d44f488982907ea249b32dd31050a9eb09534

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e595b1a04e22985365449b030c495679d52e32496313f59bb17b663fe3633a5e
MD5 4f3671d3c54ba005f91aad1bea5f25d0
BLAKE2b-256 c16bed0e2f48098fbe0d3ceb4d4c93bb6d4c6cb79191121d0ee2b988208cc468

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 64da6d6dcb747967be7a41f22cc20703403c91ccbafe9785d7bf775956d8b519
MD5 607db89e96d845ab9ec2f74597519d2c
BLAKE2b-256 3105e8cb3c056d0920e60d6b6e67d751e412790e4cda587a06aa35110b8bb89c

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1d6c03a57d28ed476ae7e7975bf354d2901ceef430216092b23c3a7d087253b
MD5 ac1e2ef43569685007e811e9bb20ffd4
BLAKE2b-256 cbe5c5ba959f9ad4fe8a861697f0dd76d1b62c27289911b7c9c0209fffe33724

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c165a8f3609212497a342cec4e51dca2ace069b4ff1e4946c5b4fd86f2cdf902
MD5 14bac1792711ea41ec3695e2808e178a
BLAKE2b-256 27cd5459ba27fad0610478f82550ab7fd420e57d583f8d4067000f5130cd54bd

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a6fc72b7aa5ad2e9e17997d093391e13e33ae0c9052a48fe9c7bf837820d009c
MD5 edbd496ddecf36344a2369e0a3cc40b6
BLAKE2b-256 5d54e00e42d257a540a284ae23a6cda716577064cee1f0144b8ec4fe59d09f30

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3577b2f49eff3662b709517089b385c76c34552b12bcdebb7bfe3e861fb3e60b
MD5 47aaeac9535b4f27c8c58c8a9e0fc6a6
BLAKE2b-256 669782329071553181cb7d8d448711a1520fb3581c413aa1de4eb07bb66c163f

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e7b80ce8ef50932f7862b904ec2f7c003adc87a4a95b8c6918936dd173277fa3
MD5 d021bffd5fc32aafb0f68ccec521f52c
BLAKE2b-256 ee4b492900efa8955f7c243571c981114c1c3f18d1fcabac529d4be8d4a1906b

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5df793126b4ca9f5ca5284e21fa475f34334876b836040729b61201fa409649a
MD5 22166e2c6085c31e2a1c470f7847ae60
BLAKE2b-256 769286d7ef34845e8eb41cf024368ea05fdd36fc0840348dcb48078fec069a65

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 09ea59a7af83354d8ccbd636cbeb0b07b75c8882319b9bb89375abf637a8a0e2
MD5 6d2339d0d38c112f069f441c5191f93e
BLAKE2b-256 c3afdbc1063234504f091c5e071420fbef51bf5408fab1478cc5db7956175320

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5593f592d79edfb4df25e7d4c80a2743a1a1bf8aa6313ec34c0edf79da7eb904
MD5 3030f9362fcc0f580fdfc0a48eeadaa7
BLAKE2b-256 ff2e02894ef93daf72d10d1d1ab1d76ea114488514c25ccd1a53fbce39598d9e

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1581e8bc6fe8d88ef5a1fc2d29e25166765d4331a905f37321634eb30cd20ca6
MD5 3b7cca2b91140763fc2a20bf320e46fb
BLAKE2b-256 117b4c8fae8c3aaae8c613526dc156b196861c30856ba2d874c8912510b18058

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 11f115512a143bf49993aa35acec0c703e30269d3a28fb4bd18030689d1002db
MD5 6050e0b808ee84c37260d3f6cd25b430
BLAKE2b-256 fdda6966c4fd4fac647661001462fb6cf1d569dd8a567cf630955040ad5b4cd0

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb9b9644cce8a965e5aaaa88ee88fd786019aaa95e725e2b96e5bf4ef6a8a1e4
MD5 00b8b09fe037540ce1e708dd4127ec1b
BLAKE2b-256 0d6cb70620c90b86cda88025e4ed9196e8e74dabee37376ef324024d3645f067

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8bcdf0939a2dc15b3e8b1858621c4d2681d0627678e0ffb0413a24fb5768b8c8
MD5 08ea52c3004c759c93cc24fe9de5b27a
BLAKE2b-256 aebca6b5a018226ca49a8c853d0f36b6690f833b3b69697fd64ae57c48eba49c

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ee93de75a5a7d1fa9ab687066f6958644062be1199d8f0cc095343ea7ede1861
MD5 b30ce036f6cb06a4cf8b3ab8e05b19f5
BLAKE2b-256 fadbc2c4a6caabc0b59ff79c5cafe3374669de32546ba6053a8b8db85bb8f7f9

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f7cd4a855e8893a8ffd21689462d42357b11fc6b7194cbde3af11d90803547e0
MD5 d686a11973c54d86191353a7bc416d43
BLAKE2b-256 77ee989117ae5586261386ace50d7e07fb932863dc3475d42320319b41c7a1d5

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3d701dbdcf3f3d4644115f041afd4a5928d28598eb5e877e844518a0bfe11349
MD5 aad79eecc0b1c90b5733803926dc5134
BLAKE2b-256 f3e498971f9d533c33d93f20d732af0d611cbf8b0169e4e08cde70ede2ebb27b

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f4ce75951eb57e24d6f15ef13a92425825a27f82906bfa1163f050e5ab4dbf3d
MD5 82296c633627f17c002e62710252a642
BLAKE2b-256 5cff5dcac8a0e98ab2f9821b4b12d1b808ea1b927dc27b9ee44b78dae3d72714

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6c948b9d18b73ed11cdc36ac53e46f96d3f6a7563efb51f6bc64c03a9bc3e08e
MD5 5788381e87cccd8f735ca70a50b30d03
BLAKE2b-256 204d1823ae0aec3ddfdcd7228e09427fa4c6a87dce1ae44c565778b50049b01b

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1148c4e952b8561ec255874e935523525a016ccc386c1e6b4c09cfbf0cbb3af0
MD5 65d89e957221578df4dc6c6f2996b8af
BLAKE2b-256 3276ad1b64c53c5874dba49cce85c6f15904ee57ff94d089cda28620fb1f601c

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 524be796c961ebd7a6d407178f6a3d937788b2f7dc1603da5c8ce96ffb772cf3
MD5 3b9c362332e3a4a39cb631b25695e0b1
BLAKE2b-256 b6835a03de843927e91ec89b98f97a44e0e08b09107fabc758913e803ded10bf

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 eba41ae021e9d81c7f35769b44bc6d70be516eb045e46edfe2c2eefeb48b0e57
MD5 4e6de8d6e5d42835293f449b6d7e214c
BLAKE2b-256 13855e43019377dcafd81b16ff4fa65ee2c6818ef4ab4c3b8e673f8ffd59102e

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d869555cd9545d933c5975875c9db3b28c9d67463501c3bc2adff5f9de52428
MD5 bd8df6703ac5dd7edba0a816ee0d1735
BLAKE2b-256 a7281da8f5115989105b8d2929350e0117610141ffe9822fc598ca3e7225f841

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.4.0-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.4.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1add80b6be87498bc72dbd38b9f0de34aa555a17eb8d0da23456eb9e1601536a
MD5 dfe6029d73b4e6828e105b889e7fb7e1
BLAKE2b-256 e66b4c9098af2e81ace0de63684ea44f26a137981fe4cb5587d2edb2fc25570b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page