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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.8 kB view details)

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

pgpack_dumper-0.3.3.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (214.3 kB view details)

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

pgpack_dumper-0.3.3.2-cp314-cp314-macosx_11_0_arm64.whl (49.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pgpack_dumper-0.3.3.2-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.2-cp313-cp313-win_amd64.whl (46.4 kB view details)

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.7 kB view details)

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

pgpack_dumper-0.3.3.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.0 kB view details)

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

pgpack_dumper-0.3.3.2-cp313-cp313-macosx_11_0_arm64.whl (49.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.3.2-cp313-cp313-macosx_10_14_x86_64.whl (48.4 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

pgpack_dumper-0.3.3.2-cp312-cp312-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (227.3 kB view details)

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

pgpack_dumper-0.3.3.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.3 kB view details)

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

pgpack_dumper-0.3.3.2-cp312-cp312-macosx_11_0_arm64.whl (49.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.3.2-cp312-cp312-macosx_10_14_x86_64.whl (49.1 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

pgpack_dumper-0.3.3.2-cp311-cp311-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (220.1 kB view details)

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

pgpack_dumper-0.3.3.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219.2 kB view details)

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

pgpack_dumper-0.3.3.2-cp311-cp311-macosx_11_0_arm64.whl (50.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.3.2-cp311-cp311-macosx_10_14_x86_64.whl (49.0 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.0 kB view details)

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

pgpack_dumper-0.3.3.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (205.2 kB view details)

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

pgpack_dumper-0.3.3.2-cp310-cp310-macosx_11_0_arm64.whl (50.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.3.2-cp310-cp310-macosx_10_14_x86_64.whl (49.1 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 538748338c9c8d178b093fc69aee8cb8d3e66b42f0d58e37d9ffa36e1318a436
MD5 f769bfad24a06f018fe870dab2400210
BLAKE2b-256 4aa5721184a3507e810a9c630867b06484ff3a0c43d10241bb09f10129160f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c12a4ed42b8f2ec6e6aee2a9ffd5db9dc5e979e7aa15b8ab6f18e34d3cf0a8c
MD5 a051729814c79e371c6b773602e506bc
BLAKE2b-256 e1c15732e22ddcd1a846ae90827f78d3631c17f204436953fe46ea9af7a854bc

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.2-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.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ffcd143af0a7552aa1b5d830d93e79871230873ec31d47d3ec8c4551b298c831
MD5 69b92b85192506b480a70b43aafb5b12
BLAKE2b-256 b86c612e30bca5e69f0a23b0f71090d2cacfa43230eb18ed6c042a36dda7ed6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a9837a6d726f460ef921cd72f794166dbbd9e422c3df80200fed2fd8e0ee0985
MD5 eb9d20d465e49e0f754497ae3ebe0f6b
BLAKE2b-256 85616d5fc3667fe2cf4aaa062fcc3302ca917fa76ca99e06baf5772b353c3c58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 651f2c6d041d9c8a5d4bd879d8f739ca285350807923c0fed37a06757d0b2d19
MD5 5a996992e0c29174683b26642d23eb5a
BLAKE2b-256 b74da3bfbf3eced51cfa8fc705a5f6b7b20ac29d83240c309481444f74453817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 58ff367780165bd4f7fa29dc59c843f9046de534ff9123ebe1f740e613629e4d
MD5 d2655efb8aafd38a9db9869702b358c9
BLAKE2b-256 cbf00efc4753cdcd210ac7e4eeccebc4b47e4d832b77d5a0f6fad8b18d6bb05a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c2aead330c0b4ec4e8aa19cf22b0d82f6b2fa173754e3183b76f3662be9b5e0
MD5 a19e94485b7f93fa9a1c1588600a30b2
BLAKE2b-256 035c16e357f41eb87c3a25bd5b4758a5dd497ce4358a7371155707666e1642e4

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.2-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.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 01ace40088021dc521695a2a01fc7ca6a838b52c224d328efc4258c21b223382
MD5 8a0567e157d0bdc3ac55a72d6107d457
BLAKE2b-256 d4099b5764a5ae4eae17fd55b2703dce7441df39e18773292e5a183c6e77881b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8fbda3b445ca11463fa574e72ea02d9c2955057b826e68bc61087b7d6014aec
MD5 6204396b8e25812b4193d5ffe3b2a6af
BLAKE2b-256 674a11ba3b21074fa4aaf17268bce59a4929175a12585143fdaf38cff6b7fbb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 38d05a939deeedbf4ef073565425a69471963a9f754ce87799ba87d35c9324ca
MD5 3d825fa8c7bc870ef6ea97ef0649f854
BLAKE2b-256 16401fbfabed4ba995e6deb0f34c9f006ffc10362d184e9a4063e66ae3988077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 bf25552cc57e36a0685a3493ffdcb495a8f69e368d38c78d4c2363c679b410b9
MD5 9ba41ccda49caba5e681799cd6742472
BLAKE2b-256 a3126680a94de7371e09ea2a2e75271dc9a7e6c01e23b0289258001b4213b3c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e8fe9381bf702cf13366665080f418da46cf5bc1ad33b7a6a713639c4644e11f
MD5 468430dc038f76b4a82288c680af2324
BLAKE2b-256 137e3ecba0b85c79271330ac1c1a7c8494dc870622dbef80e01cd39c64685287

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.2-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.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3a84a2933b5c0a5fe58ab3b5f43475e041144cd5249c360d5a2ec3b177a59c2c
MD5 2f580d3f54c4ea208706b9d9128b6691
BLAKE2b-256 6a865d1693c2461fd2db19a2e996a8ba60c78544fa35299337377e433146191b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41b7c58220ab97922ca2bf3822aa4af5ae4fca63690cb17dc2c916894a84c3d5
MD5 fa5ca34eeb77e91f63b59e410b90bd21
BLAKE2b-256 28f5b12f69e921e3d68619ab9095da42009f85c87276241b7cde7f85cc0e5197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b415190badb115c78d097442512855c6d8f1c2fbbd9f79461ba627665855e589
MD5 0a962902ce71932cee0fdae98d786299
BLAKE2b-256 6e783f878fb91e4064e12b80483abec2a865ff2cdf1613a9a13787342cf649e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c301f78fff047729ea79b1739b23b23cd3399784c7f7b913c9bbbf9ad2b5b6d5
MD5 8378093cb13b11bed628fada6527ef75
BLAKE2b-256 560c7e31897e39de8247916e878ef34731853341d3aeb2c7a423f4e7b3df15f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 183ba2a3a9a82741c7657a521634041d1c1a98146dcec230011f4aa8900e7421
MD5 f1f82195c2cb966978457b59c025b290
BLAKE2b-256 d674e815eb48e765bfdb3532a174dcafc6be79d32d4b713a65b80e95080b9592

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.2-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.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f5fb2ce77bdfc1a3c7031d0bd307b3b5452b110d792ca3bba173a5ff7fb638c0
MD5 d0921d05c87a789dbc742046a3bf37fa
BLAKE2b-256 0aa6571d24ee02c86ac0f6a6329cbcc1ff7cb477b3d552195f7a3ffc4a7d8b8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f341709d8be8d5304c745ef70160abcbf9216a4c08d6a287c257e5ab9c78b77
MD5 8f27a76e6f92e7c97e889811d5663cd5
BLAKE2b-256 18dacfd94ffb44835c3b2190c421228f014885b3058c44961786e86bda1fdfeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f171c9b291a6607569203a8502ea82bf350691db02793e03bd99fcec9f6f18cb
MD5 deab8d84ead9cfb01cdb99e0cd2b001c
BLAKE2b-256 91d20e305d493c99df17ec3c5cffd28f4ba8ec37774ad20348518407d1cf7ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 651a580e1f1dc5f321731266d94ab8beee36054f94ac6a61c28c748438212d26
MD5 96a4894cc0ec71aada52f7f815c438fd
BLAKE2b-256 31b34fe1110af2d5d0d64214c739ef3de9967a0e74b4d345e71a36c1f08486ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c22fb91e621d2adb04c16306e4e4bf75d52cdf289cc3bd9df534da26e7408d50
MD5 ab8dcd7aa1ebc909968b88ed5702a9ce
BLAKE2b-256 398223d7e5f9056aa815006ea7099216fb4f225c90b649d0633ec3a8ccfbc676

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.2-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.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3c48e7e506a4223b87932ee61104fcf9ff3ed68d201f5e6a5fe3fb68a130afae
MD5 d17c5e05a123506bae53215f7b3ec9f3
BLAKE2b-256 1832bbc737bb6f89ca0d4e14771826fee1264cfaf581f0111658c5af4a15fc3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22fddac6fbea10048df9551deeafd45fb198b3e3daf494091747763872372098
MD5 8f279d869c16fa69adddf668854afe24
BLAKE2b-256 ab8f486b145b61f86f4bb8db262bf5f17c73aad015f293e8a56de2a290c97671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.2-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 fa197cca8b4b331c0d96f889015c536a4ee57a812931bea93320421760cd61d8
MD5 c9d85c3118217f137f63abc525bee9df
BLAKE2b-256 92de2c8be4f30af33449f45d6f647c5f683ccb556b1d62e93a8d152c12eea5a8

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