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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.2.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.2.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (50.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pgpack_dumper-0.3.2.0-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.0-cp313-cp313-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.2.0-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.0-cp312-cp312-win_amd64.whl (46.8 kB view details)

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.2.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (51.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.2.0-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.0-cp311-cp311-win_amd64.whl (46.8 kB view details)

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.2.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (51.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.2.0-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.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.2.0-cp310-cp310-macosx_11_0_arm64.whl (51.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.2.0-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.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2e2674713b858fc8c9f5bc6464f747c1e6d3823b9ef93c7aa35772de8e0527e1
MD5 4f774080644c88bc8630ec50c2411f34
BLAKE2b-256 fb032c0927b0aac1bb726d58840b26b68f13200935cbb1a7e7c2f86f4f703b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1cb9d5386948f8a75c8f31f4adc223115f7173a2cd21cb0e36087aa7d00e672b
MD5 2a04637ca2c4c1a57645399013e37f99
BLAKE2b-256 87af2c16f3d6d60326b182519a373df7946b156dac615561c6652ff45eda77c4

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 0ede0b4f97fbc060afb2f9d091f3315c3e01a96a4282b2be2a4aad3d8ce635be
MD5 5cb7ddc1305b2af065fe4885992a54a7
BLAKE2b-256 59b6cc7ab7a341aa308a5e3d9f97094de135c74d99aaccdc3e986fa501397e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d2cd44d00d4a0b2c9fdce48795b677f455ddd58e147bbbe5c398eba0684f1c0
MD5 dd6f8a71399a7d17c4ec685600db9979
BLAKE2b-256 f97abcc0402e5bf103e5c6c1c3e4df6efa84256e0c9c3f2dfa8b0d69a0ce930a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 21104e600ccf54fc1dde72437825458ea3f2b8c07e728e566867ad93b2ca386f
MD5 a1661cc7204c6538c78ad54f34d777c4
BLAKE2b-256 3fcd0290bb39156dc630e7280a21dfc3acd7b553d7da716281e76d56552b1bf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 54284bacb28a9da3629c969902565e60f45ab01a0fd5138a83637f0ab457ec4f
MD5 470a82cbd90669c8feecf43df9a00c5e
BLAKE2b-256 3c1885e75b7be54c7bdbb158c944092190cf4d4362507384b2e06e1fa47dd31c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4ee04e1c341169afc0c9eab8e464ba05a6c1890a9adc65a7fde4ac5cf7b26741
MD5 4c48862c1173ccb2ecee3269dc29c6cc
BLAKE2b-256 a10efea91863f24f62515bf0c14d94fe16f1b0e87d24264d8814c43798fcaf1a

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 57c7a421e4b234c085d2580b9ab3bfad1923094608babf1f09ce35b27a5fa516
MD5 c93a7de12fd74cceb234a65832dbd937
BLAKE2b-256 b3a4c1f8e3d75402f11254f77482f4b22b21153d4c879ddda4b83fd7a18ed67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c2283d80ebfa4db7514484ca29eb13e3dc85d0e69c50b60158666059cb52208c
MD5 ba5b47dbb35857e5157b0e64027415f8
BLAKE2b-256 1bf7a5e8ccbdb6a89570198622c4d34bbe44281840c89878d2f7a67270c62a22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 2f1f32b1a4e8cc6c57f5ed85fd9010cf30efb15db11aabaee4caa1ec2b803c16
MD5 ba7348d49b487b32d81f9ec91c02e577
BLAKE2b-256 28d16372905fec56cbf1e3c69c89097f60058a7bdbdf0c7397c55baf8349a2d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1544ed70f42c72dc3e3ecb0175a072686284f78b0763b268bdd48bdd4577bd38
MD5 70261d7ffc5cc44ee4ee9f8ebb16c594
BLAKE2b-256 5399493fe49bbdbd00c54463c65fd85f1a1cb8b95e011e9296d817f9b0a9e699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c18b219a8d56d063da491e5fe7e2f689ea0c2da392ed094974cade49b254a2c9
MD5 e1ddf4dcf34c8e3674fece5c946a38d0
BLAKE2b-256 ada87e570cc5af012727094f03357bc8488c0124ac7ffefd25ca72275f8e09f7

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 532b6cb1bf5ac521f813b908a976872d1b4fc3c415d644c9ac33a347bbea1e7e
MD5 ba16452be549050cde9e07a249b5f741
BLAKE2b-256 cc4bff9e55e393f5d255c7a15265aaff7669f8dbf2b798c11f2067f369e352b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90e0c7ecc89460c0df8bd6f49b788f0ed1d7d8a090475e9f50c937fa461a49d6
MD5 89a9349207977dd7b50c4344a33cf824
BLAKE2b-256 199a5af7cce46cc6a4b0ccaf59532cdc6715bb2cdc6c086bca38a85a241e3ed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ec1c856692853d10e4b15c79b1c02e7120ef091317ffbb977ae011438983c6d7
MD5 1e86c30a49e08482c3445ae7d7c95ee3
BLAKE2b-256 651b0ea1a985fc25603d94720803519166c8a58cbf0c08dddae52f6f30985798

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 65e509517c08c1322f0d9f5f70920ad35f64fe446acb6373b331c264c04cd358
MD5 159477e27f7dae8a75a58465f6e4f5a2
BLAKE2b-256 d27a6d01a9078edeb772d7a3d43a888889a4a1ae90a67a9145bcf348aa861d8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4869d6e2523422d7c0b36a75f9b0dadb26f4455bcf40ff3b091dd023b5d57645
MD5 57ab18e0c72d607cc2d1d9fdbc42d2f6
BLAKE2b-256 5e22d602f7f3fae4f3191be6ab816ae627136ec129b85879849ea30816138a61

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 86f12cff035c2a7291c4fc747e41e2c03339941001771772b2c9f0c6db77c6cc
MD5 24b0133e5d0c71d2f922172c29211f8b
BLAKE2b-256 36be2f03698cf6b17b5f6590d12de6a6ef34c912bd50a714bbabfc25ed1e78a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b3a2ada3aab3c1e9c258439282cf7a083c453fad889b069b0cad3591561296f
MD5 147edd1fa3eac7b8c534435ec5673d2b
BLAKE2b-256 defec1fee2823f3557d37216e91acc0e533396beffb71822e2ac4bd0889df521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 d9cd1a4e193e431b9566cfd408d644ade3c52986c922542d50faa14ee37836a9
MD5 629e16d27a64a37af5b6a38890c30704
BLAKE2b-256 b0b5251e5b20229f3d87199b46c9922b6f821f28094ea2981eaa6fc3e243eb21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6490eb2d7752c5a7f4ee57114734a8c29df7472a03dc1f2590998fd6dc477225
MD5 a0cc5d92979ec1a36cfbce06ebcbccce
BLAKE2b-256 14998dcf848088aa751355545ebe01b355b0a4cdb4dbd280cd6fe9c9484dcbac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 696a0ee7f94797ce16b4d824268bba89992b78ff6cdb64487541fb0fbe9d4ccc
MD5 a7ce4c98f1c353faf32f050fb893f59f
BLAKE2b-256 338b0015152319f2a94763d6905e2661a3f1e795e4663baca2391744ee50d95e

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.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.2.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 1efd4bf10b0d2907763ce91b8bbd4c87c47a0796d556263a77844a010aa69a9d
MD5 2fb7f80852db5f6faa4b446f08991cfe
BLAKE2b-256 aeed71c5d7bd9d37c28ba3e5ae804b3fd67058e314f8ad91f5d4fdc59170c291

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7bef4d31bcc28e9f8fcb01996a86fcd772437521947a7d2a2e54574d12c376a
MD5 2236a17285975460de685ff8e48b3fcf
BLAKE2b-256 3b6de13d3e3a80411f18ac5c628d02decf8e38002b8cc53aa2f6a4a1a8973ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 cef1745c7d1268d579bbb02db3af81f77fd143e4f0efb827f08449f61b2ec0c8
MD5 649a82516684ea2352046ce615e68e3e
BLAKE2b-256 fb4d8e084feeca207d6032b91adeb62e7d4197dde790d139b49a89c046147feb

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