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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.3.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.9 kB view details)

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

pgpack_dumper-0.3.3.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (214.4 kB view details)

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

pgpack_dumper-0.3.3.4-cp314-cp314-macosx_11_0_arm64.whl (49.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.3.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.8 kB view details)

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

pgpack_dumper-0.3.3.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.1 kB view details)

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

pgpack_dumper-0.3.3.4-cp313-cp313-macosx_11_0_arm64.whl (49.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.3.4-cp313-cp313-macosx_10_14_x86_64.whl (48.5 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

pgpack_dumper-0.3.3.4-cp312-cp312-win_amd64.whl (46.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.3.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (227.4 kB view details)

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

pgpack_dumper-0.3.3.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.4 kB view details)

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

pgpack_dumper-0.3.3.4-cp312-cp312-macosx_11_0_arm64.whl (49.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.3.4-cp312-cp312-macosx_10_14_x86_64.whl (49.2 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

pgpack_dumper-0.3.3.4-cp311-cp311-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.3.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (220.2 kB view details)

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

pgpack_dumper-0.3.3.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219.3 kB view details)

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

pgpack_dumper-0.3.3.4-cp311-cp311-macosx_11_0_arm64.whl (50.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.3.4-cp311-cp311-macosx_10_14_x86_64.whl (49.1 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

pgpack_dumper-0.3.3.4-cp310-cp310-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.3.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.1 kB view details)

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

pgpack_dumper-0.3.3.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (205.3 kB view details)

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

pgpack_dumper-0.3.3.4-cp310-cp310-macosx_11_0_arm64.whl (50.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.3.4-cp310-cp310-macosx_10_14_x86_64.whl (49.2 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 45ca6931def87da889736187c8c4c81589cbf552adc72da4ea92dab8959ac527
MD5 7316d11f8361f9990a639419cb299925
BLAKE2b-256 6d78174a9751630f7c55245a806a66191dfb314b31887707ea396068dd8930af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 01226ae3c20c3567d694f6f2f1f7dbed92f218a35e5802756af879b7d73f3b8d
MD5 4c94b6294b68f894f66ac8d05bb8b82b
BLAKE2b-256 8a7fc244a166fc6b42d5610f2b0b8413d71f25840d460dab73a2e62d467a7faf

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.4-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.4-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 bdd2a92989a8dfa3e0658c73aa86f06abd8feb77ac47634709f0df932e6ab711
MD5 d294cc3af416c63cf5e01a4eb01b2dbc
BLAKE2b-256 84180ca735d1b8a3fae0d44752b4d667c4aa7a24aad35193d920df742a3f2809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d63c691125e46abc26d056164bfcd7eb3219d247d931490d7f23b86f621a04b
MD5 50af554b56805637f0efa461baf9f836
BLAKE2b-256 3314c0fcc5dd11d0643103b779ab5696a377d6abc8d28052f98c02afae9ccac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 4b979af2218c5d9e82a3c5be80d4a68b93849369fbe00eb011eaebe377ede22c
MD5 e0665f6788724620253a0d03f7106b19
BLAKE2b-256 7f1d403ac4ce63dfcdcdbf554243ed4f9dc18b2bdb5627f49c61aad16a4f53d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2792dd04aacc15300ee18b6da56221c86a9dee3984385c356c09bf3d4c55b33d
MD5 f4d3a48c61a1582c4559c95eca3da926
BLAKE2b-256 b71480e1b6a44d6815460da36f5592995a28c337987f993cd57a4f32e38b346e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6b822d19e920f47c98170bb89befb460f81eeb8a1e7357a55f371da5aaedfe17
MD5 3d61168a71a9ccccf38f3c29187a2aa0
BLAKE2b-256 60e3fdb9906960ecf872c5b16b7e63ee57422269adfea54bb65bf1faf10ec975

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.4-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.4-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3c0ad10f6bbaae1b95985e46b1888d5c8776183c22a2df404312dc0061550ba0
MD5 92de6a116ba64fca647307dee0539de1
BLAKE2b-256 46691b4680ecc22da4250f94a520593c75dd6448e23a2233c59a7f8bd43358f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3fcb9d6e649f1343962ae1f072a8eaaab0b193ae30f5305edcf35aa2c2042f8
MD5 82319c226bf9536e32c9c952ee10b9a1
BLAKE2b-256 00064ef05763795ab53a82c3fc66dddd04b3a125377b9f0251152348665f13cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 26ba0fd9a57f172dc13d86012205abbeb590a74bfdd144ad211550df71d91db5
MD5 7d8c57e7dbd799a9d61d0cb8be4fd146
BLAKE2b-256 59dcbb3f4770959524d5e418560934c486eb656e54446d3f112e0ecc6cb878d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 837f6972121d8187af56cbddd4d17bea24a30c31352961d1a7f068eb3ccf5c56
MD5 29f5025e051b7cf8ea965969ee2a25de
BLAKE2b-256 6950ce6465f0792b25d55cf9e22f24de683d526e0c720ff3f2a6130289315bd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 179b4ec5f43d64d41a7f14ce3f9d47c24a3fd4a122b2639b3d4cd4028f89b344
MD5 8248528d0a25e5111b10dcff449f4c0d
BLAKE2b-256 f66c474739374402cf9e4ddea1bef1305009fe3894c6632de2109b0df4c49fcc

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.4-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.4-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e71f754c1ca0aeedafc8ed894c301dfab835e50e064e17c3ba04b2137630abab
MD5 ca7dc9ee181a71558158b42365ad650a
BLAKE2b-256 0c758442775d037828a62084b92a2626aee8b7b5a089be72ce3a3dc57971fdef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 823830119d29557051fed1eb21ddda9cd33ff005572fb3e38a0cb7a556a7f3e6
MD5 74f84631ceb9fb763dd39dd5eed344b1
BLAKE2b-256 c94b909baaf295f630ac69eff5f353e4f73d662977b259daf0f52916e59f2816

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 31972a90af2aebd81058015dd517e02c0f0232e2581c5a56c88b9ee77ae75206
MD5 a366a492e5efb4e21299811f67b1dbab
BLAKE2b-256 c755f48393194aec8483563984643bb3dcd2e12879c603dcb08b79096f16353d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9ea53215b1db430a98fdb24c600cd756cb89e0dc5311655213f70dc6c85eb5b9
MD5 a9413a48d54ad94d4072db89a8622a4c
BLAKE2b-256 415753ebe7198025babc34814c74b7f9db0e87bda789d513dc9c393b134881ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 562aa28bbd532ea06575af6cdd4d00d7e00f13c389e2602d995057244d49010f
MD5 5a3767aa3338ff1b2ea46fbead4a64bd
BLAKE2b-256 6bf7cc4bed4c3aa64420624af6a22b2a6bdb55d5093382cd962985b7d1fdf296

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.4-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.4-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5aa0214f0f00bf74fb25bdb06d5ee25558c9136e00bd988d455c39f4b02157af
MD5 20cfe220212e1fbdabf2a02b1bd8d2cf
BLAKE2b-256 255802d197536c19302edb14fdee24fca1363efed1eb4db788481fe1d2a71135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16927b60d9cf7fa3e85f9461b0e4c016c886ea9ce964d22efe4a355820919d6b
MD5 5651235ae37879ded12a779dadd4a1af
BLAKE2b-256 549282d10b58ddaf879074fbd5957caf3e07639ad89fd5ecc7246ae83ff1ec92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 726161b232db6eb6d6ea0f2dac586768de84f14d453ee03e400b80b60da87399
MD5 13a7caf5b94afa257bc607605f12cad3
BLAKE2b-256 935a1a8c2c91691213e686da63684577df82ec71b5ae9493f4f638a8b8acb515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 37bd6facc02af779c189ab82145fba2dcc13e90e398e7abaaa19cfe4352bcb78
MD5 d2a344d31080c4491d37a53a43972a7a
BLAKE2b-256 a091c5b7ee043ad2a0c5b1436de5a82d09fef041e13d75dd8537671bf5256ea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 533856b45e1330e67f14de26ae6273acd6ce3e892185aafb186415f3f70a7d46
MD5 aecbb0489ecb52ce4f04c52119b81a41
BLAKE2b-256 f3c40f078158d38ebe0529b62b1972ae9761c963d513f41b168bd7aacde6ef18

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.4-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.4-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c812ba91e5e3441829d4510c584f52473fec72e95628cb98c80ea9a2d4987f1a
MD5 da37cc55f29bf5cfdea8d10ec91e0d6a
BLAKE2b-256 3f1060c3aaad272d7aa03ef53cedc3431af72a8e9d4f9caeb884944f61272f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c7c3409b16e41facfee36a9f31704d9bf4d618b848cbbcab60ff61401b5f64d
MD5 60aba63b7c6953941f2cae2bb05216e8
BLAKE2b-256 c4d19916928952c1bc860837d1b33a8f2b2a66361b26b1502b1a12dcd50b2088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.4-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1c3066cf01c940c3749d9aacbb47838f0c67d7ece839fa73d56765e4ab79417d
MD5 db7e5789a575d2a369cf6d0cedc652db
BLAKE2b-256 900b777e39b082f8d4e7921d913e85834b06e3cf99ff53aba21cd86ebd6a4844

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