Skip to main content

The format that's super!

Project description

The Duper logo, with a confident spectacled mole wearing a flailing blue cape.

duper-python

PyPI version GitHub license

Duper support for Python.

See the main project on GitHub.

Examples

The basic json/pickle-like interface:

import duper

DUPER_DATA = """
APIResponse({
  status: 200,
  headers: {
    content_type: "application/duper",
    cache_control: "max-age=3600",
  },
  body: {
    users: [
      User({
        id: Uuid("7039311b-02d2-4849-a6de-900d4dbe9acb"),
        name: "Alice",
        email: Email("alice@example.com"),
        roles: ["admin", "user"],
        metadata: {
          last_login: DateTime("2024-01-15T10:30:00Z"),
          ip: IPV4("173.255.230.79"),
        },
      }),
    ],
  },
})
"""

python_dict = duper.loads(DUPER_DATA)  # Actually a Pydantic BaseModel!

with open("out.duper", "w") as f:
    duper.dump(DUPER_DATA)

Using Pydantic:

from datetime import datetime
import re
import uuid

from duper import BaseModel


class RegisteredRegex(BaseModel):
    regex_id: uuid.UUID
    created_at: datetime
    pattern: re.Pattern
    matches: list[str] | None = None

data = RegisteredRegex(
    regex_id=uuid.uuid4(),
    created_at=datetime.now(),
    pattern=re.compile(r"^Hello w.rld!$"),
)

data_str = data.model_dump(mode="duper")
print(data_str)

reconstituted_data = RegisteredRegex.model_validate_duper(data_str)
assert data == reconstituted_data

Using FastAPI:

from typing import Annotated
from duper.fastapi import DuperBody, DuperResponse
from duper import BaseModel
from fastapi import FastAPI

class DuplicatableData(BaseModel):
    tup: tuple[str, bytes]
    value: int

app = FastAPI()

@app.post("/double", response_class=DuperResponse)
async def double_the_data(
    body: Annotated[DuplicatableData, DuperBody(DuplicatableData)],
) -> DuperResponse:
    return DuperResponse(
        DuplicatableData(
            tup=(body.tup[0] + body.tup[0], body.tup[1] + body.tup[1]),
            value=2 * body.value,
        )
    )

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

