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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.3.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (216.0 kB view details)

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

pgpack_dumper-0.3.3.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (214.5 kB view details)

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

pgpack_dumper-0.3.3.5-cp314-cp314-macosx_11_0_arm64.whl (49.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pgpack_dumper-0.3.3.5-cp314-cp314-macosx_10_15_x86_64.whl (48.8 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.3.5-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.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.2 kB view details)

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

pgpack_dumper-0.3.3.5-cp313-cp313-macosx_11_0_arm64.whl (49.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.3.5-cp313-cp313-macosx_10_14_x86_64.whl (48.6 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.3.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (227.5 kB view details)

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

pgpack_dumper-0.3.3.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.5 kB view details)

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

pgpack_dumper-0.3.3.5-cp312-cp312-macosx_11_0_arm64.whl (49.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.3.5-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.5-cp311-cp311-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.3.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (220.3 kB view details)

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

pgpack_dumper-0.3.3.5-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.5-cp311-cp311-macosx_11_0_arm64.whl (50.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.3.5-cp311-cp311-macosx_10_14_x86_64.whl (49.2 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.3.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.2 kB view details)

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

pgpack_dumper-0.3.3.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (205.4 kB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.3.5-cp310-cp310-macosx_10_14_x86_64.whl (49.3 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b72f7db13f210a685daf4d9d0f38a451f99d24054b24f3d4d1be997c9177d112
MD5 40ea74420fb88fbd1d8afd867428dc6e
BLAKE2b-256 f7993ab294ddfc087304bb90d33d9380b447b29b9088ff556092af41efc82662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 313bc06060a1af85e679c40133556c40a50a419efb0f4207a2f162585cec5a95
MD5 91cbf135d70f75eb1b9d2e82f0154f23
BLAKE2b-256 d8542ea803750a30a3ea4531c25882d99789e3f26d78d09a727f4ba5343ddb32

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.5-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.5-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 5cad58c50b39af06118fe1fa8f7bc4a2cd29c3e49c61890ae6cbf30a5fddb789
MD5 f1cabb8eb9d99681d9cac433ec883fc7
BLAKE2b-256 6f77400f7a066a2205d6f35a4a0c7a5344a712ff7bd1fdb4dbcbd83fc84bf71e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e3698c3e4f83aa4b5f71ab566cf441dfc11bf4640f63431ddef585e1bc375fd
MD5 a4a678e4a6113bc18b16946d1a92ad7f
BLAKE2b-256 a2ca577e082f743e611a6eddcc2b7f051aae685a9b4c910f495418f1a00f9ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 802b47e3beca3999f1b2af5b5c04304260142dfb5baae172c8a5c09666fb9523
MD5 6b494a33de8eb6a0e5007951314aa6c4
BLAKE2b-256 d393338a972d5cb98304b2cac096e2194d1df73b656b3a3d02bfa8320013a6d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c7e2d11ad9cde8f62e5f2c424b883876232d862c10e16a84a5cb4ea32b5896cf
MD5 25e6f8d31ada32126550065f2575acc9
BLAKE2b-256 b0355835d3da5d0dab17367dbbc250653c29ecc32f38b8a06d3e24ac553f0585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 30b6141a7c2509718cc6a2077ed4165191b9f54d3d3f16130b8015e33107ecbf
MD5 ab486a7598906b3cbed42b6d81ea3301
BLAKE2b-256 9151de505e3b83f74b237ca80a71792c7ad2ddac437a31e0e46ba9d693e8f955

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.5-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.5-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7ba5f9bb21efdd30d1d71f485b59e1bee885636cbba851306187a4d622e28cc3
MD5 777325c0a6c33eeb0d3a6cd68e74e182
BLAKE2b-256 9fae7d8bccf39cb0c732a473362d31be95793da8aa2f96db849ecd149f0c3cc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5c39cfa7db41875d063443287272568f2a5b46be20873f5d5d140d7aea0b1ad
MD5 0e47935af0fa66663b2afc4e8cf75110
BLAKE2b-256 aedf734e4f6d52aadf28263dd5fc7fd3e39be72143089ac6ce47e8e4c5eda6d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 f8e3d0d93b48bbd662892ea653527cd17fe87257217ba1e42988196f8caaaad2
MD5 046ad1357774d8c228afa6df2d6ba64b
BLAKE2b-256 1ae2ffb00616a9180b57e114cd10f205d0c374f02a3f9caf82a3195a8f3d6245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5dc33abbe60043ed9200af4dd6b4c69fd3559d55f39d250362e3ee08480783df
MD5 471783107d167c28891fd21f054daff4
BLAKE2b-256 8d73dd6fd8a2bb5ed9b5c6b1fb7cbe92e0a61b711ab3f40585f1f70cd6aab91b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ac8ae6a5125b0767c198b5c117b3278b05d96911706f147a94ea10daa6a156a5
MD5 e933b7cef7516472b63a7e43c95dc980
BLAKE2b-256 746181ecb0320d3d9d8bff20f02b5cf82a2dde9a43d768aba4711e91af7e2623

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.5-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.5-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 106ad60dd9a576bfde5e7ceb23f616cfa89cceb376944c52d285e559730b1101
MD5 9eaa3240dbb83b3b2f1ec09052d3dd67
BLAKE2b-256 ca513697e804ee10d5c6c10faa212e17804ad1d82e2014e6f7d34fb24905a48d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d178109e260951a988c98f469ebfedfdb59651b0018ac89f0738002e9f6540e
MD5 394cabfcad026c33870fbae13c461010
BLAKE2b-256 4c0fdd75eecb8a53bbc65eab540afacc0cf8ac59c8c5eac6181fa1ac1432932f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 67b77619d2373b997b5c8ccce641518bc3db31f77133ce1594bdf3d6449ba6ad
MD5 1e373de2991c88173f18972ee2e6e0d3
BLAKE2b-256 2425004c367b30fa3658de0b37b9b8bae778c0ee4018addde3cb71a43a1bf212

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 aa3583b1ed5e0374dc127ff14e7ef06b9022edfe27cb09735f4401e19c219d4e
MD5 b49061c9003e44c39f75dceca51ee692
BLAKE2b-256 b1789780abb4db716f8604850d4e955472fd93d3b36f97bd41c22e8829b1b168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 139e5e3b493cb8b17b44685af55e18a84a40a4f806b036b20bfe57be15a5e091
MD5 99a964c7ddd440a7ce38095e8e34bf41
BLAKE2b-256 c80ac802fba2e719a8496e02e51d6e532be1b1e4ac50829aa724c58a54d55b8c

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.5-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.5-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 62a912d0c60e1989b88e094dee05d8ae8bdef0f86a754ef82008eda6ecc4f179
MD5 7940db1084abf4753784b24108916c65
BLAKE2b-256 fd20dff7d637f950237acbf88356e2bcbb0ce579ce806a7097e90cf52e2ef9cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afe480599bb902b5210ca8221087675019741d8de01381952b85ab82568e43a6
MD5 479df8c9023752f6610f8478c777c798
BLAKE2b-256 8b9f28bed0c3a751768cd07e2bde90ca0357605219120aab666d84df4693a8b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 35176f6ee588fc1d3e933a208445688a24d8984309119d07fd644385162a840c
MD5 9d6eb9c27916b8ebb8bff0fe00a8e6c3
BLAKE2b-256 7763a9fddc8ec441be7efc0ffcf682b3498a35bbfef80d76024b3ab49bac2d9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e34ac032daf21419c84817d34224da2701e463127d2c1fcf58fbc31c2e57f5b
MD5 5b6dbfab958ea45233804141c6e6b0ef
BLAKE2b-256 f1bd9a2d422df87bf60f0b725715ae893936d1d25b4685764f61ebfdf21c9fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8ed7b5c71a4cc585d43f1a63b1b48ef096ac803bd48294977d869f55c33f4ff2
MD5 e82ab8ab0f668d83831eb73414e5c7f9
BLAKE2b-256 6261b8519c686654a10f3820fbabad55d2fcc61f8d021f2ebb86a670f25447b9

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.5-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.5-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 08643d42136dc808aacbb001a6431e56bd626476c5e22a570bb2bb1eb862c807
MD5 18b261591b2599ceb2703e07a9e3c641
BLAKE2b-256 b76aa98b1c42c5eeb1d5234b777d70732f2663485a4d15da5af47cd7771349b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5039dbf4952117f1fac7d70aee4ff2ea8d245b4ce145a7a692be64e42218dbcc
MD5 3521b3dec6fabad5546d05bc57798f14
BLAKE2b-256 67321bace90eebcf4160c37bfb887f57d7c5471b927fac1a6a85b53a9f74d8c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.5-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 af096a011e7e50939b1a0072d6906aa9d398b6b7bf8fc62cf32cc247d09f3518
MD5 c1171cb73429f16d0c551da5c4060fee
BLAKE2b-256 af136ef84a83fd875a8f05482313b2450d57569cf8ac2f525ea183155e3eae34

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