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.4.3.tar.gz (183.6 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.4.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (987.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

duper_python-0.4.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

duper_python-0.4.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

duper_python-0.4.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (926.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

duper_python-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

duper_python-0.4.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (786.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

duper_python-0.4.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (827.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

duper_python-0.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl (984.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

duper_python-0.4.3-cp314-cp314t-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

duper_python-0.4.3-cp314-cp314t-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

duper_python-0.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl (920.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

duper_python-0.4.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (777.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (737.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

duper_python-0.4.3-cp314-cp314-win_amd64.whl (568.8 kB view details)

Uploaded CPython 3.14Windows x86-64

duper_python-0.4.3-cp314-cp314-win32.whl (539.4 kB view details)

Uploaded CPython 3.14Windows x86

duper_python-0.4.3-cp314-cp314-musllinux_1_2_x86_64.whl (987.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

duper_python-0.4.3-cp314-cp314-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

duper_python-0.4.3-cp314-cp314-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

duper_python-0.4.3-cp314-cp314-musllinux_1_2_aarch64.whl (926.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

duper_python-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (775.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

duper_python-0.4.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (781.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

duper_python-0.4.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (821.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

duper_python-0.4.3-cp314-cp314-macosx_11_0_arm64.whl (763.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

duper_python-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl (769.4 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

duper_python-0.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl (984.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

duper_python-0.4.3-cp313-cp313t-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

duper_python-0.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl (1.0 MB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

duper_python-0.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl (920.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

duper_python-0.4.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (777.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (737.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

duper_python-0.4.3-cp313-cp313-win_amd64.whl (569.5 kB view details)

Uploaded CPython 3.13Windows x86-64

duper_python-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl (988.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

duper_python-0.4.3-cp313-cp313-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

duper_python-0.4.3-cp313-cp313-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

duper_python-0.4.3-cp313-cp313-musllinux_1_2_aarch64.whl (926.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

duper_python-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

duper_python-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (782.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

duper_python-0.4.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (822.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

duper_python-0.4.3-cp313-cp313-macosx_11_0_arm64.whl (764.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

duper_python-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl (771.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

duper_python-0.4.3-cp312-cp312-win_amd64.whl (569.7 kB view details)

Uploaded CPython 3.12Windows x86-64

duper_python-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl (988.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

duper_python-0.4.3-cp312-cp312-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

duper_python-0.4.3-cp312-cp312-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

duper_python-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl (926.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

duper_python-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

duper_python-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (782.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (743.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

duper_python-0.4.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (823.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

duper_python-0.4.3-cp312-cp312-macosx_11_0_arm64.whl (764.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

duper_python-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl (771.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

duper_python-0.4.3-cp311-cp311-win_amd64.whl (568.4 kB view details)

Uploaded CPython 3.11Windows x86-64

duper_python-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl (986.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

duper_python-0.4.3-cp311-cp311-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

duper_python-0.4.3-cp311-cp311-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

duper_python-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl (925.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

duper_python-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

duper_python-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (785.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

duper_python-0.4.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (827.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

duper_python-0.4.3-cp311-cp311-macosx_11_0_arm64.whl (768.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

duper_python-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl (774.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

duper_python-0.4.3-cp310-cp310-win_amd64.whl (568.3 kB view details)

Uploaded CPython 3.10Windows x86-64

duper_python-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl (986.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

duper_python-0.4.3-cp310-cp310-musllinux_1_2_i686.whl (1.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

duper_python-0.4.3-cp310-cp310-musllinux_1_2_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

duper_python-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl (925.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

duper_python-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (774.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

duper_python-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (785.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

duper_python-0.4.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (827.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for duper_python-0.4.3.tar.gz
Algorithm Hash digest
SHA256 bab7c9ff461c90be95c7fbb10e86878b08252b97d215869fbb1505acd4722220
MD5 97bf7858b61df0d2aa2af441792fd80c
BLAKE2b-256 08721179753e1aef5f7a46da840f0552d9c863103ae97b9e9901f2efc14f48ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 903b363f6bda0cbd57bf8634d693096becd45edc21d6e3ba6c1a6eb7a92731bf
MD5 e00ffe218a6b800e09de701a6a688ffc
BLAKE2b-256 af110c99a79ed8fdc411f7b75f0dcc8be60d387eb26a8687073dc7fa82fae357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aaec75f1184e89d6d2bbb20af5563f6d7afc966894f954e93d20033b79f61d17
MD5 8032e7327f30c9ad86bd11422906e9e7
BLAKE2b-256 9cc241ce942d35e64ca03a763d73aa3a2a794025ebe1ebaa0fdfd8b2c52c3813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d9728019b5b1fa8793659f8ce7b7d72851c6533e8543ed07064fd1e4528d94b4
MD5 7bb15a3d9ddd9189c6aa5a08005ce845
BLAKE2b-256 82263550dfb51325df64bab6c0fc851a66e8dc5fa218140874c6a6004040436e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 975b8be72adc8b869ae2f1672cf1893720ed5dd11af84fac93cc29d24c441e79
MD5 508b5bf1fa43f3efb124bc87887e5de2
BLAKE2b-256 4ca5d33c355f1b088c16c4f020161ef2ddb824cfc8cab14f275f93f48c81e41a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4ab645c07d59dce743a0d973f390a827b431f941c7e8a7f23af73de61968126
MD5 ff66fab5a567a8339715294055933857
BLAKE2b-256 a3306b4c85f2c2e27af702c2ebcd3406c4b54b457ff2aa255e5869a24f765689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4573e7c403420f7e529a222c760d7d98479dd57597dff9a076f77856200c557
MD5 baf90542b09f616dcc1567cf9942b71d
BLAKE2b-256 d85ddc4eeb801cc4944ca1b2f6a2ffe6bc3dc8d3e9f2abb2c59ebff83c32cfae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b680e24dbc11aed0fcdba81bd32f37886f5e355c528f84636ef1e5b03cfec768
MD5 b3082f093c0f99eed73cab043e15ee10
BLAKE2b-256 ebbd8d733bc961849f6484a8cfcc7612bdda519e16bfd87789f10b5899454124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 46af8499a952a6466c604577ae127394d53fe6011feb706a9544eb5117c68e4e
MD5 9a2ccd470b39e558d3cc15a20844ae87
BLAKE2b-256 e3e03be47c3fa257874785f9a2fdca9e4a6db2b2ce9535acd72d4afc0e2f23f2

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ab207c9fcc020af475044716d31684bab89370bffedb20df8f21fcd8bb50d17
MD5 97047a6439b8b89af576c04490d3bcc6
BLAKE2b-256 e7f212b43918c5a3dd085c4a3dd04d181529f822d96538a68761785b9b1d8385

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 db009af7b87fc47b148b876f3a2861eb2e38a9f992ad9fa01a800f682f1dd23d
MD5 0169d11645b8b7cf4b8fd8dfb8a1b3e0
BLAKE2b-256 71b1e287495da52b88640ebf26abb6131918f4c6790e42c1735a2f85027f20b6

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2f4afc43a9bcf3d73ba0b6f11b71a7710676997e1f3923cd978ceb92fd2f975a
MD5 89efd7cae488a3121a9c9c89191d6839
BLAKE2b-256 fa3341db0bdbb17fa1008c680450abd2b19dcdd40acbd5180cca8478cf3b163b

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 60904dc416e1e398ebf11b0a7e7beabc0421787237bb3fa27495755d8c473da6
MD5 b831705212eda9fde9896ed9bbe70bd9
BLAKE2b-256 3fa4ef3c54707295f25e69d6853164b3df886f974ef36b9649dd11942afafdb7

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01c44e14a18ca90b8945c6b8b7bc4416083928cc9685e679184b86fd527ad526
MD5 3c96c62bac911e671bcff640d2e1a45f
BLAKE2b-256 7c4fe65327f313a365a3bf244131427087963cf28dcc97f5e840650f4f9aa223

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76827729915fb8a7717a4d21cdc59bf97bfbc8d8354906de94df9985d8f4a8c9
MD5 902c3f26e72ae4b92683efa9f1d0303c
BLAKE2b-256 853d702959d665776c3df11fdf4fa865b649b2ea82c35aff97d35442c9b81abd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 72021021b1db551031a9c5dbf28ab894e7221633f54b1354cca0ce350e68bce3
MD5 4a838128da6f29f126e81608d1e85e9b
BLAKE2b-256 17b1e895c22771d1d7d9f8cc2b9304a115d198aff8a88c9f7e49cfcdb77876f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 79bc0a3564b650256f3e184af6b0b990c6f6d0a1e0be2f671f96caebd9735628
MD5 9bf0332ccab85096500969e4eae676a8
BLAKE2b-256 8fe35898b3fecec0efe4c1ada5ed6de2361a8dba77e11fe520b0b0741a65fae5

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09bc695bc114d8d946fd9f0730f5629b74f3710338da49739deea02895a71da3
MD5 200fc964f46f0cb1df1472e6d09813b3
BLAKE2b-256 81d72081a255531f378a991fbd2f69ecace1eedd2f3087387f934fc3802bf2d2

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 40caaf6f63b3ccfefcfedb286ea1cd2d42515c96b088aab9e354fda8d3b76e32
MD5 737324097d6afbf45fde5f286c97383e
BLAKE2b-256 9e80d4410b5cd1ec87ee691e588f2bf125f5a9fccf2c8a59a4f90705cd16587f

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 370bb66771e96554ce9d7de67d0473dda539c2a6b7e85c54d893f85c8f626725
MD5 76f3a5872f8eaaced37d20f91124c726
BLAKE2b-256 d5409f0a2d520aeec235eb878a49e64d9991a8688e1aa9b747bd7d93e8402749

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9a20a2c6316231cd34c847f7f379858173eac8bd669ac033014c800d48b9ab47
MD5 c9c642cd7f018345ee97f4ef1ec747be
BLAKE2b-256 24924ea7032feeaca8749c9d3209efa99eef6266ef696169261654acd0deae66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 acb5bfcb08413a2e2193ac39fd4a58fc3389ef7769f83658d42a6b28b8e2e5eb
MD5 70dd2a0a6f18618c38e0d908ad875aa2
BLAKE2b-256 7cde1ec63f7d9085192fab0273e535b8f8f28a9f9e01853bc150cbd23fe86956

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6b206dc28a2619012d215654e8fa88c700ca7e00bb46f5a576edf945e531b49c
MD5 94e1d9cfa7e03a772046b5657214bcb5
BLAKE2b-256 041619b43bc4c603db32d49508f1a96afbb550e087b59b28ce45f451ac79a591

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 350ae7fb1c93824511ed246e9ade6dd1105c0efee0da2fcc8c6a9de180f1f09f
MD5 05bd2e530d2f56e4850f919dc314dac5
BLAKE2b-256 48bbe47be043dc292fb2018d4bff658ce4e49c92378bc943ae49fff80356ac7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 df5241d7ed74891995075b2f9cf0eb572e94b58bf1ebe9fddb86c0828f159b13
MD5 eb79982a1f87d0e0895cabcb3b261a83
BLAKE2b-256 310fbbfc6fe0983ec9a7c9ab1d6f1119567ad8f539197a7a186642ecefc090d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58a6d790017bda376cecb6dbcd02d0e6a80b049deaa241e248b47b2be673aa1f
MD5 7497d344f088741eea770abca862c597
BLAKE2b-256 eefba2a206b6c5903bbc2a5faf340737238bbfe5a05c0ac44cc6e9904035f577

See more details on using hashes here.

File details

Details for the file duper_python-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for duper_python-0.4.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86bc7a1088c0d3ea3129c11349f91b215c95dcb8c03c9257346ca14a4eb0d041
MD5 c6b54aa608e31d1c216443f9b8926db0
BLAKE2b-256 3481c9560f7d46ee9ee7894412a74b899c4c2b89eff85d9da0cdde0775009fc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 08a92cf9c493f62fc07137d7d0e6ec9d8f3a38980acc1dd09bc904c4342cd50b
MD5 08c8c81d7580ed499a9a7c79047fa952
BLAKE2b-256 065823947e9e7a73b46467b85939ce6659edc719a93102616b05dbff229acaee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 41af45b73a5402d5bc575cb1d788be7db1cf58e37b555a6aaa2b6803c4d881b6
MD5 b1739404c1c65654cba58fda3662841c
BLAKE2b-256 97a8ee6a75889f6f6d797c7aef1c13d6310e3156554bbaf4fb8e139df503309e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5f15b06aa6b5de632f590051be705498ac73edc1c3597f755e44d4dcce1704fc
MD5 21c047725c70037d5ab6335f27459fef
BLAKE2b-256 eba62d17a3d7c2d04f8675c416d611f24aa4b68a065d837c1a219829b06dfb0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ac49336b86174886bab4c206b402b35edcc62ed90e147e1d189cdaf991a34b3d
MD5 59bca585aa512d7a527c9bd621aaec62
BLAKE2b-256 755c618edc9dfb272ab01c2d6b7a896ec1ca765589ff3d7188b830e7fb1bbee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cc4f8b58a0724c52437f85907bce1a254e238ea57c75aed9ff9406845ec9a248
MD5 9d4a425869b5ed45c560158febfc9849
BLAKE2b-256 c2847c613b1a4c6d8d054e9284790e0bc3492c756222f8d1e81410ed144fe3ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a78f9f87b1efc2abf6b1dc7deb030d6bb078a2870511d4f964c951c16330fcff
MD5 0d12895b7b3f0fb48841a0fd97d64714
BLAKE2b-256 113dca8ac12a4e3ead5c0d1f3c9d25a6b728b741fd9e663bc7fee0403a77ddfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3965c40b4a95e2b8963c1866757bdc4f098c9d5a51abcb5fa3866a8e11fb80e5
MD5 92d8bae7cb5cce37eade901b3809fe9b
BLAKE2b-256 7edc0f33e70bdce0f831c3b7a695c58e6ff378d2568bf11e27275603b4d33068

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2e8a65c67f330a78151771a272cef58b55def1dd23b41baea4c5d0b97a9c199b
MD5 23111b7d5c6e734c29e90e9345669d31
BLAKE2b-256 6dc168b74389bc5035ecb030cb8d136a0eff65ecb8189639a23b9959fc7953d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 355be5fa565c213919808fc65911b704e6f5e80d1c88756ffbab9f234f99a399
MD5 4ea7c1f7ab304a5ac72aec31316044cd
BLAKE2b-256 066ebef67a46d3fadc9ac16591e6f6967478385b05ed91487a8347b69e828b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f78c663f117212763336b64d788eb546ca053204fc8a891b35438bf8f9496f9e
MD5 0d4f1d432baae38ea4cfa4f60d1271bf
BLAKE2b-256 a22bff688ab6d10d02faa6058fe0b68821a7f44b7a1dac76a72999844133247c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 794fe012e6c2b5c2da54e2ad1b6b9cfdafde7873842d57c19cedb2d3754e221a
MD5 ffab066897ef4cd56d917cfbd241bacf
BLAKE2b-256 43f3c138ae5b9043af2ba972854a79f82101a3f5cc4538593f0ee027a7c37128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b9b2114b0c5963044a4168a6201d08662851d7f932dfe1675d34428080bd3cf
MD5 60e9b85ab1639bd50e9353ef4d142f87
BLAKE2b-256 e92a99e7b03ed2c53c2ba51e675193943e62191c04880cb5aaeb770e11b6b8e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d10dedcb75d598a7e05688eef249ba1c2166925d523085b6c03688d837aadab0
MD5 0d639c13ebead798ec014a078608812d
BLAKE2b-256 22c37576f030e8d8d9e92605d284f7e00c1dc5ca0fb4b125e94100f0ce1e8e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e91548d8fc3e838db086402c18047c993af85a9dd8a11c7c504de64f5fe0b2fe
MD5 ed572d82d240f9d07563876116e6ef4f
BLAKE2b-256 b7e87731b0457b47a41ff82cbb624740545c8bd538002b933bf5be137df3cbdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 595517e65c50a0dd9d1dcfaf28b5e80594c5cd22ae2d753156778fa760320ed4
MD5 a94b42b68c1c847546e0de035af8616a
BLAKE2b-256 b30f03e1116fafca04174d3d3e008cccab32a92448cf2ed97a510ddff44783be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c706e700e04d2f29456f550ed9e5926f3fc6ce9e2a2cefdb3214c07f0544334
MD5 bb2388a9595e348c6cdfddec1c674794
BLAKE2b-256 ec7b8d74acebaca6bc91cccd48e8d8d10188da4b2e25037ad41a20c1a8450602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 789ab04f07dd8ea17d1332ab68356918a56b2ec8bda1c9e635f4c7b577ff5fa8
MD5 6461a95fd9afcaf8ff0ed030dc6ed2ff
BLAKE2b-256 a3219852c425e7da7224358ebb52d18b662a4ca59dc54c1da3ef2e24ceac814c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 70cef475792075881287280d6a09cde09d0c12a4c830aa2060a5ba564b4965e8
MD5 5ec0985440dbbbdea618af5199bbfc45
BLAKE2b-256 ee81c94766f862a1d06c3b653d9f696280c1d3884f310b45acb59e3f022287c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13ab4d3cdbb65b2745c31c8c8c93145693c77da1b3603b989b758dfccb0e0447
MD5 ebf3f49ff7ea602452d7992d355bcf72
BLAKE2b-256 89bf46b7ff3c134740e41b08149a18c406ddc70993660e160efd68f6a05e27e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20afd2ec77fc2b7314959161195568e721348ae4abdc18a2c30be8688da46597
MD5 37bda25237a84a431d63b7e80303c7e2
BLAKE2b-256 eb7bc95e080812d2faf0bd6385dc29729f8cbf40e1a8235cc8d88db384657d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5e65866e38be64fbc9536e49d6897ca4d037e7d4dd54d84ca3960af2796256e9
MD5 06606a958d69eb3b319abb808acac29e
BLAKE2b-256 1ffcc5b6aabd4f9a47a9953ca338f5975a508a06b36ea047cee7697a79c4b20e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9e66976ead0fe6cf2f23ed9bf0c71bc261a959fc30e3af50131813c86424b23
MD5 db7a85769415004b1223f349126f07b7
BLAKE2b-256 2c1c061db122b30bc791c38a116ec23e6876cb99a18b1cc3af333aaa6d015aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ce038321c7d2dcec8cb109e56514a0c99c4001e7b7b56561b185712c5ee2219
MD5 928b50169498ac2a326e912936bab48c
BLAKE2b-256 1819dbf2bb7103df56f969be084633d6b3ac3cc728105aa304359a714b96f20b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6ecfa6ef76bd96d4e3c2e9995cfda7deffcbf2c331c5924f019c8c808ca45b9
MD5 b04110dc8c8cd993a7c35adc72ba022f
BLAKE2b-256 b2f6f64bba3b752bfe59895bad71aae7893b223ed7920411d8eb8ff933e3b549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b25e5c8203a983fb0fe2484f9195c8acb9a47141c828ea2102624fff9f88a70a
MD5 4bd0361990cc7baeb94100249ede52f8
BLAKE2b-256 7dce4bf5d2fcc4b5761de89a3025555c3cbd03603ecfdf063f740f0065a44740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a174e7637873dae665b9122f9036f04e27da6eb8f7d40bc855347cff19fd194
MD5 67c0fa2ef4065e2ccb3d0913ce484e37
BLAKE2b-256 24d1182053c7cb0de7c7b7ac0122f6e28913de46654b38d80f3921f116910dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa41b8042735f7fe4eee0b58806f401dec4bcdcea0ef6e46034a69be5c950bc1
MD5 571c8c4b08be6bdacf32cbc5c920804a
BLAKE2b-256 790021921525242d78e067b126e6509840a3312b26bf5d004ca06ba20792bc54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd955ba89e4d930adcfb6aa2cae05ea843814da449f260518058823661c521fc
MD5 c49826da08b3720eade7ff667485992a
BLAKE2b-256 071c75aa08b6b0df8e0c6d775cb64c47730166f381d1cd22fb760f637a38516e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8013e7a983c63d634941b6a142513faf830719f21ca3cb1411e655565618d28d
MD5 c8ced5a420e5f31b0a24ce3b874cf549
BLAKE2b-256 eb51893a9812b41f2040c316042751394224fb4a625a7cd529b0b1d38cf8528c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d12a9cc9bf6e739839589194ff4f761e0449c4ba2d4fe0fe10ea884929b93922
MD5 20805907b7a3f4db269c9822f7ed57cb
BLAKE2b-256 7d9304346642f15eab220cb2455aeef5162c8604b9e37f507028dc33dc80ec6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 65c47f677f7cb07430ff39114891741ad2a57813991d47ac60c3234db0f3d367
MD5 94a6908d2095c8a43b9201556480a46d
BLAKE2b-256 5961b54ef2a98631ff63659ad947448af4a2c79170507b9160768863e6d5be5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 73b0e53c131d62e6f275a97851aa2b4e9cab2ef12cdbe77705208a40f37d8fc8
MD5 4b3e8226e75424c5f92369291dc69782
BLAKE2b-256 7c26c9f7f079b0381ea49fc53cecda20602ce5c52aad01b0ab6ef41f205e7a24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3adb2203fe39ae7c14010d4d5b5e0a9bc9ed5122784cb7b9916297bde3487fe2
MD5 3afc92dc7b7093cca0e30f2ed11b30fa
BLAKE2b-256 39951975ceb95257887ee2066b26d5b959f906b1ff8c0ecd37c5fea200f5e047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e20ac4ceb848e212879171a6f9006f7bca20b4ababe961f1bdc611195d1f9029
MD5 4634849a92f700c82371cc9ebaa93d37
BLAKE2b-256 4b6f179b78ec0ef8369ecff86ec8a4b69c4be388cd9d1441f72c1866b1eb2807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c8c7c0f62db46bed2cd50f2cb4f61cc46ea1a9e1c11ba4e09e379ae5505711ba
MD5 ac1d73ed51e509ad26ad45d66038a5e9
BLAKE2b-256 ba9f128948a8d5f5b9df18be6311cdbf93d5258cdd246aa633cdf066bb2c1ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b4d45ff50287ce6940029c19eecda53cbcaa6c94d9180c9417a7f9b5523af1c
MD5 1bcd2f23d39fa88f7ffa44832be65f7c
BLAKE2b-256 a9b1571ceb82d551be0378dcda18b78d57bbe5171f2a04d241ca81dfd64a8913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 45a96accf4a2696df621724a294a4483bfc04d21f6bd6f453d844b6719173518
MD5 ed01b30c4a3ed1da40e5c31d7c21de0d
BLAKE2b-256 2c8463519d1a31280dafcdadafe0eb4d2ea3475f4039594691205cba74b35205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73df829356f129ed28f8ba7b3ac35337f1815a20ae6bd26ef6ee3a2cc431bf61
MD5 877b5680e78d23e269619acb81cc1b82
BLAKE2b-256 bd8e4775f37066357febe0a6d9990acead9cebb48ab0e4de5b6f4eb5b6023938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6bd9502b2f52bc1622448dd306cfab4f2fc175ffedcddf7ca4268821cd74ee10
MD5 8428aaede364f8882a56c948641abba4
BLAKE2b-256 604d0ba48e2601c6c985f9b429b20bb156a4eb04758996fb5358142275fb3c1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 503388b6660c0a8ce03c9d098a500ad58a591ed597a44bc01b803514e27ad413
MD5 61a3cbd74a4ea8c9745df07fe550501f
BLAKE2b-256 ee4604eba8208a07ba4b65eabcc7659b279aef0cb4742b3135801555ab78c38c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 94c6f96968f9268e95febb5729d5e4879d712126cba91cb53a1165b5381c6198
MD5 e42fba6461dd562bf9acd044b27e1ca7
BLAKE2b-256 7a333c8bde6dc2aa159857bcc3e4edd2a974d4145b577f4f9ff50cd4100e53f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c74aa4b168b58d617e11ba4ffd52f5bc6ff7b08e98676b15f08319fc53ced06d
MD5 6340ecaf5ebe308264fc9c28ac33925f
BLAKE2b-256 676e7070cb9dd4ba1fce96444b590967ae13054610021c3c90bb764218863fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5635da1dc69f228326adda7b79385c5ecffa7fa265aee7f15c015e19dbbddf82
MD5 757a5e426675238a72d86e96ba4f52d5
BLAKE2b-256 884a2f6e897b7b3a1c24555a027f607e2d5f377cee255dec167ba06efefd344d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8392cc089def21476f77909650dc89ce2f7528fe6cfb86cebf9582f96645c89f
MD5 1a461323de4992852f3f2447060378ec
BLAKE2b-256 10bfed51510e5d2037b81bdf060bab8c0d02f4ff90029779fb6563177948afda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4fd7f7d0902b1e7e265d052c6e07bb3e406a66e016e527b0f265d76f2bff1cc
MD5 35dacf0563ec89052faf79bc4851dea9
BLAKE2b-256 3bb2b4b0b37fa222dc546ae3d4a6168f4157ad1b474e4b8520e9bba949290f05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17e1df3a70d54f1729b813b5798b7a5a1411e08966098fb4ed0a7d085bde708c
MD5 40c47c0702c8589a096fff5be57c8f1e
BLAKE2b-256 fae20eb9c58cd9808806f0ed3eeb4da75def94321f628c3d18f8cb28ee7e5f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3a8c4a1b36de4c49f3cf8c2d673b3f4616e52f0dae6daace808355d34ec1db6b
MD5 40d89e86a074ee9d5423af7e9655dcb1
BLAKE2b-256 d43e6a9909a4dab3c4b3b2206ce585be5b824eabda2287752865fed3a0410fde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c403ee822b71cf2d77a604610c58e126a128e3a8415a1ef3842853db8bed802e
MD5 bbe385c11026eaf256fec14b1bce837b
BLAKE2b-256 761b4a5840c6f7256f84686854b4ab5322e102d66385c209cce826b1b7dc88fc

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