duper_python-0.2.0.tar.gz (138.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (757.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (798.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (853.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (762.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (593.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (590.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (582.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (636.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

duper_python-0.2.0-cp314-cp314-win32.whl (391.8 kB view details)

Uploaded CPython 3.14Windows x86

duper_python-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

duper_python-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (632.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

duper_python-0.2.0-cp314-cp314-macosx_11_0_arm64.whl (530.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

duper_python-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl (750.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

duper_python-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl (790.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

duper_python-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl (847.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

duper_python-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl (753.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

duper_python-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (619.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

duper_python-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (914.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

duper_python-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (584.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (575.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

duper_python-0.2.0-cp313-cp313-win_amd64.whl (419.3 kB view details)

Uploaded CPython 3.13Windows x86-64

duper_python-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl (755.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

duper_python-0.2.0-cp313-cp313-musllinux_1_2_i686.whl (794.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

duper_python-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl (852.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

duper_python-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl (759.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

duper_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

duper_python-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

duper_python-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (919.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

duper_python-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (588.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

duper_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (580.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

duper_python-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (632.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

duper_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl (530.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

duper_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl (553.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

duper_python-0.2.0-cp312-cp312-win_amd64.whl (419.5 kB view details)

Uploaded CPython 3.12Windows x86-64

duper_python-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl (755.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

duper_python-0.2.0-cp312-cp312-musllinux_1_2_i686.whl (794.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

duper_python-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl (852.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

duper_python-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl (759.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

duper_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (591.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

duper_python-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (623.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

duper_python-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (919.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

duper_python-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (588.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

duper_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (580.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

duper_python-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (631.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

duper_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (529.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

duper_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl (553.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

duper_python-0.2.0-cp311-cp311-win_amd64.whl (419.8 kB view details)

Uploaded CPython 3.11Windows x86-64

duper_python-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl (756.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

duper_python-0.2.0-cp311-cp311-musllinux_1_2_i686.whl (797.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

duper_python-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl (852.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

duper_python-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl (761.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

duper_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (593.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

duper_python-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (622.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

duper_python-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (917.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

duper_python-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (589.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

duper_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (582.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

duper_python-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (636.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

duper_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (530.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

duper_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl (555.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

duper_python-0.2.0-cp310-cp310-win_amd64.whl (419.5 kB view details)

Uploaded CPython 3.10Windows x86-64

duper_python-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl (757.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

duper_python-0.2.0-cp310-cp310-musllinux_1_2_i686.whl (797.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

duper_python-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl (852.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

duper_python-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl (761.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

duper_python-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (593.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

duper_python-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (622.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

duper_python-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (916.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

duper_python-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (589.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

duper_python-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (582.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

duper_python-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (635.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

Details for the file duper_python-0.2.0.tar.gz.

File metadata

  • Download URL: duper_python-0.2.0.tar.gz
  • Upload date:
  • Size: 138.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.9.6

File hashes

Hashes for duper_python-0.2.0.tar.gz
Algorithm Hash digest
SHA256 94cb847f5a64af69bf4e39e729768cbf52ff3629738952db27cf715248f428fb
MD5 ded2c51603436484cb8584c0143fdb42
BLAKE2b-256 17469658c5b188f86db0b3243ee15e41e593ba13018345f7b61cfee38af92b56

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8e213b51d05b95e40dee977ac01445ec86492accdda6b744414319b3c656726f
MD5 52ddec28714d577c22019dd85ab81ddc
BLAKE2b-256 356785b0a64e5f32c8edc34cda141744acfc867df65aa42fae377f0c69f3be46

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 822d7bafbb0e26405c487f58e863396c891c239ef8ffbe333317f8c61f3747d5
MD5 c183b1f5c5abdfea450f5d416ab92e2a
BLAKE2b-256 af0830b76d73fc801fe9db1238fc776ca9fb809d281b8e7b02b28ecabf030743

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 50f67f0486dff61466cffe2f9bcd0e38822fb451d330c27d90ed8272edc072b7
MD5 9c079882d5ad2f5c5e2dcef34d21ea34
BLAKE2b-256 016d4e2046de34f4f63cbab3bc2b7a6f45b019c2d34f30034e8d182a39501905

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 80475acf1a06a73c2ab34565ebb0f8a3f347084cb89f0b679cd524cf9d61ef13
MD5 15f543ea398d93768a1952d5753e3a1a
BLAKE2b-256 2bc5671ae2ca461742447a91343be1d7ef81ee99a0f0e92c48ff23b168ca1760

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 55f7d3fa77e02dd49438317ec8c6034bf0f62f1aaa9e9ab41f02cb678d24604e
MD5 800f79a92dc7f6f535d8a14f5c8ccb46
BLAKE2b-256 e0d3964f670c18c71e0095d87071bf8067cb420caff138b44f2706594eec23d3

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d027f63424f2ced84a5e27c7e201c061842bef5c343d913c2652875d27b6bd80
MD5 6af937cce5f84e23fc63a2754a4910c6
BLAKE2b-256 7880583148dfadd000f20df89d2dedb7d629fb0d3cc0c911b506c41ae439d613

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 926cab25e8d257a2e378dca3b005920dadc2e140eb88f7141efc600bcf65062f
MD5 47d12d3e388d065419de93754d0a51f2
BLAKE2b-256 0b3d29ad675a78f477d19a2e0ff1d1ab7178763fa412fa2b6be3e7dcf55dff40

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 213df56919620f35f3c7d4d41fc4bd1273c0681fd5136cd4b6ab82ccb00d8113
MD5 1a8455aefe417fba3a69a5eecb925a54
BLAKE2b-256 29dd15eeea381271437f7f671162b6f93ca28b646fb5ee0a1d3b2779ff948019

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4b85bdc648918354ba5dd46f6ec4556602ee5f77a46507a7f12aa1b7ec3e504
MD5 962546bea27ceee2d0a24953ecfd92aa
BLAKE2b-256 2554ee6e41552416b40479f5daa8a5c977f27b8c639669f5f93b1078fe5c2a65

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 718bed943e9522f3e6b8320ddbde5d8a7f7d25ee9336220cbe53638847abcede
MD5 6fb26175785d4b1fdd76862a255a2781
BLAKE2b-256 045b82f70e13438d5eda0554b165ec0fa0a137981f40edc6b222d745e9b92208

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 475b220a529b4026460aa341f99291d53187bc2ea2c6126f953b3aa513d5bd24
MD5 02894ef4d2ee47fe1d5ff164994cd0d7
BLAKE2b-256 3cdbc8e55c1317c1d6ea6fe71b379c4f89a248d40ca0a854ba1191ab4bee39cc

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5b583a5f6e9f9f290eda96bcf2536d66d1172b3c0aeaaf332df580e4a5f53fbd
MD5 91be9230da8b563e538c2688cb888c3e
BLAKE2b-256 91d9b5da36e4c0c0cbd565f28befe600200df0ddd230521e55c50463104967b2

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c2e27667335f69ec239effbb3625c7a3e6539dd458615b619060ca4ce102d3d5
MD5 336329f329d53b62d1f8d3c9dd5db437
BLAKE2b-256 89a319a8c092a1dd5cd67c7cb45b24cd2fdbedc7a80d473f74cd1f1028d45e96

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0d11d2474d795c7a0f7c77edd81d853e486ec53ab60cc98e3542be2bdf8e570
MD5 be14d632ddd4d6c36e9cbb9def87b908
BLAKE2b-256 fa36052088ce67a6428acf03e2319015d0b697162eb4015773a07d2585a2a783

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 05cd1ccacaf3d2ddfb22064e7d31364b8478be6da2d6d858b03f93701d18791e
MD5 0c027980e3fa5d0ba87ff1a190423e19
BLAKE2b-256 7dd4e60c3009af2eb22d5731b127cf6932c0c7d41a8f3f9f84de6dfa0b0858fa

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 272d41834be378276910663fedab4b2b0a82c480bd559526a5788cd3e9a2f862
MD5 a70c4140a657de0111de7cafb521b285
BLAKE2b-256 c525eb3552a4fcbe0247700aae89ea52dc0b78cc63e516cc5fc3ac1ace791bcf

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 025454c0a7c778ea9c9b0380583a19d401207b14e71a3a74c8feebc795da7bb2
MD5 f17b2f0885195b5b23c6e81ac6ba74f4
BLAKE2b-256 660e1939218e4ae123ef5551893a869a6bcd42637b51f8f85828265fca89487a

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bc72ada2be361bfbc9a6021fb5b4bb20957725200405d653816d79eda4382c31
MD5 83e38c1e24f601c1cc6d82171ee718b1
BLAKE2b-256 56d1a98ef95eddfde29f268f1cc0544ab173db8d32e613dd44208261a6b8443e

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e56acc5b20928b520f47bc29ca18c53b9663bd678943bcf83f477b404677ce5c
MD5 cccfb4128a3d2aa2b229d58fae81d025
BLAKE2b-256 ac5dbb1006068eaac3bdaab7ccb9fe6c7f0e09dc11effc54367a74326f43732e

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c4e8fbaab7e001e3bc0dc0ba8753784a821e2771122facfedf2298a5eddae2ad
MD5 3e080596301fd3754f03696fab437d41
BLAKE2b-256 0bded2c8a0a2e5746d553ecd8e696e69ba2bbbec527a881594b618e167a6da75

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 846656b4736640061b1ecaa209a77d4db989197c5a27c208eb843654f6368889
MD5 9b2e432598f2c2b9ba5f5108045528a6
BLAKE2b-256 fe11fd57042b918e833b82d5b4e956d1ce5305bdfb101472641cd0e9db2e9df5

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fe02a1276e5d53d6b9b38a4980107fa77e41f33191e3e644499e2b8285f8db2
MD5 46fe2766c323ccf57c6cb714a7cdbd27
BLAKE2b-256 4481b760d63e71f39ab346456b6562fa832dfa9140e0aedf2161540159685afa

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 90a1b14959a3edcc4244f2c77272387fe861505eac04bffdbd0ea0a3e9918a0d
MD5 5ecf181d9d6c60d40127fdf5dc6bcde7
BLAKE2b-256 a3f4e840b4b1d02f31032bcae9f44c36eb210d89a7d56e92654631a3ced5bcb8

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8867eea145da39ed94dd758099eb59e82cc9dcd7d5037183d109c6fe86149fcf
MD5 cbf4518caf8276d6d69234845ea340ce
BLAKE2b-256 2bfe27ed7ec427a5fd435a3d8ecb40df380d3a69beed6b24e62b2ae876b5a236

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 80358d005cbf4238f5ad09ccd2126e5e9810d10e7a6bc59242e42637e603bd4e
MD5 fc69003814e4a8625bdbaa23eb2b9947
BLAKE2b-256 fa7293c49a81e537f6d38fee30ca7c412219c74c693a3e9c793a595723269ce6

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8eec02328dabcf05ecdb2f08456edeb0b9cf087d182e8d7f6840b9d67dd3e4cc
MD5 44eee0f03683d22b4684b2b05e71414a
BLAKE2b-256 8b73ad6407c8c1c84a5319c55a9a6f0aca1c8f6f95f52f1e352e811fed4a35c7

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3c24240b0c07f436593e438297416b87afd85508abeb591870febc9b7d67aa91
MD5 4ab64f84475190990acfbca7fe87b007
BLAKE2b-256 9f4338e8d1a14cdf975ac6197eec25a599a21251b0ce72b498d6afef47b40017

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 388c597f1e2e78e38d1ea6380aa31827539e6fa5dc6e6a7dc14462ab52e1eb6b
MD5 a96720a7d53f6aa388417b539aa7e038
BLAKE2b-256 b21e879cc56510e567b0b1cf4f0774dc204fdd80ea74291583b77c4b425e2aef

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f388d48b0f2362ee3008afe908de2bbc98564f17ad240311835b57eafefbbcc2
MD5 b5f123c3d5b1cde710f02da74ac8dde8
BLAKE2b-256 3fb490aec75f464b3aabfe73e7d9f52668575e05d019a55857bedbde3a307ba0

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24899cc3f18a70200e5d1f6e2b22569e961a01682c7877cc0fb70694590fdf19
MD5 735bd3fd256a8c735694a5e9b0759d47
BLAKE2b-256 3f960b0df3ef428aae290640a9f5199a04bc7633f3314c5017e2a776758cac48

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cee865f3c64b7479e3a6b823a2671782552d2ee66f2eaeec5f217f9c8edfe102
MD5 e64a0995bf0553788af19eca33a1c251
BLAKE2b-256 fca2a56ecb2992b9b48ee6381784455264dd3e8f0a365fec562174f13862d8f1

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 558a33fb028f6c6fd736b09fbeec36c427e12b87ab0dc72803117c7be01518cb
MD5 53af58e008729ab7a36f93d61eb03ec3
BLAKE2b-256 fa882b1176f41788ef4cfb45d278bccdce79bba9f98f455c8cb9c5731417948f

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf9601a74e144522918b54b0fa0b203488f58785c799d543f398956c1fd49c92
MD5 3432955740206f47fa3fead5a85eec22
BLAKE2b-256 b7c6ba21b0868f5e9fd5e2dbff4bff1c803d6d506ad7c3da3656dbdc71bcaef8

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1028e10ad22e530134bb16070645ad4ff91f074dd8f5e3952675e93f1e3654a0
MD5 0d2d6bc930ca2bfb9e22ddc149b43f00
BLAKE2b-256 8e9b3d1116fe2c888245c134526e43756df6a0f5983c2241e820bfc6b84be2e5

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 976da9660c78f04ea2079551f036e95a97f0b810918e6254d1681f9c0d82f5df
MD5 cb35d980f06e2f42358b287e24ab1e18
BLAKE2b-256 c0f15c45daed35461f63f1bab4b0a3aeeee110f4811026701d23d2b4b6445ab7

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1566158e27b81f516979d42c9fdc3c09a574324cb39f87329188b758c5a35174
MD5 e505cfeb9c29d71f66300d7820f3a7a8
BLAKE2b-256 9d3ac72cade19db4cdf43f24233f7ead4470ddfbe58758438317f659df68e34c

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dac27ee68a4bb286d16370f293e5176ca1a4bbe903a3f8692afdb4cd6e8df1a3
MD5 5ae6cf0fbcda12fc1b7f50013aa0c641
BLAKE2b-256 88489b1eb62fa92dff9b171b011b6749f773ae23bff91a1f381d5c9428516e2f

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62b2b435d56870f1c27e31140f50c7951106cb88d94f2f357dc65ffcb094c1ec
MD5 9ad450d32c02317a2da89d73bae59fd4
BLAKE2b-256 94ba6e6024d7412f5060a88271f0bfdad7ff31f7b1307a8b43c281eca211a2ff

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 24a8ef629b13e6d7c70a6b45ed515d487fbb63b273a63a5625ad90a0dc455efe
MD5 0cb9f789a822f6fc751e04db5c386363
BLAKE2b-256 43ecb368d6f56c072a47f693ec3bafafb343d2081885e660edf221763fba21a7

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20441da175b2eabd8219a02a2edc3cf7d0ca007a9209c8d4ee49b107e3051a18
MD5 2863a01e91c6ad4a659ad7602b8121c8
BLAKE2b-256 300256a14982a318827bf0ea4bd488f10ae33c07ce3e9db0b4637f7780033b4a

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e85f9aacc4f9ac92a93aa8050e8eee6aa72bdbd20860d85b09e05845cd9fb25e
MD5 9c4a8b10807ef4a4a65af5e2ff1d11f7
BLAKE2b-256 514c5907c61c67da686c688526d5eeb1c392a9f30d0e702de7984317eb610cc4

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 635049eeb8a9c9540b8b933a372ba2c6d08824a82bf9b50e1284967985a82a82
MD5 b3ded9eb326602c93881cf0069f4d310
BLAKE2b-256 507e5c64789f8242b9f1031ce21269ec769f1875e1e5df3832a997f21ab28f64

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cf5135ddf2a714789c4d73b618bec76f7a015509f02957e9f8bcf3ab162040f8
MD5 6bb4ce950cbaea57ce4b7e186253520f
BLAKE2b-256 1fc8d55387af89ea1c19dc8c58a6c07764c2251e6e386e60f4486c9f52f588ae

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 296cd15d7a0bcf5017f62601edc1177afbe1425df52f79e3552144bdc2359cbf
MD5 74949dd23ebad2949ae036540b5da596
BLAKE2b-256 b1028b58e6d271a1587cde01c15ac17a11f0557de493b77319630313bf00c80b

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeabbb98646159119c7d96ede97588da8e10ac50f5b35e2275d733325d668548
MD5 6ab7e9439f06cff3a9106d32b39f776d
BLAKE2b-256 84590e9747f15e146986adec01521f3a9928129affc6e62dbc4303acc4bda1f6

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf2ec37e7b5b6efd73d344ed8302b9296b6f078959453cf75e872fb4d3e2329e
MD5 dec488c28d248f841a662de48e101d48
BLAKE2b-256 48ce255d36d03e627efd11740b8f161562d6372088e721d4cb42ccb57aaa6b2d

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e93eb1effe12f5faaf5ded8cac9274a60290f75b56df916563ff45b4ba27aa25
MD5 ce48e79f2cd75b19931ca5f12b97a269
BLAKE2b-256 dc34858115d89a1a29845f56f66dbafc95c49f331595131e3b55270e5ab02fba

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 763ec4c0cca720ff61297867ea9cbf07c66e5f7764a69f0adc7fb769bd6b3f84
MD5 08d200d08775adede8bf27541161f1fc
BLAKE2b-256 ea3c0c401fd13cd933f2eb2309eaa3b93d08939785efd04b382e4ca1765643d2

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 6e17c9678b5ddbdb254f8cb71816f36bf45cf8db8c8a6cc7685eff90bad67496
MD5 ee0cc4313dc0340c1e6ca852beff3d1b
BLAKE2b-256 f348af9407bac73944eecd5df3daca37d4b22b6389bb2aaac08167085a19fa40

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc4bd4ea17778eb95e0249528f0427e35d060f2d0783a915e88a1d35b8fded99
MD5 f1e164a0b7da822e75fa1b859e00e093
BLAKE2b-256 1d1a6e2020e151eb0bdd3512d867e183aae7a7f43eba5b84d75dc005549f0890

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5f373021e78ad80143e30f15a679934d47a41d135a5f807812d2ff27c2c0e4c
MD5 4806d54b384548ddc765374a540bf13c
BLAKE2b-256 d60e720d7e9283fc3fe8bce4bca476a9caa0b551f10dc41a3b43c9ef99078fdb

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58ba7a7be71c486c9ea7677944e2e626c604eb39272dad70d989b037d617b73e
MD5 9e0ba6973cd8777730d297ff0acaaa11
BLAKE2b-256 5425cd14e2a68848098f16f84d4b6b7139e7f8b4d8fa372fbe8abb640c95f5aa

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5a518fdd3040d10e3633e745bb8bd37a4e2b1b94039917d784624a08f15ca94b
MD5 6c96919f43ae45fdd44958b5d18e90dd
BLAKE2b-256 e35004d8910aa48fda08fbf531fd1c7b27320f203659d8820467ad4d47d5a970

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c03ddf747efd54592f21ceb4d4b1011c6844f9f36a68365bca20ac093fa86d24
MD5 e9d6242387292b8bbff1f25fa3da4ade
BLAKE2b-256 82c8a215a05dcb57bd8f95d2da8e41cc0bd73aba7ccd93180efc5427d011a6f9

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d7acbba9453dc9d1fab51d7171dcf60bd598ca72672a47ebdcb7fbff3ff5d9d
MD5 bce1cecafcedd4ff6c90f2a1cee51d86
BLAKE2b-256 06fb52812fda9fd7c8b201f5882f88ea4c200e565c453cb6120ebe19a4491c7b

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0bbe71159072e7400a482f0ba796aed14267182c1cf37ccb953f8d35f8f97d5d
MD5 26311ab4921ecaa65b9fced944fa4e3b
BLAKE2b-256 3e919f44f83d7920f41a044bbb7f90c795fc334793afb3272869c8e9fd15bbe6

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8b4b6762df0590db6c7bb4ed284b06293172336c1ff2564bded611724f67932d
MD5 f9b2c0211742d85cfcb98bb3feec2b77
BLAKE2b-256 f56580b9d9a96fb0e6f139ff0879043d6c4da933ca288ed36492d832691b914a

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18bc4ec8683efea36538bd0b29beb98687ed06f791f70b3724add2f0286f14bb
MD5 a29f42d4f561d93046a0d765f9bb66cf
BLAKE2b-256 b58c0e35b8d105074fff0677d0c3e9834070cd17625ab37589c037a59f531490

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3756f8dfcf94b6d5ca5ae19319e81276ffead7ddbb50e699972175b719151178
MD5 77c59d6706a0fa4a1975a515904eef2b
BLAKE2b-256 9b5c8e79e1011e180207b1cf9c5eef71a38c6ad905cee591e02e3c3f6625fa3e

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 052c204af7cf72b943f2342aeec155a7cdf01b0fdc49a067e83d9794be530ee9
MD5 5f602cb032062206cf1c5163a40d37a8
BLAKE2b-256 9a28ed2817435596ea6ade1acc90ef2f8c4dbc1b6d051d69715aa0341054fc34

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69ee29de5b77354ad048aec4fe7ad55b8215ff49acbe960d1465b8b5051fe50b
MD5 2ea788a4511f01f52b46bca5349b1783
BLAKE2b-256 d5067730c78e3d0f7f1cee6cabbd0bffddb559b2e09fd426a7c9752b2d53e1d5

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2cdcf114bfd474f76a5ebef33d47afc5c72d77b0436c5269ff6ef96dbd8efe9f
MD5 3a0cafb0f19cf2412ea5029dfea16241
BLAKE2b-256 54a3b0d6c7693630d2672d33d5aac83ccd1b6c92b093e635de36f39bfdc4a8d5

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f3a8058f6cf1700d1e34d8b96678f89b0b45af0d2d024e2cac423425db89d510
MD5 d787a2711ba62ce9a2b65405529b40eb
BLAKE2b-256 22a7cdb221703b0af5bd05546ac988c76f375a0cbc90f385a4ad02ecd3b1c667

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b8fc670784ac32a38dc4cf999ab810f3c4672d5a2f725ef0eb55ff36f8259bf7
MD5 6c829ff504b37926f7966a4d23689f98
BLAKE2b-256 060935954aa43c4190bb5f60710730c680b7dbcd0c66de54857c43a4ed6c336b

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 97e88e869d3ccbc62a9b38e6362edc6049bf07904a4163c665403a67f9503968
MD5 fac1462404a267aadd8bef7a63bcbf88
BLAKE2b-256 8b31fd9d0aa03db0489d49cc31cbe07908c5741485a53d55ce3015c29168592a

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1872264ea4a3f7a9cf62bd32fd2f3f975af0a33f9ad7ec57dcd1d67d7e7c46fe
MD5 1041c99336cb32e4c7d561ef53cb7826
BLAKE2b-256 08f111c05e021b3c270c2b5b3fe070284a8b5d43768e897bd758fa0f48f2fa62

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 669a1e83e1bbb280a52b093019c758db4ca56e365a3722f3b5e24e53f8a0b8f0
MD5 2778991b44bec0bc7b5beed8485632a5
BLAKE2b-256 f69d23e1fea8588d17875cbe89a321dba0b8cf8f38ec7d530943ccd7cd24dcbf

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5da0f83e3e2f729d8518e94095ac68c349375789083736d7256fc2c8d86cb037
MD5 a480f12d65fbda0158e8590026659e1f
BLAKE2b-256 2ccb222601b47f077590a9f287c9c7942657785d48e7083273deedb908462e01

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc3159fd4a3a1f46ca24af6ab9f9b9940ac95e10d9d353b4fb14ad7bff78a0bf
MD5 5321a4622a8352d1a2650f7ffba36ae1
BLAKE2b-256 2270e6624bcb00778b18c1f44e94231d45accaa9e5b9897d3c92fb943f891bfe

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c84257720c89675925915db116a4d305768a402d2a66c1c6e0ef38b4504a2339
MD5 6db492bc7dcc8ddf83711ae91ce9f4cc
BLAKE2b-256 4ad410ce30273c8132352c7d536e4f6ad9c39d16a2d8a21316f0debdd3426f81

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 282846cb3ff5bd802cbd9a374f35eea288835126ac31826b069fdf278ff940dc
MD5 d7db079866686da84ab8313f88f72b22
BLAKE2b-256 b21e0fe5cf6073846084f2b3b7d14c470463f495882d563f66365f2117631045

See more details on using hashes here.

File details

Details for the file duper_python-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f87c5c3c50a1e0cfaabc0f44ee6586d8918eed56c735c774209a40615a0b1f54
MD5 20031e6c9db89dcc4fa80b2044cc360a
BLAKE2b-256 68d9c24b63f0826e2fb4ea4f3170caf02c89c1053fc595e62600054b0e741830

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