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.0.tar.gz (158.1 kB view details)

Uploaded Source

Built Distributions

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

duper_python-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (964.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

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

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

duper_python-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (938.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

duper_python-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (789.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

duper_python-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (803.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (751.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

duper_python-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (839.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

duper_python-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (959.9 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

duper_python-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl (999.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

duper_python-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (932.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

duper_python-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (791.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (745.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

duper_python-0.4.0-cp314-cp314-win_amd64.whl (534.3 kB view details)

Uploaded CPython 3.14Windows x86-64

duper_python-0.4.0-cp314-cp314-win32.whl (506.2 kB view details)

Uploaded CPython 3.14Windows x86

duper_python-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (965.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ i686

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

duper_python-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (938.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

duper_python-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (791.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

duper_python-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (796.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (752.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

duper_python-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (834.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

duper_python-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (769.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

duper_python-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (785.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

duper_python-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl (960.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

duper_python-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl (998.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

duper_python-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl (932.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

duper_python-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (791.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (745.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

duper_python-0.4.0-cp313-cp313-win_amd64.whl (534.9 kB view details)

Uploaded CPython 3.13Windows x86-64

duper_python-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (966.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

duper_python-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (938.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

duper_python-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

duper_python-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (797.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (752.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

duper_python-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (835.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

duper_python-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (769.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

duper_python-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (786.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

duper_python-0.4.0-cp312-cp312-win_amd64.whl (535.1 kB view details)

Uploaded CPython 3.12Windows x86-64

duper_python-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (966.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

duper_python-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (938.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

duper_python-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (792.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

duper_python-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (797.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (752.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

duper_python-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (835.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

duper_python-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (769.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

duper_python-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (787.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

duper_python-0.4.0-cp311-cp311-win_amd64.whl (533.0 kB view details)

Uploaded CPython 3.11Windows x86-64

duper_python-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (964.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ i686

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

duper_python-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (938.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

duper_python-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (790.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

duper_python-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (801.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (751.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

duper_python-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (838.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

duper_python-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (771.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

duper_python-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (787.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

duper_python-0.4.0-cp310-cp310-win_amd64.whl (532.9 kB view details)

Uploaded CPython 3.10Windows x86-64

duper_python-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (964.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ i686

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

duper_python-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (938.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

duper_python-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (789.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

duper_python-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (801.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

duper_python-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (751.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

duper_python-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (838.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for duper_python-0.4.0.tar.gz
Algorithm Hash digest
SHA256 6163c701c07fcc97453b6fbc211e5cf09d001711218c3e26815314bd2c0faf4e
MD5 dcc14d225a34be5e01a4fa7f61fe94bd
BLAKE2b-256 52de93e04658d8c7d3e51419651e87b10cb4999ff1b5aea3783588a134503e2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2555b60612afc9c694797ab576ebfcbb3b506fef0deababbf19be047026a0843
MD5 5c7c8e7b6a78e6aa662a069f250b7643
BLAKE2b-256 b1766c36b72411107c051d399d3ce81d6703c206b315b20131c4e8a28f9f0d15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 98dcc64b4a50973d2869445aedf90cd212f91132a73c80f510e280da55fb23da
MD5 fd16d2e74227f8bd3047e527931f807d
BLAKE2b-256 fb805c895b04d0c6e98b42522d7d32ce2b098b95b12f8eb902f95803719dfd8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ca8f7d85a46f13a20cf783921b01523e9748172d4e1357a79dc262f8c2a89a33
MD5 7964e73f88fb28652c4423dad4af0589
BLAKE2b-256 0e38c4a9cf974e08b095501e96f219021b7b91897d00a9a62dcec794a432e86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f920f2fa07619205f4d36bc8aeee6248a129976d7f531c0b5fae64e5a82c808
MD5 4ddcba466c4b329f501b4d88425c1399
BLAKE2b-256 f1668cd218943a9ce09154eb7a81941fd165f6ce8e92033c69b0f3ce97890c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76b53d5aae29c9afb6a159a0d4269b2dd85c44d174709b98dac49c2f4237efcd
MD5 90475411684682b733dff5b2cbac8e1e
BLAKE2b-256 5f23bbda83e70dcab762b41b564d6c52b8f511dcdc63ee16261a61ddb4c0e5c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3d332df8c7543d596f56bb87e960d1de9714db16268f69c160a1a12e35cf9241
MD5 c0decd14c991827fedab37b9269ad98c
BLAKE2b-256 958d0338cb53fa061a8676b209058d0ed080ed07b0ee6bf19caea5f229ff419a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 702f463d57f463662b4e4b56b1fecdd06a1a24105ef93f25e23f644b8fccc607
MD5 0b032f605a6c233db7380c9ffb928775
BLAKE2b-256 8179cbaa1abaf30d90efc3ee52aeababb8c9dddb820a7b39c64143995d8e3a6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 967efb4ab7b8f75771556d14837e8222cefa70ad4fa2dd2e885579549e7506f1
MD5 462ebe5ad4cc5411d9fd7d1e07cf8043
BLAKE2b-256 9e16d1a3b8cf788367387d41b7d8798b4c53d388f33c8ae245c1927949f12363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5d0735812b1a12c4620218a7dfa441a888a0abd7003ed2672e91b303a0bece2c
MD5 50c889f50d6d3d4ab1b35eafcbf607d6
BLAKE2b-256 898e489f282292861e53dfe458f683968894f093dfbaa7e97056a6b5f8007a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c912b8997761cfb428c24695455537a741e18b6dc4d37fbd820ee751b62c9640
MD5 17d928bad4f079afe34888ae139b20f3
BLAKE2b-256 9d126eba444e14e524fa815977e139b80f17892bfca798daa1530754307d94af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bba308f7f3f8188521da6390310be0e49a1f43c8776c337b7b1b3ba6b235c8e8
MD5 d62b7ad97e28e421f1bf15e56ea94830
BLAKE2b-256 21b46182a799aef2fba59d377ac4c751392f62d9e30f744bb4cda1bdd8c6d46e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fffe216a5861ee73b816727fca996edcc8199189a420771b57b7e965ae9df9da
MD5 9764f2ebdd1643cb0a07a8300a7e65cc
BLAKE2b-256 4aed4a1072f39fcf169e3c51e83f40d5284f4eed3c4b00b8792144e8fa2937b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3694bc6aec1e0f7d3cb71ad877085e4e8938345d4776a8f8b5600b19d9883011
MD5 8c51cd81796af45fe67fd18ed8778c9d
BLAKE2b-256 0c1ceb94443c083e48a445eeec09cfafaceefe70fa5d32083eed3c81e328972c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 904ef0e1c960236677e3724ff1629fec8ffe7bc112d12ea3d0d36e138f73e695
MD5 a362c4e84b93527046615dcfc83d5a6f
BLAKE2b-256 de9d77ed499f3494badfca7a035839574764f07c85f22fd8fc716e96eb795553

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4c0a4270d7de9876b3aa78a04efff03311ccf359e288addb77f3ef896c1cd306
MD5 f0de3c6b33ffaa3b011735fdaeef9c00
BLAKE2b-256 9036d6a520839af4edd55ab2d18074dacaf753deb8391d84a9c230b9b5a49de1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f0891da131e42f7541f68d7fcbafb31ff73c574e6abe5db80bb1ffcf4587de8c
MD5 4b9d2bb77290857fa3d07d895d028373
BLAKE2b-256 7b06ecd08d7dc7525713037ce771460ed3a206f0739ab76ad9c4791af3900a03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72112c18c1f875c415f5f36baae7bd7ce3d05ffe939f6b8a450dcf4cac956495
MD5 ec9b82201f1d2f5170828d9e7626c964
BLAKE2b-256 948e0571d44460ae25985dc3601f72dc70817fa1930a9e635ead4232d3017703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1c04ed6fbb094fa3f5c323b6758880a2b2eb3c1b871acf37d9d9977b417c18a
MD5 f4f7a600d80123cb1c5b8e024a6db1be
BLAKE2b-256 37840d01d270549d1431043098fc9a2e2c5090cae50db10f8cef5646443ebbd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cf7801c4263b2ac93c0104bea1288065203e1b9c624e23e870536b2578a8caf2
MD5 f86a20c72592664dcdac9f82e6754614
BLAKE2b-256 ac549555417d284cebf5c06c08bd1c4f03e8b54f51ab9f49fbe3244b1b5b3407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ab2ce6c16b45cea3f57eb70d3e7421bf32944b6d1b950bcabd6e15d9df55a9a4
MD5 1073136d2ce811b7058cb7f188aedafc
BLAKE2b-256 b4fffb0187f8e9f66887a623e34fb1e829bf5774581fcaf7bf5ee8695bf869b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4886944a6751fea25dcd81ab339f4ef348f65ec696d818f4bf2cd01742c900d
MD5 ce14277d1617a797b903300b05c66d70
BLAKE2b-256 5660e11b14c71d7f5d707e7ae26e6a7dbf9bf016d18bf94a8a5b59ecc72dba5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4dfff470246958e4c371db404cf0540cbd16bf6c39c165b715b1bd3cb43b835e
MD5 4f0114e542ef2c2aed58cb3a9868ba00
BLAKE2b-256 19cbcfcb68dacba454b8935202211a9795a4c7e36856746e13d2dac14cb0caad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c1b7d1ffeda7d871d06dd5eb686fa4644e982d410da2fcf50bc173afdeb27a1
MD5 b311214f05ae4bb45dd4bcc88b3dff03
BLAKE2b-256 638a2f1f0859a31ab0f6ce8329e75f446e19e0143641828871f30c196191264e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f236312f474826fdf389ee12f29ac7cbe2150c1e4a08c63b3c1b27532eeff578
MD5 e114e9ef032b9cd7fdbce6fdf67dac3b
BLAKE2b-256 5114455c8642e419eba77ac418e9e028b55e78d6b9db6723d5f8463368663b57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34cb55dd8e71bd4cbeba9741c0879e7c1cf15b25dfa50d790c5834086a25f1ad
MD5 445093e1fedfca8a1a75d7f99bfa8fc7
BLAKE2b-256 7ff636f35bea7ecfaf443c562b0f45397e2d3a022998d8fced1442dfd44f8210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d73fd4f96e6f83861e8b5e2b851a1ed00de6c4ab9bc00e1deead57c9cc802c3f
MD5 300f2f7c6fc53cb35f56cfe476a8d034
BLAKE2b-256 81fd6c6cbd082efbbb623129d8a41cc046542b08e3b5064b210cb50d6bb1b077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c46da3344919ec855c781b1651b436484e0f8b974fef29f8e16e186c9c4ff93
MD5 33b553164367a4ad2a4148dbfa252cb6
BLAKE2b-256 a241f78fa971830eb4dad4244b049d1c361a787587ed91d24e3f6ca0f13e8531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c04aa981a339182c165c304007da6abea4c0164b7c7eeab986ec6b92424a0788
MD5 be218f36696d7961f4af2a38a200074b
BLAKE2b-256 a047d92c16f50745c694de097c05e2dc5f37dc4548bbd03549862ed8b38c7602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a193f5c465f095f069a5a3fdc1f8c6174208c7254f3dc1d7af32a799f75395a6
MD5 afa68e5af7339a37d1a3c10b5bd56f2a
BLAKE2b-256 c1f8a67b8979ac79a8a1c30738c02849a294f7eacd5f76b787ef3c385cd3c21d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 891be978d436f2408f5cc91c3f06b8aeabc6f6692ecb6d3dd379dc5f5cb3d4c3
MD5 89c83b9fa51be3d5e5f0bebbf6c93398
BLAKE2b-256 fd98b627fa084c9a0f7141fe9136e2d1d678f65084f25dbab0f365c87beef838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7504e777116f9662552574d0f8be0fee027177b2424515833cce22c75fb9fd29
MD5 85d23b6766535f33a521768a71d889c5
BLAKE2b-256 8163181981d60ebff1a3741c03bc9a79094c211e50721c7233609e2f9f1ba834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64f2bc89aa028338a0a31afdec38d968d4cf04f342d24dc58c0a04779dbb2295
MD5 e2ebf289c51406f50dcad43563d3c6df
BLAKE2b-256 54d89c51f0158addd0d405eb3880a2c83c58c48f200317e704a5b2c54406f02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 035babe39882bf82e92499835988906bab024248588df08ea71fe02f22a960ba
MD5 48692d30c700d1ada8055b55df7a0891
BLAKE2b-256 b1cb5248f22a348c597060ad83cac2c682a5a5b92e58eec0b7a273e0d63375fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f954b06fdae92c6cb86f4b3c6025759c4862ef03dbc314f40b11198c2f0b5325
MD5 346484cf6d3ed7d422036c122e893207
BLAKE2b-256 384db49b8152e2a2e24e1f7f5a19bf78d9165c6f20a64fccbf163e2230b91fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 31463523173f26ea994a15f4589932eb4c067276c4734ad503637e94bb9f9f8e
MD5 68fe54b9583517349d63794ad98f467d
BLAKE2b-256 11f558827df94a9b3f0cb23db2c88345642b711917bf6463efd1cc6287e2d93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e4d5451c8dee8b9715f12257f93c8fdf1158d48d636f413ebdddb744fc2e7127
MD5 8c874e49d3ae10a438838838a06fcb60
BLAKE2b-256 44225580f4e9c28dce9d27c8f0c10f2ebf283a12fde3551cfbee6907f308c77f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5c1069cc9df8d0dcaaf82d4207ef567f63a756cc549f4359409c37252470ed9e
MD5 fe5ed19767c147364d39e3e102c50932
BLAKE2b-256 41eabb697cef2e15207b5278078c6146d8e12f7669cdbeeb5be3f3da3d3e3951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36b811cda844c851335c7d085fcd97f8c9bda2d79e76a3e1292f2e8d4780b6dc
MD5 8b41dd7dbc6e741ccebeb5a5ef8b0912
BLAKE2b-256 b1bf0b9c000676c2c1070f1403e3c4a2a241cf2defd4816a1f0f16c3d2d55844

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff3c8cfe35d418330470eed78a7331c4406478042129d63d7bda4516e75b9b5e
MD5 0a9ab5db9e89892aba6b4434de8d530f
BLAKE2b-256 0c5976df8eb1c521d08d355174ec2ff6d362445929e5c839e581ea8e0fb3105c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d5f7fa459e4129bee79a392f53464aa5a89881e601e32e09309ad71e447db48
MD5 341b5d6ff254f4ca7a0fd61c60c52030
BLAKE2b-256 9bdca6bc1fa05e82016ff45d098b7115845099930e42d3647df4eba8e0314382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89e7f3b54855993a0bcf2d5b823d1a05b22c275d8679d8f3b3246962988608ec
MD5 1456e2291d8217b844afd6023bba38c5
BLAKE2b-256 7fee7bfcc3b5715c12bb1d18e4144eec6fbb0181ad9659b916e461f7b1fcea7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 781c98f1e0223518511c7ebbca9d42b7ed88bf4c2e36b2bd55d25a6c869c4e3e
MD5 22555b366643d15f07ba6d1a0ffbb23b
BLAKE2b-256 d2856de15582301d2be701ea8671b41ba6b7073a9d213dbd12208cb1cd8ab8dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52c5a0cf14bae3d86bfb6e09cd1d424590ef40f51cd7df712326459e3303d5a0
MD5 954dd234a7c38d973e3897a5f19313f7
BLAKE2b-256 e4f4c95d3b4be0f2a36ee4abd386eeaa5c10a3e485920f031ad05f44c8991778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b426125bfb7db120532d26c9aa007598025c3ce13fe2623576452ab8d3c4fec9
MD5 62379969588ca12e4fe7f37f9a1d771f
BLAKE2b-256 5b25dfc687399c5db45aee074d92aad8a01d270db8c7a13cc76d56d6bda8ef46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d4aa88ef6a9b55787d49dcfc94d65d2bcb721897c8ac867882fb705112f25219
MD5 e3d7fcf2280f0fa0db210b94751c56d1
BLAKE2b-256 7dae42612ffb4dbe694cd286e3db16f0bf3c4317ac441bae7133271d03d7c45b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 610fd83314d7e342c22ec445dfec815edbf8f69756d2b12c04f5f98c877ab913
MD5 e567d92c995fc6ed2a77f48178f7456a
BLAKE2b-256 06812e18b9a6adddbf3293febedc4c8a04d3d5f2a2247c655cb002fc1aa56d68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b432ae058b7c8149a5fa6c1b6483848b39708864ba8040ac9ae28e30538f018f
MD5 c8872ccaab76baf35915bb5327e7b5b3
BLAKE2b-256 84c146d15d3285786b519e749527ed2a6a173f0c5d99f56b3b8d3edd38d4863c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 04254ebb5853917c862a39b2588debfb0050964897ef7fa336788bd9776e881a
MD5 0547e1e0bb5ae2026b7038de2cebdd3c
BLAKE2b-256 06ce9aa87c8af4f1db8623c4648ecde63a9a42b117ec9fd2dd8e27aec76a1bba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f20d8a13df030075eb5c081571fcca53ab5fe568b799f0130ff150f330e42ca7
MD5 f0f1945b69d9c25175e9aac16562ede5
BLAKE2b-256 5a11b979b9c714fef64270d661a786dedb47f6935471f1b018374b23e830da6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 349fd5cb23e02ea71c80a3592111e042318b788b2e07f7b1bba01c9e9f28912c
MD5 748b7720ddd35ac17c2523f4650bae3c
BLAKE2b-256 10821bbaa08ef4546c12680b3d635f33bc013e7bcdb4ede53ab5c1563438c152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f492b4ea298a1c789b40d1e342e15b546932b4f208ee44df665f841f78e13b2
MD5 0c614db2577827e760daa81d36013fc8
BLAKE2b-256 8d5c69a8979283786b3583096977e4dbebb7f3d1f3e87b27b0c95449e06c85f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e4a529996720c69e2be09aa529a1e322cff2f3c4c5e643c85e8fec1702d0267b
MD5 8bc0e03d698c6feea6232492df4a6357
BLAKE2b-256 59d9c66e80b11caf24a13ad8da4356d3b5b9cbc8760ae4e4f46d438b9829f8b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7e244651b687f852a5b0ec6fa132f9a53e5bc5cad0e7e58f56e8380e3b62b0c
MD5 77f2dc1befd7185094b89ddc4e8b189b
BLAKE2b-256 b637b57ed5c533c1040e195215ed3ea48b05eb18016c397ee645a15db19793b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dfd6c9c051194237ff0556837c73a871f8c69813c6fc3346a18b614ea9a45c64
MD5 59f0f24f7ac94727b6351cdb12aed104
BLAKE2b-256 87241f063d0ea933a0c4c708901960831e716a226f48d434f3d2a839cfa136fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bee2b9bb88fda24e2019e904cc6a860dd08d5363d63114797f31c5072e2d2d7f
MD5 0ae834271407d19e760f2ac45473c454
BLAKE2b-256 5a2726540a6eaef112808284f29397110222a7026663f9fe2aa95b4a4e4bf837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cb07877f66dc1e1acd3732d6ad335e8094587495e8588de4041284e0ca60421e
MD5 556c1c0774ca5e58d37958e433c137f9
BLAKE2b-256 42a849b285d060739abac78716cfb3877fa43e2598b8e66b5abf8b2bdf1f7ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0903175bd7f2c7de0c3554e8cd9162cffb355205de8705dcb23b65434a958304
MD5 f0b31359924e65512f65377da25d6a44
BLAKE2b-256 a899a54118830ac2c4a49a2df77680d17abfe1f4ffef1b5de2014dba217d7b22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9b12d5b2d8a8a2af971a673001c83305fa6a5ad864e4f763d1ba3a3f2431bf83
MD5 e4875eb7456da363fdd5873fcb4612e8
BLAKE2b-256 48bf2e8179efde9c38eda91d34649fc6c01d29b3541e7822166b0a6f4dad3cab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2141cd372ef4ca14411c2e91ee91cc8e061a96460b060758c7b6cecf1a05d3e9
MD5 c4010f962aa6bd1d33ecfc82330422be
BLAKE2b-256 e43f39425a0d20f12216d725d22568c45989c18dc471979925deb776dc6b4a3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3f0aed078687ac6e31db1521ecfba6d01d5cd16853d9a85731bc2bc0114ae3a
MD5 64595b0098678b0c93abc5b9388f34b3
BLAKE2b-256 7248f604b9e385072529734b827d3b8e7037b43c68454ed27b75012bd2d7a48b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 057f6a7e8228eba9720f31793b295f3c1540ab5e85ff5e00bd728d7ceac85483
MD5 323243f587a589b3b684c917d2650552
BLAKE2b-256 8e33aed9404d45355ba3d0cf3160b81a034e539b387291862a14e6a0ca9c3102

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee8cfd19c7aaeda5551d5ebbacde7f8fb8c97b40c8c78de13ba603e689dbb403
MD5 3fa46a93ecea96d9ab0d0ab7da593471
BLAKE2b-256 6817c0a3b4cd059b26f52d46cb387dcdcd5f2973000e78918231fc5f86f54841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d398950581581fad8c00391e1f08cb531d6c86ab8629064bdfa3aa528a457f4
MD5 5cac070008dac5659a7efa796bdf59cb
BLAKE2b-256 676ba1315c5d5303822d9bb948bddb0c3ee28372e31875d33e55be950dc9ed69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83a6237039a568e3465ac40271c58702c1a0708460311665b3d5361f90c171c4
MD5 5e889035484af368a7d898a3708c5eea
BLAKE2b-256 395cb2b9c5d22b7a55b32e12171f5d4b69d6b9dcf483c0df3baba10fc4b71c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c3fd56685856c6e051cf14da9bc9b258a9c38483ad473a95ff9377ea30254d30
MD5 1e798c7f200ad124e67f1e6397ce0683
BLAKE2b-256 8d2e9611129e3326d6d6a215717ed997e7f9e2b2394ba9358212c8b105661da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a9ab8fc50cfe3c917931e9cf2abc29818bfcb0902cd94daa3a4632ad6a7a9f38
MD5 a0fef1f655fb06a8e9007bbff71c5cde
BLAKE2b-256 ff92a3f61ef74d49f4987ed87803a4d73a46e46ac8900c02f1e87500842e58cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c57d2e9f0d842d24b6c4b8d94d59529d8ae8cdff594b651f591c2c39445bf41f
MD5 e73dc888f2479f702c91b4a923bd1cab
BLAKE2b-256 05ba0ade20ac4bcde1c434d948693358ba53f6efe67d26344fec1bc01847f3c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7bfdc91400aea7d338a73e563f513cfa0824aae4ad332db213c9f5eeb0a4ac6c
MD5 2042cb60641a932c6c408ff5a5e12313
BLAKE2b-256 31a23f4adc84a7480d6eae2cfa524b746293d736287899912931bd0aa63f87b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a63f7d53f1ad4085ae41e90de8bd3507b8c96f754ade3bbca181bad872b8a441
MD5 b7e9ef996c5893c9f0c7689fe397bc66
BLAKE2b-256 5e816b43187a996855c40b503895327db5aab553665dd4c6ae9875f2f64ccf61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d733ef3cc7d79981f0db5b8cf06f9720c3879040b7656b35aa6e7025ac1cb40e
MD5 0e1ea811bf25d225d0842cb79f4fa164
BLAKE2b-256 3fe28a4d988127674bc0830537949b642eddee588c316cdd2c67dc03b65d13c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f22ba72d9a843c9aa2db70edc7a817ecc6b02c4f1ec9faf20575df4b13bddbd9
MD5 63824bea72b909c651b468714faccce8
BLAKE2b-256 8025232f5d80f92054cbe25336d2c08c84d764b6be95c20744911098f0537754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3793d88762fb353fdad57e5c663ceee71203f25b98c534c9de13b3f2b5942a8d
MD5 bd34937fa92e1e74f6a6ec9f41c55571
BLAKE2b-256 eb3aaf20e335730f515c394118d8d7ca9f6e316767b927474549987937ac725a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c0c3f5517c8b655ccaf48fac7df20da00e49fc10f8e471491ee2e63bc6748f7
MD5 9f31055c3d8fadfbbff50eb808423c49
BLAKE2b-256 a355ebf64846fcd5942e683ac0b4f311211ec3665faa5b4304d23e945e108d86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc40508c21bdeac88ea2a205ac150a5287248cd1410c5a1f5899dd5c293f0244
MD5 ba0aa7c2e6469b30b271d938947ff286
BLAKE2b-256 5b1e235b71d09a2cdf40c26a0bbfdb217f5adb0689916a3e413564553da994e0

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