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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.2.2-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.2.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (222.5 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pgpack_dumper-0.3.2.2-cp314-cp314-macosx_10_15_x86_64.whl (49.9 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pgpack_dumper-0.3.2.2-cp313-cp313-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (223.2 kB view details)

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

pgpack_dumper-0.3.2.2-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.2.2-cp313-cp313-macosx_11_0_arm64.whl (50.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.2.2-cp313-cp313-macosx_10_14_x86_64.whl (49.8 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

pgpack_dumper-0.3.2.2-cp312-cp312-win_amd64.whl (46.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (236.3 kB view details)

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

pgpack_dumper-0.3.2.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (238.1 kB view details)

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

pgpack_dumper-0.3.2.2-cp312-cp312-macosx_11_0_arm64.whl (51.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.2.2-cp312-cp312-macosx_10_14_x86_64.whl (50.5 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.5 kB view details)

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

pgpack_dumper-0.3.2.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.3 kB view details)

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

pgpack_dumper-0.3.2.2-cp311-cp311-macosx_11_0_arm64.whl (51.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.2.2-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.2.2-cp310-cp310-win_amd64.whl (46.7 kB view details)

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.8 kB view details)

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

pgpack_dumper-0.3.2.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (213.9 kB view details)

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

pgpack_dumper-0.3.2.2-cp310-cp310-macosx_11_0_arm64.whl (51.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.2.2-cp310-cp310-macosx_10_14_x86_64.whl (49.9 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c0781a59a4e050a04d06e38c16822ce646575a88e44d4737f5a25996a4b3bf4b
MD5 5fff3b590dea3228d3a606ae0b55d616
BLAKE2b-256 8f099b2e748f69dbfe60a056b45945950944de59eea60b73c24bd5ca87543631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2be46ef2cea59be3cc54d9dde5f0980036a384dd851b95a91f278728c912b6cf
MD5 9e1ce408f68c27ffc4945b374959297b
BLAKE2b-256 4bc2681def3326e20b1c5113a36ac4caa687f623fbd0fda34d5c0efde84051f5

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.2-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f888ea520491740d206faaac688aa53d876752483c09c86486a7040ea21e2217
MD5 01ac127251c5546d7f5a914084dd8c13
BLAKE2b-256 7c05e369187b203476b75742618de094f65582ad2a9cdbb68caf88cd4559cf20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41d3c5bb7b9ffd6da5f0c80b1b56512734ca77a909c59ee90d350a5d6641f620
MD5 42e00547a355375fdcecd0a8aed77268
BLAKE2b-256 db61daad47fe4694193654bec1508f31fb802a4a55a6cb7503228bff97a294a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 364d774da6067854f0cbaf50bef301e965d5157ec32192bae7f5ec790d5f4388
MD5 441062f079779631a626178255191c1f
BLAKE2b-256 194b3ac73d114fe835df9c860b80446c670d746f1e440662fbfd2aaa96675be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b8fedb0dfda3e7101fafae102f1138bed1901a64520b4b7977999895fa66937f
MD5 6c815a40edf67d83fa53017c014fa06f
BLAKE2b-256 cd074a62cfb41d61be8364a8c0b5a0324d3e6c1ed996bc7de7586de020262f35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 226e488663d7c861d00249a334f2df752b3359475be8adb3873500f4cdb22a78
MD5 9fca30bbddf5c097a534cce66a42c059
BLAKE2b-256 71f4761730a67eac10d65b3c405b2115db9576194343f4b303ed0019ab0831cd

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.2-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4dab741c230c5d2aec115768155bb7c361db7be44e9b1e561ee82fa88b99f83a
MD5 c0f1c555a963514298d48882df6765a6
BLAKE2b-256 ce345bcb99817fb818230eb7aad40fdc19e91146459e8a37e1ce1f228f2368b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 599702612de980df593c1d31f00a2a6ad5d2581f8606bd14bf72763b0e370833
MD5 6f190b5f34f9c02d248beb44ed680dfe
BLAKE2b-256 2a6458fb976c648252a99aa759e7ab5cdf672ed38282db1513acf2cc45dc1021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 00a3e2ae87327734d0ec99a804006d104d964d57c303f34bfa6b42227563e887
MD5 b2a0e5fbdaa1482684446f593f0db8ec
BLAKE2b-256 05558a84ce30c7acfa9328388505249189c68514d5b3c71126f9d0393b35e167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 750fb9ae89e00322675bceb92db713e045e3971ad2fbb99c4bc4c94486ae9874
MD5 0e73bb32313a3977d69de718076ddb95
BLAKE2b-256 1dd2f5b15e1e1cc1dcb4d9f091bc1be4603cae16e46206c2be4ba7456fbf08ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e01c4b60d380579514303ec1c09fc9c1b0e91f6cf113ccbaad6d1666c8dae9a5
MD5 195dbb9b1340829cf81253419feae29f
BLAKE2b-256 817967ac91b32549b6a20683739fbb461d1b4ec28a5380cb7340aae3c2f6b169

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.2-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ff6dd877015980f34da7818178dbef07540be9d2c8c100a0f56b5300039d568b
MD5 17dd77a35eb93a5f70845e60b24729bc
BLAKE2b-256 b6724ed43773380053cb0400ea566a807a07f577152c8b5b7e78b150092908e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26738eedeaa906ff28896952e3bf448ee20e352f2d33992d647d7db25d155720
MD5 a612158030c7ea56cb7904392d2be8d1
BLAKE2b-256 4886b3f010aca196e5bcd1c5e7ab721b70f21b561023d60b9e8826d1b5ddbfef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 539001c8de56e0b7d10bd0cef33ef2f0ef1559fe42b81441cb71407759543741
MD5 9dac918b59ea7f57722b8f65ea6709c0
BLAKE2b-256 7bd466de759d2015e6e6634333ec30cd8a1d266c05cb75b5585cfe7ed70fb608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8f40363ce1050bacd328f615dbea0e1379a028e7ff365e2a358939a779c52ee6
MD5 1997f85112a4416cb8da256f50b3d130
BLAKE2b-256 85db4d129459e9b22401122ca40e84a4e3808023147c71e976bb1c25290afb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fef9d72150946469d3e7a3e71c8d58a64a76dca0a654ed915648d8a19fa77756
MD5 f5f67eb036c7664135eb1ab49614d3d0
BLAKE2b-256 36028f369661bc275c8dd90b2ed4099b9e647f489d8ecd5e667ff9af9b370dde

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.2-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 19e1b712471298276bd05e049a8f198a0d2f2be3366a989bd0bd2af3fd460514
MD5 8acf82f301c24e7a7da5cd9d0ee06dee
BLAKE2b-256 8a4602de658785f118ed6ee354fb7db288ee9fdfb8f851c509c9c8919b1f6719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42680906a2d9b0dad94acc389e4672f5575b05d09a519b7a0cab7997e114b304
MD5 8fe32f7c15c392383a41b9f9d32b5802
BLAKE2b-256 aa6940ca51088ad831e2ce272622d47e6d9177e8eaf11d0ab15c0bce76946400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6f6b400846a797fdc05fc3b89f78d731a7c31cbc901fbf86f9be6bae004bf759
MD5 0b8b9df227f65a407226f17a20f390a8
BLAKE2b-256 f61d8ee756de4e3944a659507df030272fc9b9b124f21d05a882a702bbfbf835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d9555e4f4bc01e76e9ec0794bc98da5d2a68bbd8adf0e707c789b5d7ffac43ed
MD5 05f5ddeaeedce92c62049237b6c800d8
BLAKE2b-256 fdd92aaecae3dd094355ba839b37b2e5df87026105daf6a6fcebd152d18eacfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 010075b9e18f3b6f38721540f311b8f7cd08c48e11544955c62dbd17481bcdd2
MD5 e4398777d7d4418d9c6575b797ecc1b0
BLAKE2b-256 76356edace79f779f1c4bc1a6288284966053d317ef8921990eb2db0669b7969

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.2-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0dac320d82db348bc21f0a2f7bce38eaa9573ebfd54748466df623dce91d23cc
MD5 b80a8f2e5b0cb9d9aa39e042f114a202
BLAKE2b-256 73b2f76d37d7c266f7265059deb02324d5db2a8feff5bf96eb5ba1da41c59884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8437c3a9b44fd5f09aab4f75dd1ee50f19913e2e2b3532754f5d2165ba5dd7a3
MD5 2ac433b7b72f97b5a9459da4bc9674c2
BLAKE2b-256 9827b9c2b8c5838d5f606c09b2f49d58ad2b6ded3cc211f8487121d5cd7418d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.2-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7f647d0ba5c6da18797414a20abb544caaaf97aeb8c3bb226e987a0ec9600c8b
MD5 4d47c646d02a2f62648c2019441abc0a
BLAKE2b-256 35b0b143767d907381ff9222daaacea21d81e812557d67f081a1af5eb3d20c15

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