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.

Check out the official website for Duper.

Installation

uv add duper-python
# -- or --
pip install duper-python

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.2.tar.gz (149.3 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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (707.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

duper_python-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (738.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

duper_python-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (813.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

duper_python-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (704.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (534.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (575.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (549.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (567.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

duper_python-0.2.2-cp314-cp314-win_amd64.whl (419.2 kB view details)

Uploaded CPython 3.14Windows x86-64

duper_python-0.2.2-cp314-cp314-win32.whl (394.3 kB view details)

Uploaded CPython 3.14Windows x86

duper_python-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

duper_python-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (564.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

duper_python-0.2.2-cp314-cp314-macosx_11_0_arm64.whl (495.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

duper_python-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl (705.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

duper_python-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl (732.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

duper_python-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl (804.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

duper_python-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl (701.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

duper_python-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

duper_python-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (573.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

duper_python-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (541.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

duper_python-0.2.2-cp313-cp313-win_amd64.whl (419.2 kB view details)

Uploaded CPython 3.13Windows x86-64

duper_python-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl (709.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

duper_python-0.2.2-cp313-cp313-musllinux_1_2_i686.whl (736.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

duper_python-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl (809.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

duper_python-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl (706.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

duper_python-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (536.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

duper_python-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

duper_python-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (576.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

duper_python-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (546.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

duper_python-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

duper_python-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (564.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

duper_python-0.2.2-cp313-cp313-macosx_11_0_arm64.whl (495.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

duper_python-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl (521.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

duper_python-0.2.2-cp312-cp312-win_amd64.whl (419.4 kB view details)

Uploaded CPython 3.12Windows x86-64

duper_python-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl (710.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

duper_python-0.2.2-cp312-cp312-musllinux_1_2_i686.whl (736.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

duper_python-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl (809.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

duper_python-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl (706.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

duper_python-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

duper_python-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (595.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

duper_python-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (577.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

duper_python-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (546.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

duper_python-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (524.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

duper_python-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (564.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

duper_python-0.2.2-cp312-cp312-macosx_11_0_arm64.whl (495.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

duper_python-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl (521.6 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

duper_python-0.2.2-cp311-cp311-win_amd64.whl (418.5 kB view details)

Uploaded CPython 3.11Windows x86-64

duper_python-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl (708.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

duper_python-0.2.2-cp311-cp311-musllinux_1_2_i686.whl (739.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

duper_python-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl (813.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

duper_python-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl (705.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

duper_python-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

duper_python-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (593.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

duper_python-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (576.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

duper_python-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (550.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

duper_python-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (523.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

duper_python-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (567.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

duper_python-0.2.2-cp311-cp311-macosx_11_0_arm64.whl (496.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

duper_python-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl (523.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

duper_python-0.2.2-cp310-cp310-win_amd64.whl (418.2 kB view details)

Uploaded CPython 3.10Windows x86-64

duper_python-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl (709.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

duper_python-0.2.2-cp310-cp310-musllinux_1_2_i686.whl (739.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

duper_python-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl (813.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

duper_python-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl (705.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

duper_python-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (535.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

duper_python-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (593.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

duper_python-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (576.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

duper_python-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (550.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

duper_python-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (523.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

duper_python-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (567.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for duper_python-0.2.2.tar.gz
Algorithm Hash digest
SHA256 3a335e9d00ecc62e0e34e6422e1be1f945b1f1a74034148411e7d2402ae5f1a1
MD5 7984836f1f65d5b4db833a0dfa297b10
BLAKE2b-256 ad3a928b1d900c8066ec564da7f85e1b813eae3e59033fdea8c124a763994ce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 607eef7d75b162e255f924aead00532b158d728650cd0cfd78db9e096abe0c08
MD5 92473d8890893354642801b1360c48b3
BLAKE2b-256 91af86dee2d035197e72b693c84c5050296ecbbc4b2cae84e8937adbe480b22f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a864b2321570a1b3ec2dadb35e82999d669e1053cdb379782d3204768ee228d1
MD5 e5390e8dcf7144e60a259f700215a37a
BLAKE2b-256 da1e2384bdecba991c6b7d0386344166522514220a7e52b5225f6cbea5af1dce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d274039e06309c9c0a146b7358b8bca9f7e6d6826973484a223b82b19916f35f
MD5 16ac78546cf92dd1bd9f2ca6aa5a9113
BLAKE2b-256 16314ec6a988975b4195deceef8f370129474887a378c3d3ca204327a64ace8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8573a819dfab475947e6ad118123c531a9023690b9bb84f195f67d6042c0cd03
MD5 c327f25c69c2503ac885163d7f4a894f
BLAKE2b-256 7da999110319467f3cc921e865a317a7e984ec1c52e6c8a34617b172032c6116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bae1b2b6baaaabfbb586fbbe7360ed528019d9b150445b4908991900763bd1a3
MD5 4e90f51fd065554f89eae6ad5a71d71d
BLAKE2b-256 ce4c204abe0503f4fd0ca8ec718f93700d3c96027da05b3f18f2abb00d4d905a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f245c35840929308eee403524a4774907539632056ebac11ef7a15ba239759e2
MD5 576114f1c0b420249592ed42d0836558
BLAKE2b-256 9e6a22dc6e487aef02a6e1faccc1586e50f2852e336b28986ebffeda65d05b85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcc575bbb35011f07e610a86792f5eba6c98fe3d8636e263ed737f5ded156b2c
MD5 164f839ac0db1df5ee9a7461560b82a6
BLAKE2b-256 c571fdd807299504ba1516681fd2987fb27e752fc4b236d57be958aeaf8a46fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 597e1309845cecfd94d00ea99f7615074fb7be2c7cca2781834e7ab806437ee1
MD5 9e1f13e1fea2323d39db27dc8d8803f7
BLAKE2b-256 57e2caf3308510e0b5b1725bc46aa2876927162f1e9b6eb52e8b1a2c5eac97f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a3a034b7dc6c7528f599cb3330810bf3737848f8fb2147383dcfcf3ad8cad43
MD5 da5c5c54a8f094e52ae7d88dd2a41982
BLAKE2b-256 37af3b29b372c5774e7ce088154bab29c979e2d82fe351d8f9aabb01ce55947f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 edd18962b6ba5ee8bc4f9ae4e52c7a2529fd0defa5850a4dd0b09a6801b3447e
MD5 6ec716dd5f1d5be31157b3d65c6c4695
BLAKE2b-256 a73fc81a95b4f4cb759c99bfc16a00ba757ea17a07d256efe5c63736fdebcf87

See more details on using hashes here.

File details

Details for the file duper_python-0.2.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for duper_python-0.2.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 88443d1a25008e40e606bed44f5e6d8e1510276cd3c313439fda654b8b379cf3
MD5 de23b6dc439b6811013f33eeacf3493d
BLAKE2b-256 56e1d2ce5da204425c96be152324e6c6249468e7d791c3ee9848458cbe8c06df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 185589c6561a54cc3a0ff7858c9ca081980fd85def5d7a78c0cd25881a7cf4ba
MD5 e5bf1483a1e6b2a05b5c873ee7be4199
BLAKE2b-256 c296c36b66fc34198458acf8d7ed7a1920c9a5b5ad20b4250dbfc2cff7a3706e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b8637fd07265c5bd1aa93eb0fe5e0bee72ccfc18d41b70f2c234b818612f6ee
MD5 de9bac24d3b03f71c57aab92d838b0ef
BLAKE2b-256 f19fa9ba94a225eceec42be3048c1a1ddb7501a68d1aabdc730d884ac5d3ff63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a104a20d265ddec4d6845d9894430a6c37d2bb2317c4a9cc3fc1c22d288febe3
MD5 978dff53a9552358df8eccc592d254db
BLAKE2b-256 e4b653f1ce62a303bfc07e844faafd80fd8571c7ebe951d6d7a4565090186da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e26e2193d24575680dbb5bd017d16d481280ef2b10c5e0c2dca9493c6fd19fd3
MD5 89c0715f4ef9d858e01d9804d2bc3832
BLAKE2b-256 c906545784d82803d46b521391467a2246cba8956b1ef257f5d10238c4bc45a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5eae4bfe680f1a2d597b4d8ac9e6eee6d214d37c26d3065e2fd7d5bbf5e790e7
MD5 3310f9ee534fbc2e416dc6668af8d9c9
BLAKE2b-256 a84f9f51196962558f295302e3488c2e9e4aeea75f9043922cb3a15e78a876e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 249dfeb3e58c3ad78fff8683d9824fdc0e1abb50197d5022dd881dbd0a691535
MD5 d1f2c8ee8cd4af0da26f0c310a61c461
BLAKE2b-256 da38d194094423744cfc5434e48202273fb9dcebcd551f8e6f1b2b254ea2575b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38fb7a82e54c1b8a302bab9158bcb8ee00ed8a90415f5f01e47bba13bc929b8f
MD5 4387a6a2b1b564c70b54114e1853092a
BLAKE2b-256 63550b8847be0e3e121f42097f25ef81a359b402a4941ba3dbcf952a4f640a3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fcfece4d43f12a3d5175ced4b9f7d400dede6cb7d69687c833a7b686ce13e142
MD5 982a6e5a587e02500feb6769f40724a4
BLAKE2b-256 6709f6c89f9de586653d993ac17aa4ecce0e2ca2b7608c08590195ac0ced131d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f4c1b7ce30c3c2b3c86676b5da1f0f9d7a7fdbd8652a550d1bf3128b3b13d90c
MD5 f98e5eef79d9fa387d7f4eef3af514d8
BLAKE2b-256 bfbadc962c4e81baf51638efa242c83e80a60fa107f6862adf3af5c0a80caa7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e455276988fca8ed3a96a77e39ce9cfedb9bddbd1ce1d33d4c08e1d0820f457
MD5 42abf46782962493ebc3d7ab37fc6565
BLAKE2b-256 16141447ac53d82456f542d9be82b85a506f408383b1f996a9bc121e34023dc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eac6e7b16d034505ee6668f241d0914648dcaa4a0407447654ad7965c6bb539b
MD5 bcac07387ddc77baeff9a9d88a068ea2
BLAKE2b-256 6517957ca9087a65d6095959839020cacc340c6fd1e8abfd974db444f2c94f41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 112c0be435f35f9edda0a81fb257c5e5798eb3e6fd41ae27370950fd67906133
MD5 b9b691598bac7a2ff3eb7f6db8761c39
BLAKE2b-256 e1c0d2cf5f5988d862b94c1a26e8814080d1443f9ff772ff5ef06f09cb5c4b72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 76151e6f89e29fe6f905737895870289c34aae7a152bc3d8a1064ace3d371688
MD5 eb9efff8b803c8017c83dd52700c4f57
BLAKE2b-256 463cf8bc1f704f1795d3327f47d768b9278a499c95081cb28efb817a0d83fbdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a85a913a3ce16c410c1e8f411e6e851b85d0e7bdbe95541d164574ea1284a2c
MD5 592c67295c6b77f2296a975bb869e897
BLAKE2b-256 6ef2d61bb02f620df66b28a1eb1363c097a601cf36a61eedab1340a214ada959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0c52a4cf4e05546b91549702a103060a6d4d126de0099d357edc8dc95d5fdfcc
MD5 074e1f49ec912fde0cb34c8b8d8615c2
BLAKE2b-256 f44e7c72c35ff2ae6a79f494cf7271b876189cc36d9e3141d1dc06afbda8d7ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 654386d0c84f25d7307beb802ffdef9605dd4bc91c3f75612ff92bb4f3288bc2
MD5 0b6487fcc87f7d16412010c19302a707
BLAKE2b-256 5c3bc5f5e1185f5fa34fd95841480aa7d78b21fd7e757410db6bc767e573a018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4eb43f6c5f2671f8c25cdd2a95048948ba7bc427ce5107ed2154e1fbd5c878e8
MD5 b36409164d972df69ba3e18d5afbf61a
BLAKE2b-256 06bf4bba5a4bf82db9b8a63408ccbcbc10bda6a7ee3d567302ae700af22f93d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74e76cc080447c57ec5f05b7afb2f05ba6ada0bedf1145929c0cb2ace886a598
MD5 2540f85d3a3252171c0498c93b866eda
BLAKE2b-256 bf596be203babceab1fcc7537e9e6dd4fe5fe5d0a80be1ac337cb8041107e854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9132da7e66eb68126eeebd50cccb5f624fbb2a26d80c89832ba25d756461998
MD5 522a26d7dfb650da4efafaa5f5ce80e3
BLAKE2b-256 9b71cbd089a0633545f55b7f55d46e323046b3589d17ee2bf49cd291203dcbd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 43db884fd4bdcca30d3edf415c7042ef8e8abbbdb7df7d3f36eaaf368f5c8880
MD5 efefe08bca054fd8278e6202128af378
BLAKE2b-256 6898836f5eddc3d0f57d7ea1b7ad7e13ab146b4d8e92ac31bf729abb54359543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b59c53e82d1b7cf8f06a58d434804c75260f1264f97aa6bfdeb4364d9353878
MD5 4b9e64dabe09e258988473b6e9ef582b
BLAKE2b-256 83d9488d17cfc0010a7636deb0c5a2b867a037a527c641d1457e3db5d9e451c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4190cdf24a906cb9b6ff89ce4fc15b1187c6cdc2d82f89e8112269cd865ee4ac
MD5 8e810422f633de4fd86aa1e44db258e5
BLAKE2b-256 ed30672df2a3f6fa517d6eaea7dbfe6ebe8c4950788ae56dea1b99577f2a41ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 676ca4b4e31b4b98821ea88d08eda79bfc57e5fcc7917cbd34272c237682a284
MD5 92ad50308cb521aabc8a00bfaf5b1343
BLAKE2b-256 089cb76d75eb14133a33791338f258a7e9f0a8c5a4a68947ec4030452f3e20bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2b4f342278c09b16821c6e67691f3ecafcd4d2f3639bd4416a00a9557e161e7
MD5 492d9ccf34cfbf4bdfd9eae0a97fcfae
BLAKE2b-256 4f3031a4239e74321ce3ce10ad8e7fe51f44ab7bef84ca12c2c7a0e8484d13c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 76d547ad3e83b129aace93e40089ffae2000b9ca164d57a3e0bee380c86e2698
MD5 9b12d5245e6528668d5669f1d6ee9476
BLAKE2b-256 03cdd99bc7097d83bb7419c1e2199cef99fc7ea615a3e4acdf19f8b7d4ce5547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b3d72a3f7cc8924047053f943533a77c77a845a6ef4e4cd7dd3950dc6cddd68a
MD5 dc3a362386bf7f2d6aa52a060fb2a495
BLAKE2b-256 e4130d09f1be6f6de9ac21b633b11c07a5841fd4aab8015084b4e8efb1d3a646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c2924f37dfbfaec7aab80fbff229fd22aecc3e13f2d61c621e02b653f040aa6
MD5 79d1478af9e405a32ebdc484f1f4f282
BLAKE2b-256 163999c7727b519170b845d37c88a03254a9f10de522926c81a9015a81867061

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a14c1f4b7518d3cf98a642e1c72c6ac5fb80831571ff1cc95b90123a828ff639
MD5 577bee321cdf1c8afc1ff9d6dd5aed47
BLAKE2b-256 347d6b1a078451eb752262726d21e59c753b6fc1ac29c878df351366c59a0ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9c75966d72912e253464f3fd7ebe4abe2fc9e55e397db29f9446275f3410ac88
MD5 03f9e72a033a31cbbc3f89556d318c79
BLAKE2b-256 0d20ecac4972ed35aa8d2b6a1b802fb68ba5a81467757266ffd1789d7888b75b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 912b97adc7bf76f17b792f7e980c9ee1027a78ae9261798b357391f7a7eeb1a7
MD5 c3c0e3f28a7a030d066c1a8d765dd14a
BLAKE2b-256 91c33631df791176c8f67051407d16da96bb2615b434264cc56ad4b18941f8b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d444680fdf06b450acd1ce31e3fa7bb76da0ea5defbf72b48d32b1c5b5bcedb5
MD5 6c6609ee7f7a1e5f3ef8e4d50e77630a
BLAKE2b-256 5b050c08b62d96cc84b33246b88645635fa8660c8ba605c89d8f7dc81cfe78a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3559462ed43e51b00326fd223efd684db189eaf25260477269177caa1704b37b
MD5 c6d2acc4d73775cf304ad60470502818
BLAKE2b-256 1b23dcea24941b09e2a94e5949a290f49c66d1832850d3342bba4d1eacf4522a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 379f0cab19ddd8715b953e58fdf484d3a1bd56b9e8e612d29857da5b96383728
MD5 821641fffa6b291515adc8219b0dff62
BLAKE2b-256 bc0c8bba339844bfa69a2093b74e6f3a98febdaf2a716e8740cbebb31e53cd30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9f76becb30ca74aa9a0c49c35507b534fff7f35d9516501e580f461880f0d1d6
MD5 afc26ed8852744e6b78cf9bcf0357b7a
BLAKE2b-256 91fc9be15f3c0a7bb61f4388a18e72e6860af4111c57a1ae17fbdda8399df55c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbcbcc6e421b8c772b3858e5c6032d6d055aee025e9ecf3daee5a764cad6d653
MD5 bfcb7da46b5c6df85d82c1175928a98b
BLAKE2b-256 dc553f10396886acabfd68fe79f22561193b40fba4a17f65448400d1774649c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 be4011b025237b17928626f22b0ed3a1570965b478014cd05e8123b692d1e4ac
MD5 ebd7ae55a9de6d08a746151c77b96d75
BLAKE2b-256 f31585babc0cca5cc022df80b73f7fb316100dbf9def311f5a89af9724bc7c1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0eb779ec69f465399603a659c321bda9afb9f72c4e65de5ed340637e36a2d5a
MD5 d42625a147bafbe41d0224c366b783a6
BLAKE2b-256 3ec8e681c7e715b03361a09accd0c3fe2febd1b1e88106ef1e748d570fd08d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1ded321c764441b65f384d9aab29a7176caa54e1d099f9d1218f2ecf06654dbe
MD5 2c19052c27b9affab7ec1158fab240f3
BLAKE2b-256 628376b64272ab6f75485d808ea0513bb9c788b01fac6cb3be8a724bad34eaf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f3ea22c6d39e1e5462092d20c1f7b5a34e71d4703ef7f8c54ec070c2826eb17b
MD5 bb202504b7323eb09eb319b58f2bc7a3
BLAKE2b-256 f68f7b86c40a5c80f9e40395e6c9ac0d8b54a6c7a741224c65d8bf1ff12c0055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb9076d13a94ceabaadc05129a31ed8c08f79f5c54784609b7b4ac9aaf0b7d16
MD5 f77fcbc1ed0168a9f51d792782798fb7
BLAKE2b-256 ab0758dc7b156f3255dbea4fd5cbd7566aa6b751e3dfa7aeaed8926935331ee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 06fb309811524980d98ad4c688a124b4490a00e18530f576df00686d7859f639
MD5 970541335857e126ef9e32d40d28625e
BLAKE2b-256 4c4b4a7a2a159a2cd9416062f9f8e2e4289c455263b4d619365e31dfe5f45d21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 977187a6ddf9ad6df44be16cad6b76d8bbb0b0804f3d11db45699125ff3a8c97
MD5 982bafedae7d3af3a3b3cf6e5b6eb825
BLAKE2b-256 e81b838336fd7bb807fd504d2c73f71be02b576476456829f8cddbc746a969cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0be252733528d9d2cc9144209c8c9d1e133446ba9310d16c52cadde7af190e03
MD5 44b05fd4350a95f798c99d723a885501
BLAKE2b-256 3da418de4a01637af051f10c651431bd277c5450ac2b603b837290954f83cb25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d169a3e7a5ff94d2996bfb5ebd924e95f1ddc0c079a9c31b23b9bf8bcdded2e7
MD5 8a2b343e61a189f2ea8e81eaf18e4553
BLAKE2b-256 6ac1fa7f821c0355c847bfbbd8167c8ea61df8b11f521e654f74419cad146063

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 995f31d686e2cd2c13d947ac439b834d1f91fe55898814f253c566798eedc51c
MD5 86d73906b3a955861f36b28c1409ca4b
BLAKE2b-256 133577ad4d99e2617d8bbbdceab021cb5555564984db82605007cbc21fd2e0af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0643d63d8aa46fb71ea43abe98a687bcb819342c05f64b9c2a3e7c13b52c0f50
MD5 6e217a54b3d950022279f85c06cec59d
BLAKE2b-256 6c5faf677b04a6a04039491f4d4cf577090a2bc5730b1012564747b5b0138509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f10042befcd20320d296307e0c047a270d714417c5570895464de7f290436e01
MD5 75e627e17bcba61808d46bce9d7ede47
BLAKE2b-256 dc41bca5ceb585d974853000f115dc0db6aff39179efa9e7385085c7eabf436a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65e7ad4d6f81024a890662407b00432c1614d0b03e00d2b5d7bf83e0355778d4
MD5 ebe86dbbae3268251853d8a88d0e9d1f
BLAKE2b-256 5dba4878e5c95684a61741faa29893aac3f4d1e9f5fb2a671c7b169024d56780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 041f54fc86a663ebfaac40516cf4e326e69f4d0846959f1de0be1c2acadc0960
MD5 f88cd531b3b77592c00b948d42e3925e
BLAKE2b-256 d8db855d1319613c36fb1942d63559fbe8959e7fb703c0c65a75b5e15bfab727

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fca87dc9153493e9d5d83d5294c08508355822e681e85d7602e185845652f69
MD5 e5fb66050919065ca3f0291c8dc60372
BLAKE2b-256 77c666caa388b2082f0b7744a28032112aeb6eb1b9e758e1061d6369b39cfa3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 492f3026ce8dba5711a8ca2f814bcf6d52cf22ee1e612a4efbd17dd0d99c2d84
MD5 5c95f52ffe0cb1f480a83ba98282ed23
BLAKE2b-256 23174f4ba0777c2f5598dd064b5be9000c7c493d6f918519822438ccc30f3486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 d40080430980bb1ea8d2ad88380d1452d65fdc86e546f3b6bc88f3fe47ef1e76
MD5 e312728a30cc9a6480ba94a299b04b69
BLAKE2b-256 c47b35ff7b5ddefb3a88c39048aed67d498baa7958954f2bbab46521e8a7472f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6449a980453cdce0e1351d90d8e1acc180b85792ebfdf381f67c8d1b788ca4c0
MD5 1e860297d7e70556c55cb3c331649c60
BLAKE2b-256 41a8a627c868cc78055a115b59bb367246915d85cd1e12d356d71db54794c6b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37ce10ac20a123af8480238c9d2e6d1071dc1121d67f4ca1a6ed60d237e1cd90
MD5 ebf1106bef5829fdb71b4bf4a0fba803
BLAKE2b-256 945112d097ac7b9b1d71c029f18584f063267ab0c0ad146406fa92e81cb006df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2e858bec6c6e12bc681c0d4923f34de00640ed9c129328beaf0ceb7919b08e38
MD5 30cf8b3074b15d3798f19ce731517131
BLAKE2b-256 e3e51288b380fa5aaff60948c4855b13bdd76dc099a38166d76cbb24f71b5b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 af57c546f3ccf1afa44e6007246e28f04bbb36a37061f2465fe202c69ef6a596
MD5 30ce0448c8fc6b53c11b6d2518bbebff
BLAKE2b-256 cf4e8e4abe3194fdd405b9c5f639fc914b5019f2e12a40dbd0c18d51315246d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8403f95a9cb3d55cfae09997061974326e7832908f60d4486f3252a3021fea00
MD5 229adb1a2986ea5b61f6df9a75a85a25
BLAKE2b-256 1284222010e8a832e6d3977e392592bbdb99b389656af16b7c2cd226814d59d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6e9e97c7af22cfee60dcc6901f019228a43e07d30b6c9f9c782afd87fc3bb076
MD5 2311531a0252c72f44baed42cc415266
BLAKE2b-256 fe1ce87d24d6da6e0d64fc578ada53fff8bc76b7e017818609dfb406a2998c1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 84d028aaf2421d40d1d596802a48ce8b17f4a5472778aa1934dcfd9971ba6ad5
MD5 a1671410b0563551565e4b6509993575
BLAKE2b-256 77232ff8e80500f2ac1c4d67f335aaaa1413f7eb7d61d58ce3ff50c231ef765b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8dd3665761e8da4df797499fcd7ac1a865653e7df01d9c39cfdd3bb96e2e484
MD5 2de5536260aabec9943a976f33ff4a86
BLAKE2b-256 04b506107ed08f8433b61d33e15c2399b08995513710d307abbf9e7c41480d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 67120e3208945c1cd89d3880c320250d676db477a1e32763be3ca76ca3e7f965
MD5 8bb2dbaa12fbaf66e985b56c7e9351e4
BLAKE2b-256 91805d5e65ee4075209dfe78fdce3d4e06548bbe2d6edb961331052c751b2115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.2.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a919b61b49cc178625fac1a798da763757a2ae4cf03fa6e1793029b4ea7e3b34
MD5 50853b06f80eaf803dfb64794b50925d
BLAKE2b-256 83d46e55c5ab55a67efb7ab0877db6fe5959afe9ace6a796338362d962c6fd2a

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