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

Uploaded CPython 3.14Windows x86-64

pgpack_dumper-0.3.3.6-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.6-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.6-cp314-cp314-macosx_11_0_arm64.whl (49.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

pgpack_dumper-0.3.3.6-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.6-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.6-cp313-cp313-macosx_11_0_arm64.whl (49.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pgpack_dumper-0.3.3.6-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.6-cp312-cp312-win_amd64.whl (46.7 kB view details)

Uploaded CPython 3.12Windows x86-64

pgpack_dumper-0.3.3.6-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.6-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.6-cp312-cp312-macosx_11_0_arm64.whl (49.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pgpack_dumper-0.3.3.6-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.6-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.6-cp310-cp310-macosx_11_0_arm64.whl (50.3 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pgpack_dumper-0.3.3.6-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.6-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6e8e60ae67db2f66ac6c01c7bffa57a2d95a592f445dd0bf97c284d096cd55ae
MD5 28741bfeeb8cc5c6a4ba945c5d2165ef
BLAKE2b-256 f46da00cf6963ba15b0ea6ccf437ece2764c5004e82b1c8e166693a7e885e4bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ae1012f3a95f58dbabc81adec3776be9b4b16805bf9ad71fccbbd27971985097
MD5 7532cb37b9811002862014b5b38b5808
BLAKE2b-256 5925c548ea325345c2240d90ab8715b4c0fa524b36897c41a2f69c1c226aa454

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.6-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.6-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 00b07f23ec73b069c8a3678de6b236ea6b44e1ac94009aac2a7a014110375e6c
MD5 013990668a7b5902f4cacbc07620f994
BLAKE2b-256 ecafe433514e8679f1f848e5cacaa2803860a8d849a66a6564a87ba32c0a1499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ddb70c15f945ec0789a97a99f8866f6f9ea0af0b3eccf4611226361402f22fc0
MD5 6ecb7f29abcad04308d92c28520b5dca
BLAKE2b-256 7845db3596fb54487ca2a1d052e48d17739ffcad43778875695abdf7ccf577af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 bac15301ed9675a6356cc1d8b0a70766e8f2ccbea8dc59199f2f30cb4fdc9075
MD5 5a7a2ab4c9993809965406f0f5ad5eb5
BLAKE2b-256 2a888329a686a5352e217fc23a69e70cb8f47988b2e5fca55e96318d44db9cd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 215479694d7993195cb5d7f613a5fdbac63f78299b880edc6d95d540002dba6e
MD5 63ebf997434e536d7e327beca1ebf330
BLAKE2b-256 99a6048182fe6b2e13b597dd0ff2342321907509b64e0038505e58eb8cd43f50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 16eeed513d3fa187ea555c079ceb7dbcfa42f0241850372a199c1806539cc883
MD5 77d97050d44ea63bbb6e6cd1e20f2d16
BLAKE2b-256 b29af5c131c05afa7b010ebf6e628b170b96d63664a50bd79213334cb5e13eee

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.6-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.6-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 eb7cf6bed2a5094a1074fd398c630a20c5b14314d6f4a971bd130778e5db7ead
MD5 3d000216a2c37a919605ac3dde0d05d3
BLAKE2b-256 86112b5de0a32d468fd92a13f3bb2ecd5e3f0e22b67ac8aacd24f66a88b56d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a08fc284c6eb24b3f34af86e7d472bbecb02e2e39223bdd2d418a8e7d091cd52
MD5 55c6f78e5952b04a5b9680286d28471c
BLAKE2b-256 9041e5142d1ccc277aec6afe72768e3db0225440d8bf5776cdedf82cbd60b1a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 a3f10380d9ef92c2249fda4e21849767656f9c1f241620d9495cd67e2dab3e05
MD5 eb78c114614401268970608900334c95
BLAKE2b-256 33fbe68fb735415b67dfea6b680a312ca230dea43c25563dfdfbd0b0c8e66875

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1bf96b996c7c85465b2457ec8ec9d54d664bf783ddd4faf264e65b6cb48dda77
MD5 e43ff06e3971b747645e59232650b2ca
BLAKE2b-256 7d561420d286ae085bd0ea238aa4092725df9d400828dabfb46e649af4584c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 21af810914c6dc7b5bfd5184ba0653bb90e5dd974fc889514e5d293430134923
MD5 39dc36ef10992369fb0a268c9e617ab4
BLAKE2b-256 90cc17d2bc2b56cd2e8121e09d57eaea9d40431820871c72a825e81d4e877986

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.6-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.6-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 06bec1ebc8c22974ee20cf43c4fbdbd525722f189a64ca8f9cca7143b6a0a8da
MD5 922ccd6419f9c348d26cbc9156118f35
BLAKE2b-256 c5fd30b0e13ef41ae5d72d29c03d6789e28fc68fbc88ee038ece05c4bf4fc024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1ff6f841ea1a3a3d0a15e0c8018d77473e77fa1f605dd8e2aaa2a63cc6876df7
MD5 6a7ef1a054efc2aee40a23883eb1fa60
BLAKE2b-256 43929d5d3e0f4614f25e5bc74c1ff3c4320cbbb1f736455f6a4a90d1a1967423

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 0a02514ebcea91ad092a153f9dd931ee25970328ad03d9f72e8640344ae84687
MD5 02daf036e6c32991947ebfb58c1a6b2e
BLAKE2b-256 ce3dd687bc8f235cecf1943eb5652719aaec4dfd163db471846525f5ac1fc70d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ca1816a8e1fcb5f64cfd77677a0d7be647fd6516cf672dc9e136a8b3a165d4ce
MD5 026eeef3bae1ac48ca2ebb0479fca5fe
BLAKE2b-256 9714b5ad368d0e0451ea936d929ca50f551be3132be861216b1f8234e2ed8ad4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0eb8356f1ad23a04cbfe543b550f9a324917b6b519e189bfb3bd0973e8fc3d82
MD5 c0bda6220a41cf661e3856a406f7be2d
BLAKE2b-256 514e4e3903eda1bee1ab5eef81097dc512cd5bcb7470ee8fafd37a0719883767

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.6-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.6-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 7b9b7f28f6bbe7e3f2c392237e2ee4ed85c9247930e8c93cef0d29be9a092674
MD5 cc86eac3b87db64c269f263be79fcfff
BLAKE2b-256 d3859a42334704d42f872dda386e18c8eedfef2c4fda990c957ee989919666da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68e0751d4f1371ddef47470b7de72bc0d4e0fc5cab6801139e8bd351fcff409f
MD5 1709f4617aaca81bbfc84384a40aec05
BLAKE2b-256 d3c111ba015ab23ee4ff1055fae94786d1702e77d85a5fd57b6d98d52cea1f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 5b52ca744f2d03f6b6e920ddd08a0d51e00199fec3b710a56e06d45789529131
MD5 7fa7d0e8a2820b35225c757df4768b3b
BLAKE2b-256 0357541b58ed87b611eb6da16006e3e1ba1c4507fa1a5766f9ec66eb58b308da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9195109a2ae5591b165073f73c52825a64916340dfe424b6ddba779cf1af6d3b
MD5 258d96666bbc87296592217fac7f1168
BLAKE2b-256 ae7b647f7d97d7817743f3cd25001de53f9e57697336b43dd29819fa3b93646e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 070c0e88b11f2fae472ccbfeaec5aad77891375ee74b90dc1604cf547aea54f6
MD5 9285f0e37584fc0be8238e7ad2802d8a
BLAKE2b-256 482ab8515af15ca7df2ff4ad4e40f329580af2490d9fda98a47f6ad57905b958

See more details on using hashes here.

File details

Details for the file pgpack_dumper-0.3.3.6-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.6-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 fc566385d308411012f56b2d82fce783ffa90765b87fa09a4866faa79880a6b7
MD5 8d57d3ef57ae9aa235acc9670f3e27b2
BLAKE2b-256 6f4105f5adbdd730a023b575dc288f403bda9896a55a2428db0f5ea2171a4976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26e7bd70ea6fa477edd3533f6553ea11afd962650398c44c1fbb1ed176a5bdfe
MD5 aca3af03efc2ecbe7cfa5b3d827eac5f
BLAKE2b-256 6b8105f09346ae1c37fdbd760bb99433071d646933ff1508de4e3125d427c543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pgpack_dumper-0.3.3.6-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 c645b7dbaf16ee4ab84e211fa8d591c1ca4d77e4b8e923aa63ba9dc9256680d2
MD5 a35a1160bbdd7d269585eacf90d46b33
BLAKE2b-256 52510117109732f1354c87b903ac5db8630dc38a28c28d46edf546027f7f6cfa

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