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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.2.1-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.1-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.1-cp314-cp314-macosx_11_0_arm64.whl (50.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pgpack_dumper-0.3.2.1-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.1-cp313-cp313-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.2.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (51.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.2.1-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.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 53c7829790510b9762613b4211fed084a405d06141a72e08b8366bbf3ef86019
MD5 482b7efa293896a7ac2b8c3cf6b3ed71
BLAKE2b-256 9e01728ba94622fb196b8d38b5b8524cc8a74693eeb2e2f96a25c3310ec3b243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c27b9a479b62358eb35e9cba883d175d3bc4baea897c350455a96c742042b50
MD5 695a73cffb1f94997cb51394cafe2e49
BLAKE2b-256 08e2cfc118a4c3672a9b6f53fe324f1d9fc3f0834f4f61f6fbb32f0a198bb097

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.1-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.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6abb7b8b825a17251544d6fc3889fb8462fa0d9de5755d2a39a556e6dd0128be
MD5 b1dc078db117f0cb4c3f034f8d728b2d
BLAKE2b-256 faa107b1023a2f6f4051b14f60ec267803e99839abac75e4c67b2b29726c303b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d041bc8d4a4c31ab77b03897d6e4e958f77a6d3cd9bd06600dac82272376cf73
MD5 1a60b3eb8b63fd5b84b42256b9747966
BLAKE2b-256 b15b500115bbd31cd50f3e6dea53f9fe92bdeb0e802cfbb0cca2946536b70b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8dba61ce7800515e1a05353141bc5177ba859e471c460119a36b084a6920ea8b
MD5 3bb6d7b09d62f6ab5647771e402bd217
BLAKE2b-256 a545c7ad89445ca9426eff2118f30643c35eb685ead47259bd0e1e6c563c9749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a20fcfb5511d7e42957962dc7f3f7e89a5078b0218f5e7104bbacb802c577430
MD5 fde5e975aa4f8c0206b24c76bf08a442
BLAKE2b-256 67aaaf1597e32d81c551fa7772020e915370eb25d151b50a80d69b1fe627bcaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a00a13de4fd3c7c0cfe61ffdd3e556aa91cdad067259654fc79894687123975b
MD5 004cf792e6aa58484128acc61621880f
BLAKE2b-256 7d30f16a7170ce9440cd88043dff90bd9692af67fe89540531edb6691a5c5796

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.1-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.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3895f5b55e994600ac2d17ac6d840064f62abfb4017194823da0ec6178c893af
MD5 39316a9bd475837c7dc1eccc466421e9
BLAKE2b-256 a04833c578db717099b69cc9d995da817f39868c89e67d60668d107b7c5278ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8f9da1c9420d223368c5fed4e3745916ae43855d3d6fa1e0e981a5d8cbb591d1
MD5 50e3526fc58a2280f0082ad20eeb4b0f
BLAKE2b-256 c805ccecbd2d9d13d3c1558f1312c1981c3486ebd76171322152701ab9899d58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c408fbffcc87e00b469bc23cb67fb7de83f160e0d8337664c63d8499666fc8bc
MD5 dd90e6523d3c4230f12b9f63dc7583f1
BLAKE2b-256 4ab1d15d7003e79251cc18cb9e23522653056c0b58d55442ba124705f8f6a57e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 959abfdf47d033a72a214ba81d87a57e834c51584b641b50c1dd1c39bfdc5e74
MD5 f07855b453ed7536f50854f4d73f3c46
BLAKE2b-256 dbb06a0fc7a61a8150fa7e588bfd66d014c0554d6f787a7768156dfa41faa2ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 71b4324f9a74ae59fab1b67713ae6a6ab66d303662744fe4a2ac952145bc10a8
MD5 c09e3622d99d17c95127064ab470cb36
BLAKE2b-256 351567b9cb4d094a35ab9f1c2eaa828d1946dacecefc1cd72fd3bb1f90a947f8

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.1-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.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 06b7c3e4ea3b340fa3da22f4ec253470705c35aea2aa74f8bdc7020c7cfec742
MD5 899a08a0192fbf35f640dc25eb18cbf3
BLAKE2b-256 3fe6a6b312778d4dde357b8d0b4b5d342f5e14c99e9955339f09db75c1ea738c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 557d309a21f6cca7aed1430cea835ac03fc99f7aa3c806ffe396b1bfb8ae319d
MD5 10a52f60513b0aabc25a7b64a05e2e66
BLAKE2b-256 93f6f6274a185bfa644224517a168e9a1c6b4337253140fe467b6d98af71062c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e73e9b59f9c0ff0e2277064e1452936ed4b3b8a3a85c8cd5accf95f369adb57d
MD5 948a82116ae910a31fa3f330148b0f10
BLAKE2b-256 62b65918971f22f1a5ecfc36377450aa636ad7f0757f623c72e33876c61cf9c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2824eb93f622d0b27b0d1f5ddeae70bbf1fcece4fdf606dd7bfe741f9ceffeab
MD5 558d08b63dab0e14d6493c4341880c97
BLAKE2b-256 62d811ba143a1cfe7794a43348328aa964939e2e60a1b1f85af0486c5c4a589c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 801d1ccebfcadaf130d9cb0d8c5be206cb74263fc25428e34ffc28f7cc8f1339
MD5 b25ceb93cff52bcbe7615bbc35e70041
BLAKE2b-256 aff1644aae8cd218fe24f6ff74565cd30105da80dedef6043f9192f47be054cf

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.1-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.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7e06f46d34a91c45efa17a191324ded18766252f04cedf463d1c7aabc5e2c254
MD5 930b54b30d0e760e32e6b28f48db0b1c
BLAKE2b-256 b11cbabc65ecb939e2c97a050e3bdbce167ea386ab70a4805cfd48ec2601cc41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8c05b623e19e2735034ae7aa493179b7db4b7f42cae1af2c9cf39d333e637e2
MD5 b8017c5d967ecf3b68e263774916bf12
BLAKE2b-256 8748a680d376497e7d0a786150e01f630c1923bdc5d0227eece13319241a243b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a4e1f1dce2c5fad05727fdfcb5f53aa425ba9b7828d87b6cd36aa94a446cf43f
MD5 f9c317431cea22f422b49dad31f047a2
BLAKE2b-256 c18bd503d0c462838ad4d8557bad5f725706845ac3c4bd4841a5e33e2082b629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6028a249a03b9f68564d699f0fb36fbd4f4613af77d392f76513b73a1fb772b9
MD5 3a20ea96ebd1a1b2ce6c671aa355fadc
BLAKE2b-256 169a42bda188d7d92a4a542ba8c5c315b0e0597b13be767727cc515b7a708f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 90b0d717e40163e4ca2770eb97618bf2581b4a3a111f7fc9674a54cbc63828de
MD5 30e900de8c8f17d01d69312a4a9728b4
BLAKE2b-256 0768b49175fdbbc88aa008acba8c674325d7f75a5a585a73211641549723bdcf

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.2.1-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.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 eacef157f20ac7486d987b2bc390504f4347f06a1239704269f577028b9f691e
MD5 7930855af5b9cd9afe0c1ec712ecbc40
BLAKE2b-256 11c8db00da03ff75db429f242fa090d06dce801ad9f5b834c2353214305dab9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64a27c3c6b1d67718869f095c4f61eb16a2b6c66499bf50b852e597c05f7fee1
MD5 cc421a59c5f359a75325dea8434cda57
BLAKE2b-256 b5195a8747a9e1aafa63d460fdaef79a4c78166e62963a198c147c9de4a1e8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.2.1-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b339ea19838706b929d28deb8bfcc6192c27bcbf60d724def1796776e5f1e155
MD5 c97a7b2e5542c7050ae7709b1e7e5bcf
BLAKE2b-256 531517d72659de6cde0a7b2ad635c2463d738fc04f58397222425baaf9e0d99e

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