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

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

duper_python-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (930.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

duper_python-0.4.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

duper_python-0.4.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (797.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

duper_python-0.4.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (836.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

duper_python-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl (950.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

duper_python-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl (989.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

duper_python-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl (924.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

duper_python-0.4.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (786.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

duper_python-0.4.2-cp314-cp314-win_amd64.whl (571.6 kB view details)

Uploaded CPython 3.14Windows x86-64

duper_python-0.4.2-cp314-cp314-win32.whl (544.6 kB view details)

Uploaded CPython 3.14Windows x86

duper_python-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl (954.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

duper_python-0.4.2-cp314-cp314-musllinux_1_2_i686.whl (993.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

duper_python-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl (930.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

duper_python-0.4.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (777.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

duper_python-0.4.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (792.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

duper_python-0.4.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (830.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

duper_python-0.4.2-cp314-cp314-macosx_11_0_arm64.whl (766.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

duper_python-0.4.2-cp314-cp314-macosx_10_12_x86_64.whl (774.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

duper_python-0.4.2-cp313-cp313t-musllinux_1_2_x86_64.whl (950.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

duper_python-0.4.2-cp313-cp313t-musllinux_1_2_i686.whl (988.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

duper_python-0.4.2-cp313-cp313t-musllinux_1_2_aarch64.whl (924.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

duper_python-0.4.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (786.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (742.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

duper_python-0.4.2-cp313-cp313-win_amd64.whl (571.9 kB view details)

Uploaded CPython 3.13Windows x86-64

duper_python-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl (955.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

duper_python-0.4.2-cp313-cp313-musllinux_1_2_i686.whl (993.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

duper_python-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl (930.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

duper_python-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

duper_python-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (792.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

duper_python-0.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (830.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

duper_python-0.4.2-cp313-cp313-macosx_11_0_arm64.whl (766.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

duper_python-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl (775.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

duper_python-0.4.2-cp312-cp312-win_amd64.whl (572.1 kB view details)

Uploaded CPython 3.12Windows x86-64

duper_python-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl (955.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

duper_python-0.4.2-cp312-cp312-musllinux_1_2_i686.whl (993.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

duper_python-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl (930.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

duper_python-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (778.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

duper_python-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (792.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (749.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

duper_python-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (831.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

duper_python-0.4.2-cp312-cp312-macosx_11_0_arm64.whl (766.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

duper_python-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl (775.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

duper_python-0.4.2-cp311-cp311-win_amd64.whl (570.5 kB view details)

Uploaded CPython 3.11Windows x86-64

duper_python-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl (953.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

duper_python-0.4.2-cp311-cp311-musllinux_1_2_i686.whl (999.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

duper_python-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl (929.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

duper_python-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (777.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

duper_python-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (795.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

duper_python-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (835.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

duper_python-0.4.2-cp311-cp311-macosx_11_0_arm64.whl (771.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

duper_python-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl (777.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

duper_python-0.4.2-cp310-cp310-win_amd64.whl (570.3 kB view details)

Uploaded CPython 3.10Windows x86-64

duper_python-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl (952.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

duper_python-0.4.2-cp310-cp310-musllinux_1_2_i686.whl (998.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

duper_python-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl (929.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

duper_python-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (776.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

duper_python-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (795.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (748.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

duper_python-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (834.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for duper_python-0.4.2.tar.gz
Algorithm Hash digest
SHA256 97459814ce09384fa25ff666620017e617d8388a0f057ab47adc49cfeef37f80
MD5 e17c826ec4f6c731f793b73cb01d4fdd
BLAKE2b-256 d0ee2d00a3dcf3ecc3b9e472b41abbe24d9001f952887066cf15e5829cd6f0c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f56dcc8aeb5d9e6c388dcba0ebc0416a8aa6543d9fddd0e89b6bece8f4aa09be
MD5 3fe403f21ff8398b6e96c7485727b2f6
BLAKE2b-256 5b9a55ce8486c272daa243834eadbdf41c01bf01716aa767092964203664afd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 da452f8d157918bd0e152e738e13194ed496d1f41c2e9e52de7f45684614a018
MD5 74c30de16f1ffb044572072ab92d0c72
BLAKE2b-256 22ff3e17446fd53b8e639d7486d627ba68fddbee602b4cbe260591a33434a851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1918a3f127f85768dffcc9e6e81f4ce948c6e3c5856c34df74557c030b1c68aa
MD5 7e12c9bff430e5194c51e0d39ee00d38
BLAKE2b-256 0bf0b18914593cde677902870c146858e35dc8953ea0ac36d2d40d31f0cba210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5cba55e19f42fcea02f25f146aca7ede2a68fe7d79a85c5082b9b7e10f30ceb0
MD5 16b4481f4959768134f65fa374e2b7da
BLAKE2b-256 f4c4c27295605871122f88a0a0f779fade7ac5a1d13f15bec5ee2d3f2a14fc63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2b5fc324b8801fa1db475bfcdb532a2ad5cff3d914735f2d6d34593a3d73315
MD5 60d001ad7e0409475aba60d151efe483
BLAKE2b-256 b350e85247a55bb1d76ea1608a4ee3e13d87719b31b6026e82ea23e80f9a13d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1bae7a67098c20030ac2d36df8fdfda0bc54b3a29eadd67751b3d34c70659875
MD5 46c553f41dcf66c703c745605b1c653e
BLAKE2b-256 14d64e4889e4a2dd5ad4e3ddcbd3cde13026b644f1fdd6ba67f3b507c3662343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f19b38afd2d2122cf5b4c10594b71b36f7ff0af82472635e38ba764193fcd034
MD5 672c54d9724eb4ca9ea1fe6e79526d85
BLAKE2b-256 bad4412d4cb0fad9c55eea5418326b5710c5f0eb3498ed0567dcc35c1257c627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d34e06954a3d2d052da7e213c655c767a964f64cee60a547107aaac3f646d28
MD5 1c7b6df796d0cdddf040a14f96333b7d
BLAKE2b-256 3cf56e9937f05302acb35cc786ae62eec32fbdbf48bfed9d97fbca3965beb715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3329895bf6f2ad6a577c0111b5e78fb86bee3ed67c14c81ef8474eabd1a6bcf9
MD5 8167edfd5c4fb51124d228fcaa412758
BLAKE2b-256 2de6b1207cdee63beccd2205300e15dad6e9c277bc0062cc0335d04bb3592de6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 567d753cff151c592fc4b59bdad8947abb243440746fdeff49460cbafc56d236
MD5 55e0d272f03310bf25c07bdd1c09e144
BLAKE2b-256 4aa4359ed516d089a5dfa4424e86f7c93d49f2c3fbfb38740a934a76d0e715d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6a68cc62ccb689c50986f7933f042bf0f1cc91894a35693f68703fd5cd0ae169
MD5 680627162b9c0387ee871ed725b97a6d
BLAKE2b-256 09a223eb50d1de9dc1ef21d86a50b7590ab3aed242d5cdb01d71be96dc52c27f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 815753aafbd3f3e6ae307b2b7cfa101228bdace50a885c771720c42d1d6a1964
MD5 5a9f95125e29e45abb2800ebd261d86e
BLAKE2b-256 eff8b097eec438f6b99f8786d2eb7f385e664424887001abb52d2ad312379077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3af6013e19f3431ae6d042c230c8c88f2843a0bc75e8d91b842f6355e963f338
MD5 8e345fee5fd9aba7bb8dbf88a330f58b
BLAKE2b-256 4db2d9f2d1669775d647bcc37c54aa3db0a06a581d869929a49f2a4c4c0a5d27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72ba5c92c7ca15868b635acdcbf7e8d8fc4346f8e6ae24762ab1dd347a60ae1c
MD5 de8cb7fa04f2768e8b53f836d3bc0882
BLAKE2b-256 a13b3c1df312b25ce4fed1e0d5f4ecdafe4e489cae0577456a10ce01d530d25f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ac6c9bcc4429977dbf2a2ebfbd3fdc6922042d5aa8cf6ed062ba9d5e0e018071
MD5 e8a608ff541c6bf34f3e95bec68e1f45
BLAKE2b-256 89ac277de9ed15654aa81106fe9ba0be37114362051529b9a28897b5b24374fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 88bb7fa44a7caf34df7f6e06688eea2268ce4866aed2b9263ffff0a1b47999de
MD5 c76f20e382734e1fca37ad8d01c81034
BLAKE2b-256 d91d071603a387e5b37b904a84075e02ebc433954bbffc40f2244ef0217c3c86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0e286617d036e2c8705ad35cda5fe53570e37cfa1baea0f1ad2302cba7eff18
MD5 4a0647e60781dfe2ffa277b25b5d7363
BLAKE2b-256 08864f49d15259728937906c82b3ca6d2f83628bf6c851cacfe66a74ffb84e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd21fa969cfffe9a0052d9f9c7ffb3442e653a6583e96d6608bd77220306a210
MD5 d3c56a7bc1ec89e46284b7d949d59bd9
BLAKE2b-256 be7cc10bd0d13af1040cd5c971417803a40d85615631a62387cba526f34febb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 42400f0c4aa50a63bd56cbdcb98319573297128b257e8aa54b314b5cab6e7130
MD5 d166027d2ec784439679c579fd0ddf8c
BLAKE2b-256 45ef7df9396b0c6ac38320917180b31d2b8f1f37b847754b3415b0a75874f23e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 31060c0051f907cb72640288877e2a3983e2fcf3bffe3dac35a7ebf148d00b57
MD5 d84d28d5fec202d99c511c38b5eff9d4
BLAKE2b-256 6565f631e873e30a95c55d2f8ad4d6eeabcb73e1f3bdd234986ba1c418d3d2cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90fc430af5e828a0683ceaf30b88064a4f5eddd18dbbc07882ae94dfbbedb8e6
MD5 20ba05c5749c8873cf4e8f1e9d94176c
BLAKE2b-256 327b424163ecebf28749d4c18fa1215884f71e665674eba39e310c2d470c0517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb5b303700544f94cda9e53ad6263d47791037757870d87ebbeccaae4d14ea5e
MD5 45a072b73f8dd24c54647b8511298b97
BLAKE2b-256 db273404ab897138071fa40c6314e67fd1cbe0bb5bd827bd53661e7f736ed58b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce9df14097e0fbb01527c2b0d4fc270a70040939d4623aba56096f8302522e44
MD5 f838c3c4936a1f4bdffd52126beb713f
BLAKE2b-256 76e8e876809674e9c8a2418ead8d6d116be739907eabbacffb9dafbb2695905b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7a16d790c9dca5870a72b4110cc1fe53341d37f353786baf47074e96d47728c4
MD5 0f6976407c7a7eefcbce9fc3369ed491
BLAKE2b-256 f8b12956f6bddcfa1d9241d93d769c76637402c35fe32270d699d2a07f5f243f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16eeacb2739136b8f6ae36925bcc38dc5b0f17588a1d256b2f01e2b0cf22865c
MD5 6460e31573db8454f6781155542ce57c
BLAKE2b-256 bb75ee6233777b71c01b1cd6a50dd390e794ef651ca4eee5d7ba47f6a69a76dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b4201ede4e43e5a69b6b6cc9952be844578b60ae953b7a674d862ad6fd6057b1
MD5 a16cac5aac2261aa9bb0dd367fedbe7c
BLAKE2b-256 0b13473e9b090679c269a2316c82608382f2591235442fa082fada921150ffc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d301cd3c8a70eac8ac4a04e6ae6f0d8fd3076fc2e706cbb85ca12360695418d7
MD5 580c6300c77072ad9be353b1c0f63d93
BLAKE2b-256 55e07f17a962b0c26dc7d42471f55fc501d503f26423f4bf399e7638f47c0c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eed94a2337151e1c65e74bfee425ea06975430dfc243cd524e61b2dde3fb64ce
MD5 1a8e1ea2d3a050592f719be576acaf9d
BLAKE2b-256 885a6c1e8f4f083ebaeb0dc17cabacd95b4fa91f3ae27824d60e57b908a19055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 68d819114365241cf9716bcddbe3e5f2a1433610d0894759215af485a718f885
MD5 af6894bee44730b2c62a8d57483493f2
BLAKE2b-256 0afd45ca5a4a38d9daa88ca4364864bd1bd316ac28ff3b7cc6c244c0b2fa54dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3c6de095ab3d237692b3a166f799ce57fc98e674b82ec7d118e2154e213d737
MD5 2bfd73e29eeed25aa39cc534092092fc
BLAKE2b-256 b32da57db366512dd3854293df41d22b32993206362780ee9d686ae22d59abbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fda118b067359850f4be2f09043004ac580d1c69be0c52548f0c43ceeb590ff7
MD5 7927d43def35e622c383bd23c06fbef1
BLAKE2b-256 7fee50ab6334cd45802aea71b989517431dd64463bdef49470b989cba5df0881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2eeaf9c904b00281bab2790eb5932f751b635ef3ae16ad97e30117bcab50fe4a
MD5 207b149495e12dc2b45dbecfd8c2fa38
BLAKE2b-256 b9cf626bf4fe2af252c8f44d3dd42ee84013582dde17530056c98ead9647f709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 181e61ac44f2abb428c1e97a694a41df71029dc9e030964479367f1b0d9d0d01
MD5 6a8f38b68c61e97231f876c82ebcb59f
BLAKE2b-256 bf13d4d69616f4bf227c13d96bf9f815054233d4bc42b3ce83800b939325486e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ff2f22aa47073ee3f40defb3134b4316e9f34d29e561bc87dd8b7b4bc15f94d
MD5 a1d983d13ee746183697310d0ac1fc12
BLAKE2b-256 88005e03cb959c4023ad3748e6e08fb714a4f44a5be7e76c0df46ecb8a9c888d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b70cf98fae260ab77d8b4374d4027f5436990c2a8745eb3dd65d6c0e5a350de5
MD5 e324eed792da0be9720e3c5caaf80c03
BLAKE2b-256 c04ff656c494a06a72d4f29aa71edc33838fbe18e0b66baabb8ed4b1c3343881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a7cde284845af8969470729b6821e092870e8ed03a7ff0cadfd547e03305d9e2
MD5 7df6556625fa0401fab4f5bf6bffcfef
BLAKE2b-256 f07869cdfa62830f61348815ae91d7c92c64cee64e227f106b37a47468092500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 749f9712455bc238605d55fe5935a6b1b54a6121be4f63fc9f335988ff88e55a
MD5 61887f7a60229393eacad4095aad29d1
BLAKE2b-256 b655f991dcd6c4dfc2bf49ff6628a6873eeb657864250184be2c904f667df90e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b6bdb5d4bfbded44265c0db6d3bbc6a8df10a1b368780145003a5e46df282f2
MD5 5303a36967698457be30e2c1f77994bd
BLAKE2b-256 77f8dd1a6099133f6615ae305f7349350fe0ba7eed8a57e42481a68002d77374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e36c12419dc9ccd0d2d074ad1135bb4e699fee8fa9c6ac6b68d641099e432347
MD5 85e07510a7dc52d03e2250ce03452565
BLAKE2b-256 b10ab0d1485151adb4d2215dd64bf56aa5190650d7beeead93c92681d963532a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 52a7e6e969dc6865c7497e8a1a27a25081e6b0cfacc6b0704eb867d98c713a7a
MD5 2236dff8bceaf911b762fde3d3293971
BLAKE2b-256 48d448fbad74bbaeb2c798fd53546e3aeb7a29214711d24bdba91d96ab1bcbb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dafb252847ef7f0bc2ce751d6dfcee3a36a652ccc89c1d110006fad985ee532e
MD5 c7ff94763ee5fa7f6dbaf6df0f853816
BLAKE2b-256 b876844ab312a6c394193f7110ea05c7dc43574cfa60847ad4e5337f9e61b1b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9b66bfa193d2276f57be7cf6889db9053065341be2a7b301dd9289fe12f1c45
MD5 d9f4948eb2e642edf67621db725274c6
BLAKE2b-256 f57005ce405201cef61d3b9aaa9df13bfb40e68adf7f1fa429e4792ca26f8f2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0fef596ea39436d49809c22b154078f494c7b697cb484babe8c761d635dbdc48
MD5 bac787731c3cbd6fd6f6d26817ffda59
BLAKE2b-256 9c5bebf8f88846abe9c5b0163bad29c2039682ebdeba08470154852df2ca50e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a185ea7eddabcc8878f82cda96661a021cf4ad81c90d153a3e4ec3f86995b852
MD5 a81fa4bb0c6321c6aa9b50dfdc24133b
BLAKE2b-256 5c0a15a6b58d2e8d3b0f5a5edb842d55a816f67cc516acc086bc2b9d9162da87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6488c7eb07cedc099bd64587f037dfab2d679ccacf9cf98e5ca1dcf579a6b06b
MD5 4b46cc9cd4c077932467b15bc8f13527
BLAKE2b-256 109fb3a1714c814c38a3f4edf655f6bcb37fbdf0c611759c1023f01e2a0585be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b65432856902990a6e8fd1b877d90300add1fa62fa9a771181858ea0a98211dc
MD5 a9dd6ce999c66441620120f405be5217
BLAKE2b-256 28c53bcb93f462a8ce653faf32595ff7a8ae7e1f66774d7dfd07f50ac1361de0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 acfd1d35047d6cb0dd819415ec57fca78c5f130d55540af35cf7b583305a0007
MD5 23550c4144785c96c7c951caab249fd4
BLAKE2b-256 11e4cccb8d67c376625fc2bda78fd34817c24a6bd161b4b038f58baf043ca3da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b66147e72064fc0c0f368c96214828195383ddbaee691094e4b96733a7a9ed21
MD5 f52a6addd7e0054a0f44995708dc6306
BLAKE2b-256 bd8b93c5b8cb138d7f609919d6b2f45201331920010132cde5a82acf0d1ef861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e42ab37e482b9b761fb5f3a701fb40ea9a0c57ab9e421879f2395295f4b9dff8
MD5 1c90e9e2dc0db319cf7a31673e3585ed
BLAKE2b-256 fb01ecdf17fbac462f20af8bb3f14ef1e2769217f92c23f5923c8cf382291ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c2e63d4ee68502f4b710e35d99169d113ee65e13ffc2597aa804200fcebb294
MD5 4e4ce68cd9a7bb75b693a83d3074c38e
BLAKE2b-256 cc75ee847792485b90971e4d7d0f58e01e169f423f26df5a816a2127c94f230c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a89ff45dbaed9df5c6e3c370b21aff149e3a73408f0bc9214b64b4867512acb
MD5 b0c1919b16dacbf6ccd7b403b5ed142b
BLAKE2b-256 c98b653b6e2cb3f0bdf784a3e11c9f94c1db03bf791034421d9eac09bcb974b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a216ae166755b8c4e1ba8ca3979858cc0b05730b50569c03121c8ba068dd296
MD5 7ee748bb322cb5fb1497a1c4581a4d6e
BLAKE2b-256 f63fd17afce2d16bdf3e1c761c25a5f095951c2265ad0b484229ec069c2836eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1f65526123f57a5ff9976fadc727c11082e8b4463eeaebe331071c7f6f62c8d
MD5 1d6625230e5e3463f47b271fb18af392
BLAKE2b-256 422d3e4c142fa044f9e9811459eb548595c1fbec2d1920768d10d8cf37449b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eaa4451d6f51bf23305cb88f304d915f3ffa3d9366c61d86351fecfa38451964
MD5 2244ab0a87a00b285795849828ddadd0
BLAKE2b-256 87d687b1a9ae28edd1f7426de92b413cff9c7a0a5bd2bdfffa9c0d9db6b38511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 38680222248c1c862046b931d8686774ca61f39a1be522bea22d2341df0f778f
MD5 583f523d5a542d7677b8c795098a6e8c
BLAKE2b-256 0ffeeed9f2f65bff7fee4c1c033737166e08c1802f1802ce8fc881ad38c4c6ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 09f04d7471e4c66b6c561d55b902bb79ce30cba18c9ad4719aace580e5b78c45
MD5 e9a3a959c0501e4dddbd3b8b06b540c2
BLAKE2b-256 269a7b8e2366c78102d87e4631489c8dbd834d5fe02bc4ac58ddfd192f9dc248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d693d35dacc3821660994d3ec74c3d04a5d9961d8b7d5bccae7fb4dfc56e6f61
MD5 0b315ff40ad1b296a228b79cc7eb28cf
BLAKE2b-256 504de030038bfffc81d596b48dc07615b6a4062cecbfa6a0fd54f1bb43e17357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72153a49c89f1429e233205bf84640888916f01492554c37d11a66b1d2204a5b
MD5 7b81dae54aa9b0013a3399e33821c6da
BLAKE2b-256 9956c8087123f65a05755c2f9cd3a6ba2bed0603f527950806ca61afd9d75a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6d2df996137bee59330f612a2ce576f536e04bfff7af27f99d6033ffa1abc894
MD5 bb1a9e4eebfa6608d640d91136acc624
BLAKE2b-256 976653196a04fc990d350c6f9b430694d97abdc7a9862a117e6ceb4d0bbff883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 292bce4898fdce41c495585c80eaf3bd3ed25c05bbb556c3c5d62ba229f424a8
MD5 e6ffa10eedc2746aa7d77739bb71c9cf
BLAKE2b-256 0b2c729b7058ff5b62fe7817d01aeeb90bd34d14ca9695467832e7d58eb5d5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2bbc67d548b41ffb3183d80b7eb9e8362a0aa5846e4108218e23648fb6263504
MD5 578718ee9e489f1acf462e555814834c
BLAKE2b-256 4fefd1d2790e894ae70b14bab72c0c0812901b47f476cf9fe72dfbc62a3b8381

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 118f13345c4e4e356d115e1046077749c6010201f5060dcc6de7e2fc7207c39c
MD5 7dbb67c43a7843f4337759ba25e917ff
BLAKE2b-256 28d9a94a2f315b39bc41efb55bbd3184fc2ea49f5459cae634da6eac7ee64ff8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fa71f7b9758cbeaae6dcec1767f25d846e3e5759a33f2cb369cbda97219eff2
MD5 2bb555e96bb3081e69f06f771cf319ba
BLAKE2b-256 b8051c0b4f657ec63dcb849b4bb0c1774123d6fc98c6987aa770fc9274ae2b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c472649da0e56f19521da823676063c24bab5ccd70396914b525899c3c169e0a
MD5 459b2fa4bb16cccdc5cb11ee725d6c7d
BLAKE2b-256 8bdff7605670a4f46abf0552a6bd5a860b000e1f755c0b3ab304f917a7f30a30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f931bc41364224a7241c470284b163c9777f142ccad7f98ba21e10e05e80189
MD5 07d9d6517c9e053c914c9149c4916002
BLAKE2b-256 42a81340df63e8ab3fde8e80d66255a52138944092e26f649d2a7ca06feab756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8f69ce234191789eeb30c93b4483ae679d55fcc9845ed2856a348608b565cd6e
MD5 3c5230ce024d063d3ff256b87c0f866a
BLAKE2b-256 d8f363ef1c30a38d8863311c0131b7d6d5b0926f5aaeefc7cc4a0ba1302be5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 aaea02d5a1eb8ea4ac4b34ce67ba1d39bd4d52da9913b4c6e05c5974402384a3
MD5 8d1124c2f388b5366070dba6e2881d9b
BLAKE2b-256 89ad31250cd574f39a93fe426d67a9043ec3e480fcc7dcd3167e9a1f1b2b4cfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ef0d35f3cd7c888aac1d760dc368c1ea7d053d4f0484f3aefdbb2f407b14910a
MD5 97e583995fbbf5370a00642df18bd4cf
BLAKE2b-256 18ca7201ae9b3732949b4c4ee3ae50ed48c3a5ed839825ed3e9fb7789093b9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 304c212e668e8976a6a8ca289e187af2122f6e56ee95968f6ab74712c999c039
MD5 9cdc17e5e8cab1b572aa19b7dbaad2f4
BLAKE2b-256 21c6d4b56e73e3e0ac55ef1a41e3490e290555e0d67e30337a7c583bddcdd47d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae2d552c7a4ccc078ed7b459dc1921639966b6e9d1acd8f99e57403be0920086
MD5 f8c1b687e88cf091805c6449db641c15
BLAKE2b-256 9aca20454a0679685eaf1f4bb3cf2a1dc8f1b7b7406cd6b7587f4885e3f81d8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e67ea3b1c5b288a0bd83aace52aabe6a833cf2f51457fc1c6071ee54badb29a7
MD5 c16fcce13d855e17ea3ed9b3e6ceb4e7
BLAKE2b-256 43dacc96e861dbb5800314adb3a460ede2af6772614c848ebf7ec0df4282b009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a0c7c4a74e24342ebdadcddac7afee167d6ce98ab0ae997659d69b6393087dad
MD5 861c57c38d5b599ed023e3cef07a9f92
BLAKE2b-256 324a5dbd0a3d4470c507fdd61c0e9bf3c6e4992832b22ed5a292559cacb63ab2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 132ecc7eb82a3922659667a36e4032aba0a09de3ad885d465cea3ed362abd09a
MD5 adaf6edf48c4e5e25c5ea76c109e5019
BLAKE2b-256 463e73f44775df3cbc4b6843891b1e7d230e6c35fe384b08d7198172c3f5ab4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 98c295a4e033517c4ea8cd2ad134786844bfda4ffed82af651f9b1410561bcfa
MD5 d71ef46f79be55a6f61af6e7a34da240
BLAKE2b-256 de7d65b24ad4bece253d570983fd313a157ed3bdc56f594dece60ef228e11835

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