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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.9 kB view details)

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

pgpack_dumper-0.3.3.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (214.4 kB view details)

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

pgpack_dumper-0.3.3.3-cp314-cp314-macosx_11_0_arm64.whl (49.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pgpack_dumper-0.3.3.3-cp314-cp314-macosx_10_15_x86_64.whl (48.7 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.3.3-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.3.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.1 kB view details)

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

pgpack_dumper-0.3.3.3-cp313-cp313-macosx_11_0_arm64.whl (49.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.3.3-cp313-cp313-macosx_10_14_x86_64.whl (48.5 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (227.4 kB view details)

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

pgpack_dumper-0.3.3.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.4 kB view details)

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

pgpack_dumper-0.3.3.3-cp312-cp312-macosx_11_0_arm64.whl (49.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.3.3-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.3.3-cp311-cp311-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (220.2 kB view details)

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

pgpack_dumper-0.3.3.3-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.3.3-cp311-cp311-macosx_11_0_arm64.whl (50.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.3.3-cp311-cp311-macosx_10_14_x86_64.whl (49.1 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

pgpack_dumper-0.3.3.3-cp310-cp310-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.1 kB view details)

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

pgpack_dumper-0.3.3.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (205.3 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.3.3-cp310-cp310-macosx_10_14_x86_64.whl (49.2 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 096f52285f78bee529ad4c23e2a3f4b99f6f54c9c2347ed4ab8bcc49961495de
MD5 4829929c530bf692b45712f0cf26926f
BLAKE2b-256 51539f863dafcb82b14f3e8e75868385c5549ca45a446489e9d5dc55aca99b26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 914947f14c84ff932ddba39f194e362c02bee7e8a4f39f79f176494ea84701b4
MD5 0e45744373a1cccd83c4fe5b3680c0cc
BLAKE2b-256 23c34b1889cd6cdf28c223660f1c373dc9fec8ac919e59632e6b8d8665b6e084

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.3-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.3.3-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c2b6796517515ca13346108480d242e299ed8a1e75ef541566febddb4fef9a3d
MD5 d5bbecac7662567532ebb086dbb4b49b
BLAKE2b-256 cb04ef2fd22402c85c52cf470d76be981a41812dddc74d248ef5594025b85b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddc681d15569ae93981aab4fbb6b88a731d164797f1b933f8fc90abc56f0b6da
MD5 ed442e2f146ca20c4fbc22330f798cd2
BLAKE2b-256 0e64c64b780f6d8a2e086eb60a1fa7462414b5578f2528a0384402dda1955c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 76c23e8e814387489d0da145d6a9ae65c252be76c7ec03db387ff2c066c36648
MD5 66b8b09812ffb749219ade85f5280f04
BLAKE2b-256 c9e2ae64b5b7b6a8f2ea6df78441d61c39b51be34bdc332dedb86fb1955275e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 969ff8bec79596de0a8465cd6f70f7d0ed0d6bca013a4a75f38a750b680ab9ad
MD5 a0e395e320a2cbb875d49f8aedd35c31
BLAKE2b-256 d240fd8f1db15300e8b57139eeb4e4a0b53e56003eba5f25f6aec94761d1fede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80efcba4f85916a4a45877c514bfb9b2fda78ea5a0f92d0dbf179d9e110c0b22
MD5 d3b78ef1c799caee6546e2bf80226273
BLAKE2b-256 01dc422ea7bde3e67b13db1f8ee2008fbec37685952d735be7415fa25282136e

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.3-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.3.3-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 54a6825d39fe7e11e0a2cc67aafa47a79745f3b15c7b7b431bb01bf2881456c8
MD5 06678ee4c148feebcfbccdbc42eddf32
BLAKE2b-256 d14b8dd900e2164c379d1a15189faec68408133f2ad50673de0d22649f777e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44ecb44881e4d4c6c456922d9247c2b3bb23abb9e518be97553f6b905ca767ea
MD5 722016c9d5a34e2636867e5116965b61
BLAKE2b-256 357ec2a56508d9ebb2161d5075bc72d8f53d205106b0f57d4cddb7fe399d1935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f27aec54ed07f8af09e676d8408edda0dd125c451103912714d464bc7a4fde8f
MD5 c4fb2e8eb9dd5d5e34b3b736373dc1b4
BLAKE2b-256 a415ec2591fdfa87c9202d5810c1a4ca5d618a45aae86d1f146168c47387db74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 66d42a3c9d69bbf81f00097a198659a92c3a91b1e104ef370e22aa8273ac929c
MD5 ee2b429872b717effed1dade284e5b19
BLAKE2b-256 f76a591baaaaa2a7a07484bef3387316419e37089e9e6b7d995539f48e5df1c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e06e36f3f39c553c0913bdbf2f4b96862cf4a6dabdfeeca3dcfabf09107caf3c
MD5 281835f9c4ae6544d4500fde9159c246
BLAKE2b-256 b8c7ca541909775b60091aac642ca505606ddfcdaf3a024ded1280eccaa80fc4

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.3-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.3.3-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ebcf2f6cb2d7b9cea02d24169019784244afc7525f26944b5208eb1475ad4e55
MD5 641ef985d584ce38a56c08deb063a763
BLAKE2b-256 8d182b216dd95d391e68dde587c4268bb752b3cae85aee782f92b0336c8fe2b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e4743322e2128be23863e215a3c1d89cdf4ae1880679382c6045ada31020e6f
MD5 4a5bed5b1629dfde139c81ab614f309e
BLAKE2b-256 689f843ec1cd8c64f11ad1a6a1938d92c841ef3d5ff08b562f7dd5a41283ab5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 efc4f834a00015f392a2b8cb9b05ef218ac7ade7c0576579805212ed8adc6ced
MD5 98ebefac0e2880a4209dc7b28e70e4db
BLAKE2b-256 121ed7b1f10c452a1c56c5667d5e0306b453dce4e5a13a528315de230b9c6d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 67c8b9522561815a61df284c2874a9aba8b8422c73b2c3266c62890f1aefb399
MD5 36a2555e85e99bc1a6deb07e2e8b2caf
BLAKE2b-256 00e52eaa42e15fcf820e86746fb6c689412e492d19ada762d156dca380f8548f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1856ef0ee80d6b6fb515531416d2b568f033267be90c3ab0539031374c2821a
MD5 1c788bd2d7e8c86935aec84d144a8670
BLAKE2b-256 3a162d0a5277080b44b2cc714732d6d62d6b442ddbf0d8fc2982a7e0f27d6888

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.3-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.3.3-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 2c25f7aa83b335072fd186600ab0f799c115ce86db71580342accfccd759d62c
MD5 5e0890ecf33994e316222ccf12ae8a1d
BLAKE2b-256 b72612e8f6edc78a3e8475c792eeeda855f14faf41c1eab1ce13c548d7334712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 066a6325ffb8c0104adde14c4025b3a0c2a859505bb4647f86df9f2f9a1fc4ed
MD5 54ec71a18082ff23ab88d6b6c6776ea6
BLAKE2b-256 0f7eefbd179b095d0f78b513856dfa9eca5b7f91d1993c5526ebfd4249547fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9bd0d06e5b848bd739f95370267216b022ec6267713a9eb5bdb0d4903b60e08c
MD5 a126c9c918166f4c44c187ce87229551
BLAKE2b-256 b523d45890366a206da035ba318e6aaa6a112d1beeb426a3bb3e1b8897121622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d1a26c9451a8d544b8d476fae15e06fb58d9cc6d7b87ce9e1aaf8ade3d938787
MD5 12f8765811d79fd90f5be1eb64ae0375
BLAKE2b-256 9adcfb2ba143c52e9880550bd312c9d37490a6606042278687cf89334dc5ae2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b509ced5445453f5cad437d0463d9eeda0efdd262310180c029346561289c15e
MD5 e053397667ccc8e8a1d956b6d1ed3db4
BLAKE2b-256 f102c3ecc50b213b2f69664f3bdda7b571358a626041948794478ba844923bb2

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.3-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.3.3-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 16bfcf059d5e3056b866754e2249e42cf2d735b27fde6b35ee6709174eb7f0dc
MD5 1177a4640ae545f9c748ccc0666701ea
BLAKE2b-256 f274838cca9040a01595dee0637e062d30e87a9a4efd92eb3f0872312fd9e141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b609eb7fcd202db006b0eac3336960558d27f0eebc911f523235a65fa14b2a34
MD5 b8d8c1afddfa7edb02167af1486b0b66
BLAKE2b-256 77c263b04a444f028047c3c129be11d011ac68ca8c29917d42904557726e4d43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.3-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 3225f6aab28a5935457882e4596c67974c154eaa1c84c378dda56070d055b2ec
MD5 4586d3e6ad1934e2908566a281cc3fff
BLAKE2b-256 649c46480f3ab3470c3699f01ff5e90371aac54aa3b4e9179ee0c409448eb6b2

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