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.0.0-cp314-cp314-win_amd64.whl (47.1 kB view details)

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (222.6 kB view details)

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

pgpack_dumper-0.3.0.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (222.4 kB view details)

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

pgpack_dumper-0.3.0.0-cp314-cp314-macosx_11_0_arm64.whl (50.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pgpack_dumper-0.3.0.0-cp314-cp314-macosx_10_15_x86_64.whl (49.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (223.1 kB view details)

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

pgpack_dumper-0.3.0.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (224.5 kB view details)

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

pgpack_dumper-0.3.0.0-cp313-cp313-macosx_11_0_arm64.whl (50.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.0.0-cp313-cp313-macosx_10_14_x86_64.whl (49.7 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (236.2 kB view details)

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

pgpack_dumper-0.3.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (238.0 kB view details)

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

pgpack_dumper-0.3.0.0-cp312-cp312-macosx_11_0_arm64.whl (51.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.0.0-cp312-cp312-macosx_10_14_x86_64.whl (50.4 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

pgpack_dumper-0.3.0.0-cp311-cp311-win_amd64.whl (46.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.4 kB view details)

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

pgpack_dumper-0.3.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.2 kB view details)

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

pgpack_dumper-0.3.0.0-cp311-cp311-macosx_11_0_arm64.whl (51.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.0.0-cp311-cp311-macosx_10_14_x86_64.whl (50.5 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.7 kB view details)

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

pgpack_dumper-0.3.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (213.8 kB view details)

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

pgpack_dumper-0.3.0.0-cp310-cp310-macosx_11_0_arm64.whl (51.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.0.0-cp310-cp310-macosx_10_14_x86_64.whl (49.8 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4d425f43d382da3006ec10cd58026b8b0b422389acc7a5a8c96ec48d5aa461a2
MD5 057c4f9c2e9563bdb4419f18613d3110
BLAKE2b-256 473890e24c2d8584e5164469ccb88d973be627eddc526d7e59249ec590b934ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73a6209655b7646f4afc0f780a6811ac65d31f47b513e78e035476ba9733cb85
MD5 67b022d68ed475b345ff97c8549ec619
BLAKE2b-256 7f41767aff7d1fb8a461cff9feedc0d6f92bf662f043921836426991882e998a

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.0.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.0.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a04a2d48923d3a1ea603eab3dd6455fbb66fb34863df3d3d2c279967fada03f9
MD5 e0936c0dcd653103e71e2922fe91bc03
BLAKE2b-256 18feb913dc74f876b91bafb6667b8b8ef273b6cf0969eb682c1b081e4d6cf219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 228bd5d51fe88af88a91b92cf7710cd53c6efe6488c69d5251166deb59b6fcd5
MD5 e1ffcaf4b1a9d025c3bec47b47ec7d87
BLAKE2b-256 720ed28127da7a137f82ffbab328a22070864423e4eaf52a036a726a6108c41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ee2a0716a550339ee22de3b53710f1db94a74add7cbe686991771b5a1747b287
MD5 a9788dcd375c88af1d993d80afe96f41
BLAKE2b-256 a982ea34c704a3d79cb748cd99dcbad6495504ae3c24feebd75e830f17580c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a6f133946e71def3d81730a8a83807eae31671acaddd21ef2425a85eb253c48c
MD5 259b4cab595c876bc70933bca6813345
BLAKE2b-256 cee560e4d73cd4d648a8b6b4ca5bd5b54540a4c779d731c137011b6a5b6c7e54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a34a6600142ecd16fa2b4e0a8b5d8bde03fb2953df91593528ded3da5056b9c
MD5 d6bdc6908f57b70a127945c1a3e7d27d
BLAKE2b-256 63ff18c9cdabc4860781d98b572203bfcfe29cfe7165ee8c18051e5e34f6fcc1

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.0.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.0.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 876cc8d9b95c6b988213ee49c670162c4e2d33078156ebb97bd8e8b84107d9d7
MD5 b2d3b760f29438fdebf845ea2cff87ad
BLAKE2b-256 c7c8866bf9edff10066ba0be26abe51923d45fc37a4c951b42edb5ea32e9a1ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4fa659df002664fc201d366318e09d50479ebd7a49bb9b668fb86c1f4faa7b7
MD5 7754b8e52f67ff0805fdd4a5c464de7d
BLAKE2b-256 d9f0d5bdaf6bc6dfcdedb62e07d72f892292a8db768b09611079b6dd6d637013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c8bd1d8faa41655bf06cc2471d1c3d5d429793e273520a42d6212e7b5d9e4355
MD5 14e1b9524240c32432bc263d5b4f6515
BLAKE2b-256 caba7b02050afb49f95d25f98b9b45dcf08308f01105af7d47692ddbbc14a177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 28fe9cc5b5e93e61a6b8dac666de888b2aeee0cf3ec04dae9b66eeebf1d2afb3
MD5 9a866b8c9ae674ae3ba4c6116b3a9926
BLAKE2b-256 7e13d3f206157b1c8d102b5a5e7d98a271129f0abcc4965514b33b6d600531fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8a6aa44bfc5173d262033b5ccad4f7a6bce39e6bb3c01cf6faeebec74673e458
MD5 6fada4249c3931c703c27834d1941e67
BLAKE2b-256 4f8532ef8af80f4153cf8400fd527d1ea3d1e1fd93cfdb98c1a5a60055b83fda

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.0.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.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fe067570d9c01b2f6a4832284c7a6aa312255a8be0d6d517dd33815985363f99
MD5 a858c1c2665c380e1c240566eb11c384
BLAKE2b-256 c23b2ac529315c7b90351dbc92140a112ebd86ddcdeccd2a6f9ba5a6e08dc450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6a8edd3872e14103941f740cd3435e992860b9721803eda6dfadfdd20d8d760
MD5 ae070e24404358943a8c834f3d3633bf
BLAKE2b-256 bd3aeb3d00b755a7da56c54b7bf21b994641348f8b92e470a4246281de928b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e53e05f3581509dc5e8865decac7aeb97177d6413f3c00754d289d3e639fecab
MD5 778e51b60dd7bc29c756c08b04d76618
BLAKE2b-256 02ad56e432e568cf91d4e13d7dc7a8b25d0edc04d3e03a397d010369cfd92fc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 cb4cb0c84148b831a5b6f9fdd43adf840c8610935ffc119e6f327a9f67009b3e
MD5 6afa9bfb7e56173ba3e52af44912b5d4
BLAKE2b-256 a5d4d8b6cfb399d572112e577be4a4dfdc47543b5354254ba5d2bfebfd161c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff78629c7e7e9e9355ccb6995a02bbbd766e7b863ef2a540f8159fdc6053da29
MD5 4819defc10b9a327dc90d2e1eec96b84
BLAKE2b-256 227e94a82a433f0a0d8691d43da95f46fc89285b28bcb99a47dddfce34751087

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.0.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.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3380e6969800ea89ec2c1a16b307d72a48ea78453fcc5faa3ce444127de556b9
MD5 fabe0da1801faffd36dc1fef6a85582b
BLAKE2b-256 4ac2fe0f940dcd027bb3f5cbfc0ffa05d095d0814a91051014b41db589735585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc59cb530480d2b65ae98b48652373b403087fed2eb0e7b0da4f273ffdc525b1
MD5 526aa4f14e19fdca962a07708805545c
BLAKE2b-256 885c91b45c92a0806c6e482ace1cd6ff9dbba61667052227d125c92f4dbef943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 130c851dcb1485cbcc9a8f14f600903b0c39e8a73b49b1f28703106bc9874c39
MD5 bd56f7ee1cfb50e2033b2acd3d733782
BLAKE2b-256 3c8766e4581b1fc060c9d89e970bc664692195085634c1cabe1d8ee824feb41f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9c3822569879fb592c4416722d9af2a1c92351287f2ded83e46b621d547af75e
MD5 befa6b596f29d1f41d5fd7fc16e02f31
BLAKE2b-256 e72f03ac7c7e1fe9957b99c788cb54ad5ddc136fd3463cd8bf816ddbcb175bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7d65b9b805c2a2342c8efb847cb53709481a315f30b778b83eba1dd8a128867d
MD5 fea97522cb316c3fcd6d1b859076a261
BLAKE2b-256 a7717081f8b723b503568739bba853bec95c9827183db2e76017dc24558a9742

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.0.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.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 a00d8d565cdc17b8a6dc3ed7287e4866726c64091c2ad112dd25eee3f273370f
MD5 266386c50a166047f0bd615a3fd25495
BLAKE2b-256 a3a03ad920551b91d16078a0b8df00b18ffebd46c63e21796bed41d82f90aeb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 924d467d99d0d25ae2d61f5b86cfe021cc032554e108fa2a1d23c58708d4a849
MD5 c896dfe5acf94c58b95e617311794375
BLAKE2b-256 0b6c87420a664364ed676ef91079b5426153f5341d160757c239d5c574cbc95e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.0.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 03b9028a24907af81b5628f98c3d05512b290e9203884664aed357205084095a
MD5 0c91e9d9fdee4f6d9964eb82f0c03a3e
BLAKE2b-256 9137e6765669071d95d0deb8bb9b3627948c9f82f819eed6d5c7094cf9f80ac0

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