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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.1.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.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (222.4 kB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pgpack_dumper-0.3.1.0-cp314-cp314-macosx_10_15_x86_64.whl (49.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

pgpack_dumper-0.3.1.0-cp313-cp313-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (223.1 kB view details)

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

pgpack_dumper-0.3.1.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.1.0-cp313-cp313-macosx_11_0_arm64.whl (50.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.1.0-cp313-cp313-macosx_10_14_x86_64.whl (49.7 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (236.2 kB view details)

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

pgpack_dumper-0.3.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (238.0 kB view details)

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

pgpack_dumper-0.3.1.0-cp312-cp312-macosx_11_0_arm64.whl (51.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.1.0-cp312-cp312-macosx_10_14_x86_64.whl (50.4 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (228.4 kB view details)

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

pgpack_dumper-0.3.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.2 kB view details)

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

pgpack_dumper-0.3.1.0-cp311-cp311-macosx_11_0_arm64.whl (51.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.1.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.1.0-cp310-cp310-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (214.7 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.1.0-cp310-cp310-macosx_10_14_x86_64.whl (49.8 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ff5d75345173664c4f8c9f3acd5ec03026a81a0f343fd67c6bc80e7201c62745
MD5 212cc23d387dd8e62b0928cbb0fe77f5
BLAKE2b-256 b7adf5c1f53c63ab7384a3c5d178e4e6c51666bf74289b009dc20ae4f8178308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f526861b41aa7ada80419c004f93bea4c6d212f9c9a793186253df2311ef056e
MD5 648a3f9fc01458ed2840151555915051
BLAKE2b-256 640b11ebd2d13221d9fa0d3320967c5e0210129a500024c8309f0d13bf6c8f12

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.1.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.1.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 07cbab0a60c83d6594db53163c9ebc6cacc43afb0ffa5b14ac15436ffdfa0b81
MD5 9c37618a57776f80d180df5481712efb
BLAKE2b-256 44e2af7667bbf0ced016d76e0adfb3d87f8a72d972cef94c4852e1a58c721cf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8db8ba4ab38e1f674df5628a83ee1571b67838cf9c2b59df3b243307d229bf53
MD5 1fc9e36e36e3800ffc46ddfd1907ef7c
BLAKE2b-256 56ca1cdab7f48e1af85cee6029b892e205616d60f01a5f12f03621c57a96c990

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 91fedf570b5f6c7ac64ab7173804aeeb0a55b66002d82217220119e9596404b2
MD5 87164b622e87ce35dcbf3da153751087
BLAKE2b-256 6921a06a3892f609e770871fdd63f0bf54eb8a3346e2f03e94a0283fa9714a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4df0f563c0b2b9387efdaf706b1cb50337338b55678c7359c42ade7e5835b3a8
MD5 04b0ab66438b4853c3cffc4d558f643f
BLAKE2b-256 2292fbc539dad8eb79c25b23bc7a700a9009a1033a4859f58d5ba1a5df85a04a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fff6e2fd1250dd10bade6652d03bd47527faf7858ffb6f94a3bf1d2e64f84b71
MD5 47b9473d16fba53a2aed801355065b70
BLAKE2b-256 f792de5bb0cbb4626b60b27ed0923f11757320a76f65e0d0ace286b0063d18bc

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.1.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.1.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7f44db6c3a3dd928af6cb577bdf0f5d110bd89c58003ae51516ba8c2b5266c1b
MD5 ea13b6f66524f63b54a3b62f31a66652
BLAKE2b-256 dfc23bcc186ae83f3b41a31a7a19426fcbb96f0a0bbd975d4ead14699a659ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b41a66f2cc739ad294a43f7c689c010968eda27cb73b3d067c409d323bc8413a
MD5 5caac9ef89bde0ca39a3a1ea1cc6c061
BLAKE2b-256 92f89d24f63c8e76506d7ae8302b5626a21d3d7853cba9bfaf042da994d7cadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 b485c1992b96244c7f3dd443ff62582c3698158342b64d1551244cf32f1a8604
MD5 69e91ce7707f7a3a840acf979baeb0eb
BLAKE2b-256 6b90ae19b7c26a352fec18773b2e7a5a19090fa6cd155991ffa3d6376eae3ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b201d0474a80acdf6d67899c47078fa914cfa42e37de51b2fa1a8060b782b5a1
MD5 cc2da98c58c5de267b03c3f6949758a0
BLAKE2b-256 e4082748ec2dbc91801b7a8299724dd1e766c877013eabdba1484c043410cac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8336ce5c1ebee4f2363c9e290c0bc58a9dc549961be09921767d13f4b6477eb5
MD5 397f5aa9b1cd5a049368734466452fdc
BLAKE2b-256 c92207a83f03d67ad77e7a7d039e04442aa58bfd2eb7cdaed5738d139e42e839

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.1.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.1.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b9ac6e55b07e820e008c8812ee6eedda3f727286b2de87b86635c421e305f4c2
MD5 d379ec7f5dc1182e4438d22cfb41495d
BLAKE2b-256 f80ded6509e46c3d24d70c0ac0b5334d614b7fd5f4c13f5ca7ae82eec91b0bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea5f4716be7ef0f75b35f56997d0558dcaf557396b9ff5d454294c5025edaf91
MD5 fd91089063d7914cde650ecfe22eec7d
BLAKE2b-256 81491029d34b05de56c2e63b551a29346bb0feb411cbeca97990112b9dfcce97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 231dcbe331292f7c2eac339206b1ec1808842bce4503112f87b0f2d271829cef
MD5 6ba3ad608655d52597dad72a58754603
BLAKE2b-256 44490bb6492104447d31e18e90729a27eea7927b3c55e15edaff3051572124d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aa1003a884ab0c2b09a8103b284dbc006bb5922d8cabbeecf6d11a242582416c
MD5 a35330ccf1ff8743b58b9c21ac1fb6f6
BLAKE2b-256 4811badde7acea9ad9c788adce1fa35f2f7d980f67c8ef726bb4d1bf21569648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ccdfaecfe557740d21b74946bc972c987e9f0ad95b8d37a0d68800c175e76e89
MD5 7da7a1cb77f1542508e203b6066873b7
BLAKE2b-256 4d97fffffed9e0ba8e91ba96ee28dd5bfc0e42fddafdaaa4e516ce21305aaf3f

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.1.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.1.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ea1fb02a8eeed9d8cac7f302c3a3b1d9c3549d83be8875a9549927746bfc2c0a
MD5 9f49c6639bb038fadd77cb9eaedb72a7
BLAKE2b-256 b47197850429524f3aa48c9c54fdd485ea3cf259a62afca668d5357870749a40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dba76013d529c51430bf549047ced10276d37d5bc9069baa94f3b6a07f1c22f7
MD5 d0d09d9249ef4c5a52b37156a47c64cb
BLAKE2b-256 25e7ad0897146020fc8d6ae717e149ff3edebe23b697dbb531d2e092692ccf0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 93a82b94014feebe0d6b6f22fd90e66617ce757d0b9590bc3c8f5ecbea8b8b99
MD5 974bee8ff4a5500c392ca8b9a7f0892c
BLAKE2b-256 80cebe617d7d3248bf571bda183d2cd82d25d70d84c14f174b36c5cfb58533ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 de58f6fd6ccf874f8c3d53e7e64100f7d1f3e0789a84ff04696c67ddf8367e8e
MD5 61762fcf6c6503a34b9a9cfdae65ec88
BLAKE2b-256 26f777b0896c3d6019d33f78bb136935c6781825dc6eba116906f825da7d7a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c610f3c99eb65c033010efb293f5954ed34d4486b04d7719e0d06ff599b8f230
MD5 985dda44223c7e78c2917eaa5aa56038
BLAKE2b-256 598bba0b81bceac53d551ffbb865537eaacca06a31c5773f66caf7e0d2fd9256

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.1.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.1.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3a95d115f6a51db97660a642ac0b5237726238b611bb61b6a41e14c7960f04a6
MD5 46f4d2640c2dd5ff975ca90fb91f3008
BLAKE2b-256 b8cd02312e50fe9a323a5782ea68630a22df4eb3467f267ac24265e304325156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87652a44a5edcc78142e35fd83998c89d800660f4f3a36fbfb706fa7657aaa63
MD5 5089dbeb8057ce22811588307e4bb415
BLAKE2b-256 de7f3a8efa619e1c0f9f20bbea1e705d5617c19492215348901e61a3dc95f6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.1.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7371ba21e970d5139b58fb434975c5e07c9d0b11c72ee3753add6b89faa6b557
MD5 102bb9b69e875a7c94ba43b4e8c94160
BLAKE2b-256 ce30320c10dba5005a92f7c906fe98515cccb4e6546927e77ea002407c666fb1

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