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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.8 kB view details)

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

pgpack_dumper-0.3.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (214.3 kB view details)

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

pgpack_dumper-0.3.3.1-cp314-cp314-macosx_11_0_arm64.whl (49.5 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (215.7 kB view details)

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

pgpack_dumper-0.3.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (216.0 kB view details)

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

pgpack_dumper-0.3.3.1-cp313-cp313-macosx_11_0_arm64.whl (49.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.3.1-cp313-cp313-macosx_10_14_x86_64.whl (48.4 kB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

pgpack_dumper-0.3.3.1-cp312-cp312-win_amd64.whl (46.6 kB view details)

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (227.3 kB view details)

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

pgpack_dumper-0.3.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (228.3 kB view details)

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

pgpack_dumper-0.3.3.1-cp312-cp312-macosx_11_0_arm64.whl (49.7 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pgpack_dumper-0.3.3.1-cp312-cp312-macosx_10_14_x86_64.whl (49.1 kB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

pgpack_dumper-0.3.3.1-cp311-cp311-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.11Windows x86-64

pgpack_dumper-0.3.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (220.1 kB view details)

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

pgpack_dumper-0.3.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (219.2 kB view details)

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

pgpack_dumper-0.3.3.1-cp311-cp311-macosx_11_0_arm64.whl (50.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pgpack_dumper-0.3.3.1-cp311-cp311-macosx_10_14_x86_64.whl (49.0 kB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

pgpack_dumper-0.3.3.1-cp310-cp310-win_amd64.whl (46.5 kB view details)

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (206.0 kB view details)

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

pgpack_dumper-0.3.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (205.2 kB view details)

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

pgpack_dumper-0.3.3.1-cp310-cp310-macosx_11_0_arm64.whl (50.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.3.1-cp310-cp310-macosx_10_14_x86_64.whl (49.1 kB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 876f84f8137a8b1a7f5990c5825db8d17ecf47c52760ee36404053f4254201e9
MD5 3f45a07790e417519630aa9123ede851
BLAKE2b-256 553270d38a2c5b9f682f06806e6b99b3597f428abdc5ffc03cee713e5574a401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d9d7e6dff9dcf9fa7197c86156dc2d60a09cced19112184b92b46b729fc6874
MD5 b040fd665cf37354ac2e69a2cf6d49cb
BLAKE2b-256 8fdc11fc23c6a27b59291b8aa443faef3afbbdb1ae05022a03f4a681576c6836

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.1-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ed62e9e31ec2028759d00113c295328c926098861644555961c29a1712d40cff
MD5 17cfb652658aebc7efd880ba6771a51d
BLAKE2b-256 81d246de572d2d62ac09d5351ae563289e8063dbd5ed03dbe25f124e278a98a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00932a5b6ed3a6e9a1220b27740dbcbf4f20621766c84cbc081a246b4e753521
MD5 f589546efa544fe97498e67878e8f599
BLAKE2b-256 e2202c9c4f8100d9260b35d3c13017cb1e68b519ab724da7c04641dafd72cbc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 fed6083731deaab123ecea9522e552ad1afd9d33b65c85b9a343d52bde16882b
MD5 a92b66d2d0dbba564ee9778a32fc4eef
BLAKE2b-256 4ad01e0015a491262eaa79a4b6525fd49c4e4e776fdb7491fc1c92715f71fd32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8887b0cd350580f705c93db7548603386c41f01065c6cbca3b7210d34ccd64e0
MD5 321f362ddc1a11ba3cda8d29e259775c
BLAKE2b-256 3009f1a8ef2c8653bc5a9548feaf3ee61b61e62c557f0a1a8934a98feff4bef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4d509dcfa2aa7849c2834e788cafc697ebc5f2f546802f313dc938a1a183f5b3
MD5 e06d0ba1d2d48c8c8c9be8c8096e3183
BLAKE2b-256 72c89ae46a39f60809a8656ac7f24c9aaea5d03725d968625a10d422dcbcaf9e

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.1-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3dbe73f16ebbfcdd42aa3601c6617fd477979b53c6cc1e83771c5c23447c911e
MD5 9a83f3390048c714996dcd91722cdb29
BLAKE2b-256 bc7a1cb371f9071245ad2b0ba0719c73b97adc5d4cf13faec8bb233eac7e8602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 046011a666c7d884e77fe033f98ec7a5f50e96897faa77d8d4922e88fe480b13
MD5 116e872e0a049f2da780b74483f8219e
BLAKE2b-256 dfa4b5b618eedbcaec3188d7b2b496e4df5bc217bbc213d8d40e5114cc7dab25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 8d452a6bc9a256e690dbf91396d6e13a3dd39eb9bb3c898c33ba3a9f5b7fa6b5
MD5 efe98a3673465c6cb859122313098213
BLAKE2b-256 8123020faf583015537b3336b04168d027bbb9ab76891eb3d8c14d5301006d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dc63cffc9df0d570b1ae46c70326fadfae9be54f2af932ab58f552a4af54c1dd
MD5 1db6f2c4f02542608f3391fde204977f
BLAKE2b-256 a1f0e9accb52c0d3c8425ed56e25b035f9251783736e11dd571f4fd4c8a0b117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4164bd7bb2cab8d2eb4ccafc5fa278c7a1b9dadf77f68bea330fa771112a08fb
MD5 28f6632a76fe2c62e0f71f6f4e3cfbf7
BLAKE2b-256 541351847aae7e6364ce3ea5492f67affbfa33de12c09c5d7647f432711a8ad1

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.1-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e91b62383ad6c73f6cf026c6fe52c82e4793e09bd63fd4aab59954699ac2d7da
MD5 550e33ccb4165f7f0fe98b636a2971f2
BLAKE2b-256 1d167c5932eb1b4d4164521851a8a950f55a860b18d14513c0d1a03d5795829d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 31576aca49ccffcce7de63db9da73c3936070d4b62a801974902f94a5a4150de
MD5 8446a04fec2b1f7e4699a548939ea74a
BLAKE2b-256 173cc9ee32dc0dd5d074a540607386422b55e9413e48f7d212270d482b7428f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 da7dba0e5e9715b1231735031830875bf71fcab99be01155354a0806f6945d59
MD5 e24a7402969381c4565a544948453723
BLAKE2b-256 eff221d776eecb1ce2cea9111a41c94949f645352fd851fb7799f7270ad1007d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 37f113ff652ecbfc68f68ac2727f10e62ccecf9092f9b77ab1ab715b0dec7fc3
MD5 f4356dcbf09ef6550f60f13f477ee662
BLAKE2b-256 634c2153911b8191feca264a23801ba613543bdb7112c4df05acdbcb83dc58cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1c6cd7aa47383b09d2346f375ecbb2fbb5d359b04fc41cbe58ef318f354d94b
MD5 5d44d9d8d2c71fd6adb8c0813f825366
BLAKE2b-256 fbd37319a90c22f3046b358b9d6bfdd412a1f0ccb5d2b180d345c69ac27971ec

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.1-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 3b027646a236faa936068f4b43e7f593a96f04efbcca5ca2c9026116641d1304
MD5 b4ce89cbba5fe42bf1e4957efb810a64
BLAKE2b-256 afc7aa03e46f00c663ae3b8cbb3381a140abf734e6291cab03fde628957c7be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 13ffc995a21596381084dc638df48138f8a0eaf97d6f8dcb83df58bebe8010db
MD5 304796c5192dd351793069d89fe2539b
BLAKE2b-256 b847fd7f448e197ca2f71fd4ba06d32268a587cf486081f5a0884dd5677408d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 7da0092b1c146eaaf320b1d9ecd6adbd9d9892d75cbccea2528da0bc8c96264c
MD5 804c4c96932651160d57e29348cb38ad
BLAKE2b-256 d94c28e3b2d63aeca80bc4faaba356d41ab1f46832abbec5b6055a339431e0f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6a1b9fab515f46e55fd798cb62749220f99e85d7cbcc462afa28c417128433f4
MD5 267ba885b909c2449bc628cb0d7d9b66
BLAKE2b-256 2a6c2186ea2f730fcf14f14215753c0f82adc4b9d2f3ba31b0573a26d852e4f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8c436d615a84e5538a8a8be657871f846d56337545e6d77b8b367dbbcf76db1b
MD5 13daf06a4ff26f381a88f661cf755429
BLAKE2b-256 12e0199ab861308870a8e093bc688455a4d0234ce52281545ffa0a5d97799f4f

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.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.3.1-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 6b23fd90d260c3fcd997cfd4eaf90c5ec01178855637f34127fd962c450b9eb8
MD5 cbbeebc01032e66ffc542f85cdd57e18
BLAKE2b-256 c8e9062d99ae527c1d1ef3dc560b9645b2802d099c044327ed2f342450b84699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da3077f06eb6fe18440e8bfb21ba409d4de2397a523f55c06e0f90f30de09fd2
MD5 e50896d81b2f64d23f7ca79a0dac2ba7
BLAKE2b-256 de6a9109890eaaa496d73c7ab7c347d1d9b25ec1ed0c1ba1d95bfacc187d0ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.1-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 e60a389d228d6ef4cfb0dd6bd44c08dacf7519f1c1f8faf55045e11913c216e0
MD5 22993eb2b7f13be473b5585cddd049c8
BLAKE2b-256 4425f208fe71ecd88eb25f6e34db509cfa875b83ce9057a5908ed4c67e87ea5f

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