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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (222.7 kB view details)

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

pgpack_dumper-0.3.3.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.3.0-cp314-cp314-macosx_11_0_arm64.whl (50.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.3.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.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (224.6 kB view details)

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

pgpack_dumper-0.3.3.0-cp313-cp313-macosx_11_0_arm64.whl (50.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.3.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.3.0-cp312-cp312-win_amd64.whl (46.9 kB view details)

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (236.4 kB view details)

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

pgpack_dumper-0.3.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (238.2 kB view details)

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

pgpack_dumper-0.3.3.0-cp312-cp312-macosx_11_0_arm64.whl (51.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.3.0-cp312-cp312-macosx_10_14_x86_64.whl (50.6 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

pgpack_dumper-0.3.3.0-cp311-cp311-win_amd64.whl (46.9 kB view details)

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.3.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.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.4 kB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.3.0-cp311-cp311-macosx_10_14_x86_64.whl (50.6 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

pgpack_dumper-0.3.3.0-cp310-cp310-win_amd64.whl (46.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.9 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.3.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.3.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 41da79309c6850f1d391342c712608ef93aad869c914a86e5141500adec615d5
MD5 4de7ed8463eaba3da82ec226dea248b5
BLAKE2b-256 c1362c4d7ce9a3253e0eb1aa3f2fac3771f61f1621ce49e33ae7890c2ca111d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b02cbc218db3ba18ec0c429128067d78083d20160e92fadf8c5e3c5037d5b206
MD5 08f421e2ebcb9aa9f9b7162a9e3bbe1a
BLAKE2b-256 410707a3dd9c7661e71413324d8f195b491f40f16d42b43ece6a021805257d91

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 14bad63774fa17705bbfda35ee296fdf5274859ca063dd76c59ad84a95e4096b
MD5 caaa150d7a830eb828898ef9262a40da
BLAKE2b-256 72834139c03ee2d31b7188fe5905671187c4331110f488d8f0d16bdf638c321e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45908388d9639867057d103d87076111d53f27211c5133f757550232f718194d
MD5 4ce22e708f34d5ded8d839855e2a72a4
BLAKE2b-256 bff498b8b37b400b4f967e147276a2f1b853d3f345bed8e16a82db5910ffc7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 6eee1c1e251f3421207ca0136627370816c9e03d872504bdfba23e9b3e2e426c
MD5 c255a72a46e8bf01ffea874d5772f2ee
BLAKE2b-256 9b9238de8ec887652cfc62830b33d0a05d340d727eb1a189454b0f58243dfea6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 66d8b60109441b5a01831ebf18289f82f52b9044528d6031df66517d4ce7d43b
MD5 71b1e41d3870f4c485c43ba815193512
BLAKE2b-256 06d6537233dcc3dff3f0f5b1cab9b0effaeaf52a32b4fab9ab64651217b1037e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 650180780d32b66eac449b2c3d4cbc33b613c9bb8ef1eb71f4a23ce84fbb8038
MD5 96458c69925a17f05d5be692085b2a57
BLAKE2b-256 6d9df4a5ff3ec50f9a6c52ea8f87182d8f52d658ca41ffa6153591db8cb5d6aa

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 64d329cbc03f2a83a5bc711f19ad185444460079804ba2958e418820a7fb02cd
MD5 87b02413252aeb0e117e5e4da91b5bab
BLAKE2b-256 9bb14fb0d740814f54ee31e506ea34c2f829aa9d9ea23b6d21ca67db586dafc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bad8dbaf18e208432773f32eb965731db3b40eb5cd0bdb0fec538abe4d03707d
MD5 8b685d734d1e970cb46cb1632df28b71
BLAKE2b-256 ee3d2ced80e547b11ed2620730391602e6fb05cb78e46ab474ab77313bbea71c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 6e195761de9e818efe810aaa66c5aa62b4424fbe5fd188c33ef5ffda493ca959
MD5 7452aa9021928d85d02f3d4a300a12a4
BLAKE2b-256 5b33d706dc4752c7913c630f57aedeb9c4d2dd91b39caac73d206076f0776c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 79c0e61f41c1e63e99cf2704db2e4d3fa81dc18fb5f0f8aeed1e64d89e9a74fc
MD5 0dcc9e27040d0c4b706a803c76a980eb
BLAKE2b-256 ff242ad375dd2aced024313718ecb0ceaf71da128ec9d61a0df996310376f1ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 955540915716715e96da4eb812754b2b07ddf2ffad967757ba45ce1a83736208
MD5 e931772656871bfa50096594e4a9ec05
BLAKE2b-256 da1d8887ea5ad401384d5dee2345340e54348776b141ed745e937405f6062984

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fe5c6acb16d25a4d7c3eaa449f08bfb83431d03996fa4f39072dc95852e668d7
MD5 fcf0f62ab6b3f88843dc6edef3566b31
BLAKE2b-256 ce92e958dd3e6c29aebc4bfcfac1ec0bce29ebcd0aeaa24852b2f9a21eabac39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3651b4f3e63949284ffdadaa9713b6bdbaf4c7b873f5e10ab61772af0614f802
MD5 78bf1d46ae554a88f0b1fb1dbef3b20e
BLAKE2b-256 394f939786c8442fdee54d8a0d4e3d2ff65acf61bd4882c006045e76a5b006c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a6c4dd987a90d9beb5eb6d7a0451a4076836392f26d9628357f19f90e79fad7a
MD5 1f5367b1df94e03772e175ca80af33ea
BLAKE2b-256 d051895ce64f05495ad2241f1859c0703baffe67f8aea7a483f633e2d10c4496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0db59ad7fa9799471a1775e4e06f601a27a4b0cba432969eda0a568de3a6847e
MD5 8aeb94b32e39bf6bb99ba292fb359337
BLAKE2b-256 f138706d617cb0bbf3fd9c81a8e31b34a52141d47c3f2f6aa7e75e1f18b29d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3dff85e4bdb1b71b35e2b0d0d134a13c6f4b1209d227574bab5a72cd6cc3a546
MD5 3e4ade5e0e99346e25eb7920e28b2768
BLAKE2b-256 d215ea4b998fcdbf23c867589fb10bb9829ba945d9029d9c60185dac59c006dc

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 de9f8f9aeae877a06bfb51b2e15d07dc52a4fcf959d5c64fc839228ea3c2f3d7
MD5 ff605b49ed110cfa7d9f1458637d3374
BLAKE2b-256 69646357e5e1ef3baa0da0d61846f28d496c7a7edbe2089cfe4a3bbd96695281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7d34f81352bf782add12e734bc1608d25a9f5acd7efb6a9feb29837b6847489
MD5 5134dc708eddf1235764234189f642b9
BLAKE2b-256 c6e3d452765237274c8d935f8087b74205ba5a1287bdce577d2b1139146387b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 32443dedab8c6987c806a3df8da201b5f8f4a7d7d597166a3b20c5688fc8963c
MD5 e9b51b0a752095377060133bfdf2a122
BLAKE2b-256 8f55a528355b7dbb0727aa07bda72826388cda61d900e49a94668e2ee97e104e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d0ba4bb37241a77e3c03f619f302bae06bd38b3f883ed7061aff7700bebaa143
MD5 a05f021a9acf224ddb74f212dfaa2f46
BLAKE2b-256 b0cdfc7ae7c94fe7f9710aeacf7c313771e9aef38c37db3462890a70318c8df1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b50370da1e94e3fe2d7504121cf3b6c9b71802caf25879801d55da9d1dc234b9
MD5 c302d76a099e55adfbd460f4ca6c5dad
BLAKE2b-256 2c2ccfdc1ae740ea26e7e37690358f2d98ac3cec6f8eef48a293659f4a7a543e

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b421e4a0f153184ec935b6a0c0a693022da51ae9901fd44668dcda24c4ee8eeb
MD5 54e05e4fd6a15d82340ae2f14cf8dc11
BLAKE2b-256 72c17188198fb5c70a8b7ee6da7a63b0224f0c9397d3e17c7ac4408ea9fc89e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5218a84bd6b862c452de14b08d2052e7689dd367f06a9c085acc579cbaa5b562
MD5 9071d96032f473bc1c1fc49be46f5bb7
BLAKE2b-256 3701e286d666e7464853f69dfba4bcbb07851749e642ffa3f33349ccdc5993d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 ac012223e19c89fedea6c6a87fa3dcd73d4d23c18efb2caac4f80160f6090e6b
MD5 14a821cfc67fd1cd305e32dc5f96768f
BLAKE2b-256 ef43774ac911551598fe8bdf1c1dc9b635546f00b6acc986bf99e58ebb608aed

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