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.1.tar.gz (173.0 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.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (977.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

duper_python-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (947.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

duper_python-0.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (798.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

duper_python-0.4.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (814.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (765.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

duper_python-0.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (849.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

duper_python-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl (974.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

duper_python-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl (941.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

duper_python-0.4.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (804.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (761.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

duper_python-0.4.1-cp314-cp314-win_amd64.whl (575.0 kB view details)

Uploaded CPython 3.14Windows x86-64

duper_python-0.4.1-cp314-cp314-win32.whl (552.1 kB view details)

Uploaded CPython 3.14Windows x86

duper_python-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl (978.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

duper_python-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl (948.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

duper_python-0.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (799.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

duper_python-0.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (808.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (766.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

duper_python-0.4.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (844.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

duper_python-0.4.1-cp314-cp314-macosx_11_0_arm64.whl (788.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

duper_python-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl (799.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

duper_python-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl (974.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

duper_python-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl (941.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

duper_python-0.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (803.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (761.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

duper_python-0.4.1-cp313-cp313-win_amd64.whl (575.1 kB view details)

Uploaded CPython 3.13Windows x86-64

duper_python-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl (978.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

duper_python-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl (948.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

duper_python-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

duper_python-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (808.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (765.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

duper_python-0.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (844.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

duper_python-0.4.1-cp313-cp313-macosx_11_0_arm64.whl (788.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

duper_python-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl (801.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

duper_python-0.4.1-cp312-cp312-win_amd64.whl (575.4 kB view details)

Uploaded CPython 3.12Windows x86-64

duper_python-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl (979.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

duper_python-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl (949.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

duper_python-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (800.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

duper_python-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (809.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (766.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

duper_python-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (845.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

duper_python-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (788.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

duper_python-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl (801.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

duper_python-0.4.1-cp311-cp311-win_amd64.whl (574.0 kB view details)

Uploaded CPython 3.11Windows x86-64

duper_python-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl (977.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

duper_python-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl (947.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

duper_python-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (799.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

duper_python-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (813.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (765.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

duper_python-0.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (848.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

duper_python-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (790.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

duper_python-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl (803.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

duper_python-0.4.1-cp310-cp310-win_amd64.whl (573.8 kB view details)

Uploaded CPython 3.10Windows x86-64

duper_python-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl (977.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

duper_python-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl (947.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

duper_python-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (798.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

duper_python-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (813.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (765.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

duper_python-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (848.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for duper_python-0.4.1.tar.gz
Algorithm Hash digest
SHA256 547c0954e83575e1dc04dc8dc9d9c0c5793cadf08b365c65ecdf14fbf8acc1cc
MD5 aba938c656f6ca35608d9b1870d4cef2
BLAKE2b-256 244aa7baea2f4198cb5b573593966649e6a5953e2bba5d7f2db8b33377fdd6d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a444914b65f05e1c7c5781518cefb9bc273c1164c06ba1dd28820ba63cc7fa21
MD5 ccd1f4588299f4dc1bbc323dd1d693b6
BLAKE2b-256 3678062cd8f36bd956793a1d17a3366bda5ca7eb3c564b738d760c35e508793b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2339fa58e347b6249264d33353d4d14a418f281335160d99efa3738e81667062
MD5 92904ea0dc911b45ac96be2349313436
BLAKE2b-256 c4fcce868b5f998da50d2c7e48ab2bfdafce11e16b6d495dff887d903d2aba45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 794b1bf8644145d9c596b14390d683e4234b0ca1d0ae18ee28725655a6095214
MD5 d13a168016d21d444ae367db7216233f
BLAKE2b-256 06dbd9314b7d07ef21ddd5f6d53c89152b07fc59d57208296ecd7acb0614f4ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a8879def95cd15b52d2c7243dbce2946b6ab3a3174d6824d8fd60dea51be3275
MD5 eeaf675103922546c5b3155b6f3abd47
BLAKE2b-256 e37beb2e941cf0357cbbb0803c993a8f2950bd37bd68cc821713fd5ecea68b95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12b177e5d915762a81509c5c50fabd2fdcedfeb014ac86c94b8fa3daf3414be8
MD5 a6f705d0a740c09a83bbd4fa271560d9
BLAKE2b-256 7bfa7d6d35af2a481377e396708fedd8ddcb886f876a969743fe11c9c79e54b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 63c4041c55857473a2167e4ccb0570f7a4df28f774c81a31af2a8d6e8e182314
MD5 5d505facadad3a07544fe23af1bbc9a3
BLAKE2b-256 792ae209de273e66954ea893505a4956a24400d875f4e0c83a0c2b84fe02cbd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fcc5a60d879ab0f05fdc3e51071f2cae89436e132646b876a3d7ceb884029f1
MD5 ddb0f7d4178ad6b52bc41677d4ee56e1
BLAKE2b-256 a51b5e0830abdb7de26708f876502796ff612dfc95006929760e0b8f11e27a17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f8b69b860dd44ab54a9fce4e8d0303533dcf7d29b169890a9c15a36720bbc15
MD5 df115ca307df4574b7c32651ea7a7494
BLAKE2b-256 5727fd9fa1edc84989db7ebce42df891bc9c16a20bf59e589e41e1332863fb91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ab9ed5d93473185e36119aa8d9aade703ff5a6e0c3283f283267a76279d740f
MD5 46c9d32e6e9895cd7371572ec23ed309
BLAKE2b-256 fabbf4683fc87367833a45c0979a58b8fbb93f0b022a91a256d5b4617bda18ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eb4e806f129ae89d65467824af7da3a037699e6b2893daab5b9e84b020ac6f63
MD5 61c44c371482053303277b1e63e61bd6
BLAKE2b-256 843560e1b83e62374c5333136ab03d7a13278f11c78a1731a80ac6d0273440e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 38daad55d4a21ae47d026608336981636536b25ee4a4d04e24e27502cac8e648
MD5 73768edbe2a2b0d07b2ab9003590c88e
BLAKE2b-256 c0eeb39b844b72ba4dd0b2dd387cbe13b68e177c29cd3514d8c1e05565b64cf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 abf28f8c36d8cceb5f894e9784fb8dd9d32506759f35456d6bda9716b05a0094
MD5 850b09e994a5a8895c92edcf4f9d1989
BLAKE2b-256 699e7f27307a1c3ee059a8c008b29125050090dc6fdd6d25888a8978c2e649af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c1b009aebe2421c78bf0b8e3d837c322ee0526b19c43df0323620a9a6818fae
MD5 c570e223e98775aac77773e94829b10a
BLAKE2b-256 f1fb19154591e5554f8c33299fad91f461708669e99a13cb487d92a47b3f66a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce0edb2c72119351d19f9828cac0ce73083b60d8aaa148c61baa0fa687097707
MD5 ba91665a537937f74da940e1c84b9362
BLAKE2b-256 5a3f0250aa3034536ee4c2da5fbbf1cffc7fc0390093564c1e043c707747ac7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9addd2c59091a37006048dba69251795163f5d50b632d10e1fdf9b8e928b0099
MD5 e657b68b31c98cc358f4c8f054e36c5c
BLAKE2b-256 ca8130a8b5ac11a1de195e831abd7817dc5064698b4dac9670a4380635853ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1aa11e1723fef5d4ca637ff22982714ff635df92250e1611ded39d3ac272f913
MD5 2808e70cd06c4b81ea97564631d2d4f4
BLAKE2b-256 b45dc2f08aaeb65f9c696d86eb47fb23f8d44ae4d369a4acf7103dcf5f8ee4ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dca33c297683eeee6ca10472230fda1999dd29cff9f2367c4c375670d4ac1d21
MD5 8718ce103f8c146c6e88d76089265dcc
BLAKE2b-256 617d0df67a456f101f59048cfa1746c6ed428409e1df0045e88222f9aff20f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63889f3561e620747e869a3c10fc74465d452589a2a7f59b84df31c1ca7beb5d
MD5 638695ac4bf65fa1957ba3a9203ae91b
BLAKE2b-256 afcc81f638baccad3bc5fd9637d2a3dc956803f698555b8f515642e6fee2d5d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1cd250310b5040d7ad7b898d73c22f2d55f12096e03db7273e7f477fc551e3fc
MD5 193504a2ce05ccd7383f423eae6baf1c
BLAKE2b-256 110997bb003e52d0d149881e0ca06bfb424da7453cefd7c859aea4404c07b87c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 058d3bfd881d9c905841aaf386250cbcd699d358379ca547e4a4c9e7c2341967
MD5 5a9a962ced1b0475872e959840c495cc
BLAKE2b-256 9bf0bc95d4c5a1546a182a973c6cb1f4895fe61041bec17f38b6c698514d8afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a83e4508da9fcfe6ec6e3045f998bdd918f3ddf79815bf6d5beec6e9754f217
MD5 35b9c7a85e82773a07d4b7b7b6449714
BLAKE2b-256 3c632b9c6960a7e03e986bb251b2ec293a91787775df94db4a1a22051ca0f7b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3517d29d2d7464f91284b542d041a43a5e1209ac6d23fe6df56ed964a050b4fc
MD5 a377b71bc505794a787c61302db4bfb2
BLAKE2b-256 d4172b5241cdc7c6421e7bede7f26f4514ec1897bb64fd227806b94bd9eab379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3dd9519520d681738c89f9f3705f73bd305bf37e2f0d3e41ac3cf761b3f5028
MD5 8930103282d004008bf225360dd09b89
BLAKE2b-256 4b800dcf79423e2455cb36f3ffceb3e27ae9134b71b95d997e4a9d96a42a415f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c1ab90c37f73f4657da80972f26017292d7370221499622d3a0a1de28c2eb0e
MD5 37641b43a21beeb77bbaf873cbb9ef69
BLAKE2b-256 4f0f5d34359794d3385fe2ab3bcf1192f4aa90c898d142e847001997d837245b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50242ac5f71a6a1ce41b70e6c0263011578a72c374220d196732c9492a9d721c
MD5 e724978ebb7ce04a29b86cbe0ef54ece
BLAKE2b-256 1ff9599b5b70c4bc9281fb14ebc26806f804aeb60c797d7f6ddf47a87a0882ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f3a74ed61dba960d6d4d565c12d363201c49ff0a8bc45888ae5328879c0daa95
MD5 b0da6749ed547a3f123551d10461deb1
BLAKE2b-256 1373cf7d37544ae62971e85ff6f4a02bb9a1346196469d75a633e47d5338e47c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 41c6363c049000d7d8c5dca02ea269958044e20b37b1f40e0f73f5701b92d004
MD5 8614e53bc92c836f07dac4e7ac1d970d
BLAKE2b-256 945d2c20cdc8edb88654e0aa171c07f683b766b3fbbbf0262c2e07d10863eb4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0e425f6628a01e2af82f0240c72888dc88fca73eaec88077191da191bea6ac3d
MD5 f903bce8bc393712aac993fd1b1743e8
BLAKE2b-256 796a1e5fdb98680eb6190f657246e5e7c3d1127500161d60ab86ef5a35a85ffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b9fa3e83c7aba7aab952443d7f7503a65e8c6b5782ecc89bb78990ac196f58be
MD5 f69827a9aefbfe34e2ada3daaf70e439
BLAKE2b-256 b857d325b4bb14278552b422ff574b9d4e6afc0130bd44c8718f3ab206977963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 493b070c26f7a23aeff80a0960ccf17df0479706d4efeb40f662d20717be95e0
MD5 50b21208a68030dd2c026f35a627d357
BLAKE2b-256 1b10a0892bc746fb49b4c3b16d17c7c6129170608ff844514dc2ef4a59166a89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3e175d7934e0766150f804769ef61d133cf730fae666684b8d161dc6ea06eca
MD5 c2e3ffd50269d3a81f2a5aa9931473b7
BLAKE2b-256 6556a05b06014e9f58edc87be6e146a4a5f9a1db61c269fc5f8b3e516e60456c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fec2f314cb7c6afd24303450bff29b9ecfebb92c146dd61356207f2b9a521ae9
MD5 b03d33d9e1460af6b0bf7a9a1acae394
BLAKE2b-256 b1d1eb316725d857d8db51c170950626c8b9b7a922542630a84ea3dba68e7661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2bb7dfb711e6c03a0d74acc1abcbcbe1bd18dcb9f611d89de6f0b8e08630a420
MD5 f2ee3ec094d9bf4fd32e9e839b5c2e51
BLAKE2b-256 1fb88c5733779d94a0da4897c1dcdbc0d3afa04fb2024ba77da88d70e7e04c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d50b95d11753a6fa0e0f1cdc59e27a25f84f7994a19b230357c822f82f609e0
MD5 21597af6aafcaa4495db8a3008396e9c
BLAKE2b-256 2580a9790c9ab325b4b6a3c95fe857ced6bc93c1ba70d95da5b7883dfd33961b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00a46d2c984b314eac29a7047068b22cad342bc58b839afbc164d9178b3e837f
MD5 eeee0e0933fddc1ef76411afc32a29b0
BLAKE2b-256 f8b04e2015fc5c174efce70d87db1ab566f2f5bc740e880d63b2d82798aae8a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 09c5bd70d2fa7074a213b3c620ba6e659230b1184c83b533bbb42d464e119527
MD5 8991b6935980604e31d92533bc64a693
BLAKE2b-256 845a750d359049c7707416306dfbe6e449a15dbcfeef8438768007cf88f966ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2737488e503374afeb430c34e5186d6a7e19172bde9b1a35afe7867242f23fda
MD5 7902ca94cc08b754cb6b5f607017b1f1
BLAKE2b-256 5b5778541fad4df526e0d90f2a093752e178a81b6902941cd57749bc4c348809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e4da432c98d5a27fb13c5c1dfa4386aed02b4a390d6dd72950807bac78077532
MD5 6b8288f6533152a5d700fb921d3751ae
BLAKE2b-256 8719f169e99290034788feee3c0cf497bee031fff4942dd80cbe3ccd7122e904

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aeec6928f02b2b750698524fcf89cfa4857275dd4a8c7dc15ca6b7ed38684bf3
MD5 0cd2d92e2156d7bbe299e56fc93c6004
BLAKE2b-256 a29ffa5a270517f4a95592f5c9fa1fd7ac020bf37a26c7593c7d2eda735a7e78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e073a247933122c60c600182b4bc14c36d0874d9f275eebfb2debfa6a3cc5306
MD5 780394998161627f8e7d31f5c9521c24
BLAKE2b-256 68e2cb0ad391024d6c8e97babad5839016ac1d6ece64c12b0dc0542b5d9d6186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 618991ad01a2886edd2d8c57cfe3844a5a3e148e9e382e658954e0e8c9f6705c
MD5 aff823ef3feca834f0a58bce1db2637c
BLAKE2b-256 1e1c8639eebe2b479cb1b8d17195e44ec02eb4735569830c2723d77f52fb0af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7b75bbadefdfb1445615c913ed67b0780399138a350917e6a49b02d0f28c7d3b
MD5 174417329b208693653e148277763374
BLAKE2b-256 8b4873a4752be5314180d78b8dfd72ab53084daccd3e255a8f9d2a73bd930960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c690755e050ed6e6569870a086e440698115df94b42be9e31022f104791144cf
MD5 14ef822af845503ef3ac7cf85a0478b2
BLAKE2b-256 9dc040f431caffdff34e6e73a3aee394d044a23069a581bc058211e93562eba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 57dccca460ee0d1d67f9b15e218be15116eb9c2dd455765a4b991cd0c596d3c7
MD5 5be4961268498d417cf7e8406773f8c5
BLAKE2b-256 3a3decc9251530a237448de042d1cd54ef96975fb391c13ebb136dd1ed510d90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 46a7347a7255d0e615c80cb23fa9c4a386424abfa0df4218f1e2b0d3324133c1
MD5 286ef1593340d51816cc3a94e43762cc
BLAKE2b-256 c405c9f36856487962884c825fd100454d8f2a219f5d86edcd0101608dfd7ccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6647a969dcf2cc2fa3b4c915fe1ca7e5ba0c52f0bbe5625157ac4f563a8accc7
MD5 aad2966e958c55934edd06a640869813
BLAKE2b-256 b8a203f59ccb72d5372fdeaa1f3475640e7ead2720501fbd9cf093a10f5ef991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f6862b699b8a8f4db8ef2d1af1ea74d27837225198ad6feb30690d9b672aa428
MD5 7adae852df1b29afaa7bcc8306321f0a
BLAKE2b-256 e52ac08264f4342eb22be98ec2edfe1594e525e887942a89b499821a4141c2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6539bf96b72ede2d8933750e6d63314e022b83555258adca6bf9a2834701782e
MD5 e715e9e00b5583ba2203e5a18af20119
BLAKE2b-256 027baf19ba79060a5d743dd1c710dced07ffc91dafdfca57734f2e60d19a95a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a9e7eb93de70742bfaf0efaec1efa7826152e5682c79c4620cec24990f59d7a
MD5 3ad18c20c99f5817b47d502773fb782b
BLAKE2b-256 bf6e81062ca82a03c1eb7c834dad39feecd4a571e558949c9fbbbf355dda788a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c820c4cf57b04a957245717c822570dbb75cd015e8bbba43e3c71255993cbe8
MD5 a67ad7cd79eeaf26d1ac7919124592fd
BLAKE2b-256 205f6353b044e7b1abd16828c1cdd0a7162fb8cd40a66007b5b841f82f2ca340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04b2f9ecc4580e0a9ad0c81f7b95ecbfcb6516566ece0c7dea3e243e76ff5e8b
MD5 86e3489c0d70869d2d6b4162c42d85a1
BLAKE2b-256 4b6096be6189ba81d39864649c34c3140774cffb774d86c62e1078be87ee6269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4ebea50eae2888ffe4ba3ceb869b18992975b3675e3d9e5f72d5e1961c49262
MD5 8b7a87945e9674f486a336d840c153b6
BLAKE2b-256 a8d25781bb0dfa913c615b818d6a29ce9177e9480c5fecae91ed4bde6474f297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aaa66ffc168fe19a8b6242cbb2cf37608fea8f6cfe32afa8825e9327b3b0f52f
MD5 77803ee42651e95b091b7b764ee367ee
BLAKE2b-256 03049231b6f46946198437e03f4c6d81144deedb79c2ea108bbc384ce75ab087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ec8aa90c5424bd3f154ab528026fefea345bcd33ed1ec369279a9b16cc26e43
MD5 36c3cda100039126b011ed563a74ff56
BLAKE2b-256 5671b7fad4ea60a7eb5c92140048dce6c8d868240c847e34a212481db0323114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2aba5948bc031f477a8dcb88d8a95128fc9d9a77ce250daef5229116ed8704f0
MD5 ab0f01f0c388deaa26509cfe671e4d57
BLAKE2b-256 445a15a1a84559487917054d803cefda05f923261f3e0dc1c59d017998f9381b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64b325c859c10127457544b00a56ce978d7bb2d587965b6a65e1803081306a2b
MD5 6caa5fb608ecf323c63982f61ff1ae9d
BLAKE2b-256 9224b8ca249fb9ad483873d1b25f5a54c6ad219b6cf875de80457912459524bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b71c1e8fff3a9c44305ed312cce1a23021c67f9f7b1d6c33c72d3081aeb3c17e
MD5 e56d421c1896a962a3a6b30028b4a4d8
BLAKE2b-256 445197d3928ea49d5e88170a334d7537dab99c7989abaaa810daabaa256dc34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d911b5d56aa464b67bb98a75871e1133478637b81e4df930b2a487f6c991f489
MD5 07ddb7633a5d2cb6337bf8a44b36067b
BLAKE2b-256 78eceeb7f8960c1b9391d15b56581fd3fc0d4ac424232bce2833cf6b7caf7f97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 81440e88f90f9c821e3fa90ca9e64511c1d965448221ebc09ec7c2f8f63b3775
MD5 09a6efdc0641bcef72b24763dbd89502
BLAKE2b-256 298a1dd641b222c8f8e9033f0e8dc75a6931524f0633b2d713ff5f471be04440

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8371505711dbf1e5a0d1228247318ca086239eec59772f01f2b5357d2430fe1b
MD5 92f1e2838a6825aeaf5143b536dcbe50
BLAKE2b-256 1cb88a77d779df17c97d18b9ab523ae057c715f879b206970416274c247f7fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 466f5517e3104d735ce6bb15d26b980c7c032f0e9e569c04fc0cefce84b0a4fd
MD5 f1ffa2dc9008af93fda45c77d95edf72
BLAKE2b-256 f81b5cc0860f86fcf4983a83805d435ac2a66a8ce88da006d9008067902f198c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c2ff0e099d79350af91797e7a1edadc612f6c0d1161d5e6cd235b32f3f134ed
MD5 1de49b5c2a59e19ebe064b4903ad91ed
BLAKE2b-256 3c15eec72d5b290dd60b782763def0e76c005a7642e332aeb7715c90fc4890ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e4765adc0ef0b8bef0350caada5e674c1a003235c628ba16fb9ae84f7b6e91c
MD5 6dea79ec7d11103c37b6d92f1dff42df
BLAKE2b-256 a06aa4be4380c74492ced8707c2bc16762a074369d56a7bb2e72fcd483211fbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71b68d28e69afbc2d4aa98636fcf343c4c008b4d0172f2429fdf80dcb74df827
MD5 1acbd0a0f36a27eeaa60d7073e541b73
BLAKE2b-256 a785aded09992d569804a08095eb749af9e0ebdfffb4f97fc94cb597248f5fc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1c810e7bc29ecf09e61e62640f46a6a306da20fc7fe55e7a73bbb5d19fd8cc1
MD5 ee58f96f93ed22b2698e529860b57cf9
BLAKE2b-256 b9480b678a9f22836cc45ddece41bc677acbd4c690f33d8663087dd3e9028023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7eee6d89ee91cf7df14234176ee610c22244cc50264888bc8e14d0625ef70317
MD5 54a8deaf960f8b1fbadc918c15a6605a
BLAKE2b-256 551753b2ff5fa30bd40a52ff5bbdc116332e0090ca0b41381da7222270caef9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cea9636c5c18ebeb000c2fa18dea675504bcf62c90ae5e2b29d93a124921ac7a
MD5 fd7601a1f8605d041ef0a11eea1fa655
BLAKE2b-256 ff0cde23d1d8092adc700519db701852d486b902677bd63fd3300d7772490487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec9c22ff2da76ebc3d158a6f037337d4b7cd226aae18229a58519030a639a750
MD5 eb8774692451f7524b0d096ecaab38e6
BLAKE2b-256 beead9e5a640a7f92f2483d96ea235216e2577cacf519fbcbbc9ab2183fa56ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b348418aa6bd273faaff46329b3622eda59ebc03c4db79f1ff5224ed0588944
MD5 d4cc161d1ca5427eddc27161c4fe738f
BLAKE2b-256 5c0183f3dcb2a297bf8790d18c8db904b42fe917766cd2ece9dc9003d16cffe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbb48372d8b7dd55ffa05b511ca6a5f79d7319970875d3627ff5f2c45306957a
MD5 4cdfb68e76f6be82b53d46944e52c16d
BLAKE2b-256 166d844fe9ffa768b184c33105d83d66bffe4517ec7f785dadc506365ff70bca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2504398f5a933ca3116aa1fc05fb262bac2acca6015bae90b173394fff06b601
MD5 0ccdbe117699c5694f92798fbe0602d2
BLAKE2b-256 c1f6d3ac27332527fd1a457808b542b6612c8e11963155b8166405631a70c6f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0446649544246f5a95d701182f12c8c8edacc0b1852563ed04dadb58788dbdf9
MD5 da93ced752583bdfb04054cb5d78ec84
BLAKE2b-256 7035a4c68fce785189b3e7b4f9b09dfe92f5c9e443202a6a6093ee365292d862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce48e67b36dbab5581803d9d81f233772e6222576132868ac2ab6b8733e07a1f
MD5 e86c3aa787de18fac55bbdf1d7847938
BLAKE2b-256 953b4e27bd404488020bbdfbc3202e9af363d5fceadd32a853d9f36f8fc5ed7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 67b8127f64a3a9f5721536d695cff4e41b4dc31579a14e22827a30a21b1afaf2
MD5 b07f80219d8a57ff1e61d0c3934884e0
BLAKE2b-256 6a3b2aae46d00f74f6921e9853bee1930ca2eee8a3e59653c00492a7a66fec18

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