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.

See the main project on GitHub.

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)

with open("out.duper", "w") as f:
    duper.dump(DUPER_DATA)

Using Pydantic:

from datetime import datetime
import re
import uuid

from duper.pydantic 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")

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.pydantic 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.1.1.tar.gz (115.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.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (720.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

duper_python-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (759.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

duper_python-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (816.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

duper_python-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (726.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (558.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (920.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (554.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (545.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (598.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

duper_python-0.1.1-cp314-cp314-win32.whl (361.4 kB view details)

Uploaded CPython 3.14Windows x86

duper_python-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

duper_python-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (592.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

duper_python-0.1.1-cp314-cp314-macosx_11_0_arm64.whl (497.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

duper_python-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl (717.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

duper_python-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl (752.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

duper_python-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl (811.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

duper_python-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl (722.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

duper_python-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (588.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

duper_python-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (917.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

duper_python-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (547.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (541.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

duper_python-0.1.1-cp313-cp313-win_amd64.whl (383.0 kB view details)

Uploaded CPython 3.13Windows x86-64

duper_python-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl (718.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

duper_python-0.1.1-cp313-cp313-musllinux_1_2_i686.whl (753.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

duper_python-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl (812.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

duper_python-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl (723.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

duper_python-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

duper_python-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (589.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

duper_python-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (917.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

duper_python-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (548.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

duper_python-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (542.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

duper_python-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (593.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

duper_python-0.1.1-cp313-cp313-macosx_11_0_arm64.whl (497.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

duper_python-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl (514.3 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

duper_python-0.1.1-cp312-cp312-win_amd64.whl (383.2 kB view details)

Uploaded CPython 3.12Windows x86-64

duper_python-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (718.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

duper_python-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (753.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

duper_python-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (812.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

duper_python-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (723.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

duper_python-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

duper_python-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (589.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

duper_python-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

duper_python-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (548.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

duper_python-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (542.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

duper_python-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (593.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

duper_python-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (497.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

duper_python-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (514.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

duper_python-0.1.1-cp311-cp311-win_amd64.whl (384.0 kB view details)

Uploaded CPython 3.11Windows x86-64

duper_python-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (719.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

duper_python-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (757.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

duper_python-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (815.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

duper_python-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (725.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

duper_python-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (556.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

duper_python-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

duper_python-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (919.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

duper_python-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (552.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

duper_python-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (543.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

duper_python-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (597.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

duper_python-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (499.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

duper_python-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (518.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

duper_python-0.1.1-cp310-cp310-win_amd64.whl (383.7 kB view details)

Uploaded CPython 3.10Windows x86-64

duper_python-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (719.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

duper_python-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (757.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

duper_python-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (815.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

duper_python-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (725.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

duper_python-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (556.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

duper_python-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

duper_python-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

duper_python-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (552.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

duper_python-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (543.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

duper_python-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (597.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for duper_python-0.1.1.tar.gz
Algorithm Hash digest
SHA256 7d9efb401f4a91499cf141ba1dea941f0c352c4c45c0916b717b9002d8ae83ff
MD5 189cc7df7da8a3b2ca35d317128a6ab4
BLAKE2b-256 8cc90fffb13d2c534352434793e8788ec5a45726f69cbe71780b30e107fa3d20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c6d58ee1a5a57e449ba644bec983cfdf910943010d474678bf076268feb7b44f
MD5 49f034f4b64560537c1d1d8d3239be51
BLAKE2b-256 6157f2cad734687845057c2af6c8782a18bc8e6e094216b717375573a9b13ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 00f0e8d29b14557a97012a457c9f49f70b80a1b168e15ee0d2adce28bc57eb63
MD5 31b9a8b7685f2a3a82112cc1756f7279
BLAKE2b-256 ad33e81fdc2e12a14b320b357ddd7624e6e4c5d5722ef327f984e979f0b20e15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d61e27b0a257045aaa772d52b650ea4ae0ad71877ef6098c3f3dd92933c229ff
MD5 08cd7ee7329cfee5ff081e05b4fb1b5e
BLAKE2b-256 cae32a062b988977300bfce76863e482c3f12e28c6ff7b74f09af2a1bca0119b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eb5033c96e33670560b1a0f43725db9eb97ba136c50f549e01f688e429b27ee2
MD5 61039ee6c4223d666e171de4c393bc6b
BLAKE2b-256 da673b28d137370d642ef0788dd7564d032159d83e4f2155fbee6e333e494205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1f610d7e35eb5440858742bafd94fde97e5d39a5303a0be448e1e4254b3d055
MD5 f1394fb0628f4eeb47e7c3f95d47e93f
BLAKE2b-256 e5dd316c8a05e34861d983ef754361f0b305ae3368705612b39794d3dbc4968b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 808d1a9e49d85ab8652997d7077cd4495cfc5d412ab57be057bda3d6e485b11e
MD5 aca085d695a2a55b93b4cc81b9af4d04
BLAKE2b-256 af8c55cce91907df9ee9f202b68b518064935cf31f697153f3fff3e4ca598ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b23c07230b1ee9a9f00d906bf01223c04ff94cc8de31820b362380cf4a7860fd
MD5 c92031fcd1ee7051ae37a7c78ee00e8d
BLAKE2b-256 9aa410a98d663f021dee0f29b00b71b64cd5f8e68415b6ae875be85f91c1373b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a325fc35ae291e7912d4f69d4265f550dfa88fd0ae158265f1c493074f35432e
MD5 b0cedfd900ef00860a83f29fc3e29c4d
BLAKE2b-256 f3b095e919faa99e7a0a8e2034542363bc756bd1e2bfada013c19e9fb3e1031b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a03e4266c93129a3a895938015df8d62fbe9f63e829845810a9737c45247ee1
MD5 b16fd3dca896cefd60b03d7f1709a06f
BLAKE2b-256 1cc781fe55f9ce78d1f63bc409e26d8aaec8499922747b7240963c920d9d7e41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 839816124c99247088d59d5dd770685eb6bee87c55a8efb8bf207d0820e559b4
MD5 e5507e4162d6bf25fe06d4a57a6987da
BLAKE2b-256 2482bc766429bc98281e13b6296607e10385c624f3d85050cc2c397481184684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 07914e3ac58a4dcef81dc3319334bd5ab059a8c30a95ceb84a548fa3444e4988
MD5 8706f4a6b54f19898b72f75af769ad94
BLAKE2b-256 fcef417423459fc4a369496256c2295ce57839a50435740ef8d2d3c38d2aaceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79c69386eb652d9896c28ff26cf463cf88f25479c74d30006526aa499089c4fa
MD5 0fbb32acebd08624469fdf5c11aee23f
BLAKE2b-256 3201f4d2340ccf2af73d66ab9c6d531cfbf5fee9dc17e8689473fa67fcd66657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a28d17adc5499497b9a9b4ad3b1e68e2aed259ad2080feb0fee53280c2185cb9
MD5 5dfa7b99121259bbf68ed58c2cfe6daa
BLAKE2b-256 02f7be41acf2b64722cd15de6732ca12624c6fbd21b89aef3c5b9c2667a5578b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0f7f9796b8a925130ed4052f5da820d5f6cb9389210c8583f6c45d6760ff411
MD5 289741ee37bb6b2e98635bf1bcab6f36
BLAKE2b-256 8daf5aad017cd04532f174f5e37528ed9aea614b741adf59fe5c068f5661573b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bb5b62131e8bbc365f4f1feb3ba2b4ada1f2b524f5cd659ac0ca3295959bea38
MD5 5cc09bcc25b097287d52918d1f7e25b2
BLAKE2b-256 45ba1d715d17f694b638fb40e4ec991d435d02d91b4a81b3cdd4cc9aba33fca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b199871baccfd2d2bbb4ea084d80817511dd3add9670d23a72a8e2d07e0a500
MD5 e94ab0dd4e240c81a482e307fad92124
BLAKE2b-256 ebd6e6e0bde7b147db06e294729b61114e38f7d5e125f88999435a063ea248a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 881097b96829c91236da20071f4e0ada12fd31714f4720a301b0fc27833b0221
MD5 c911fecc2c6e2ca5604ea926e64b0c42
BLAKE2b-256 ca3fbceabe84ab7b370f378c64fc6586169f845e63e9684d4ae550d1212bd752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e25a4e3426e41e68ae36775f2f623a84a090d54c6cedbadc7b221d5b3b352dff
MD5 6730795acf937eead6e8bae0ec9ea922
BLAKE2b-256 6b600e04f95ef8b557b85708ab769eeecc46c765d6c82515759b311730941baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 524b65e2700b837ffba454e1ae2764153a1316d07ed7d9337b15d87bc3d3807b
MD5 c07f32af10add5efa69f274ea85695c4
BLAKE2b-256 f118798064d799e53c4f68fa31998138eb5cd3a8b4211643a0d8b13c725b71fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ffe649c4f6fc8ffa7c8032b56de55ed16a85173cfc0cd1bf7013be01538ebad
MD5 93431236296ff8ba513c4595a7138c9e
BLAKE2b-256 e2af8ba4e21c836d3f90a1faeb14afb24780ea57285455ce37ba6d4028c5ed8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4e43759286c9ca1ee2bb3ea9640568073c17cd4d498f6dd2bd08bf801ad4992
MD5 4c1329bf4903168c98ac1a4d6b24810d
BLAKE2b-256 145eaebaddc9d2bdfe01f1210bb610a115031b36ea82c23ec8385b719a0815d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3db86aa6ae99fd0b4ab7d634761805ffea631dcfafc48c0b33c25f34cdda7358
MD5 3e84b9c89c09eadc818a5c505a9ee781
BLAKE2b-256 b4d096ff393a464e40ff438c06a7876f1300a87eafa5d4c5c4c12692122b7cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e9988871fd289f797701d0b434cffc3c2e2b83592b3979c6fd44805c3272ac59
MD5 4e8922ed28f5dfcb4e22fff8271056bb
BLAKE2b-256 63bdb012c3c3396a425948997fa8e1c89c26af87af0bf45fa032563220b5168c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 753c32f573aaf9010fd3b301a1ef2cc1037b57d30dea606037b3f98226a3b750
MD5 df8983b6371049e8405b622935705f3f
BLAKE2b-256 97a220435a14fb44edd1cf59e15d762f1a6dc66e6d42d3359a0f3f8ff3283ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b4caf0fea69ad492b544f69a6e758591578a326032d7326d98365abce0454dec
MD5 3f90d416ed1443d5dafa4e4f8fd81ea2
BLAKE2b-256 6c1f8a073cac1ff5f1ed24fdf3cd18be2ebe45cdb518025f848963cc38003d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20ad27bd00f46ad8d76563430f1ced833d7506d580631c408e53559002297ad7
MD5 58e94dc3c4ad06ceab3ccf6dfac20f90
BLAKE2b-256 2ea0004ff5b3bff330ad736d8c1ef2c54cfc05127aee1dee1016b5008a2d4602

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 baf59cec9c110f6f76ffc2a9409a08b28c435c97232949cd1ee8f67fcb5405c1
MD5 8432b6dd8299e32adc2cbd6d3c124020
BLAKE2b-256 35fb07b5a05b6b23e36324933b870882c01e06e2c82ea92dedc3f04dfa0b4b69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bf9074f09751325b4c292c0d66f757dbb4fd42f266863d7bde12acd90d103178
MD5 3cfe757488721dfab1dd9185c04b7ec0
BLAKE2b-256 853ea44de37b3af083b4ee41a61fc0f3fcb8b5200a269da0edf4708b36df8a11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 41fcc8050afdc81ae8c7acf6d8a2742cda19e0cecc1072aed7ab1bf964082db8
MD5 d8a54d367ed95fd06e9c8fb74f047647
BLAKE2b-256 7e10c0d3fe6d6194caf22974cd36c6b766069604ea042de757eb6c758835b004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9f765a468ec92cab2daf43b8655a140d0dbb1dafd133763c81602fd3d7c03848
MD5 383f54cd0f4a754e1a5a76eba24db37e
BLAKE2b-256 f24188d0158207efe0e170e9086d5bd0e7e8eba20597fdce840d5756c22f21be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07776715d2a94908ad27bb6de3066be02c3be7b74977a2b8c8fe9e6189b32097
MD5 8be61976e582b998ef0f20742722da1e
BLAKE2b-256 2bb06b64c3e2e1bc70928b5a7b6aa3c80782967c4bfd4e11099a5447a6b74cdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b69b025976c7b6ef7293b1108ee135db6f040d6f684f5c9301f5aa6086bc8c53
MD5 e23fde11ec2a0988b04eb22879ac004a
BLAKE2b-256 8043b86a8cb8147bf4ba32010e939bec387e19343f4a6ca758056a42209b57d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c27cc4673c315f1dcd370c6baab2828e026867daaa0860062f6ff32e56ba5eda
MD5 49c765251e3b418a08d9e28a2dd1133f
BLAKE2b-256 059567f8e0fc4c2d90316a06620cdf36bb2bc10bda44de6fcdf4e0e783eefad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72b201cfbbd3a2fd0215445871fa0b3efe7fb54e60b27b7eb5f4e4c3e7d212cd
MD5 c8571ba7903eb81fc5576aa6a971d36b
BLAKE2b-256 d16cea83c5c03cdb99470252033276e005885c89540b1e8db481a8698276d482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 382b3e2e6ab27cbd9e78a4cd059af81158544e919703d38cabcd004921bdb784
MD5 497b761edf242553f4280a494fd33dad
BLAKE2b-256 852ce60b25c5a0624334992e25b39b8b6f3cdada8a749b712cfc0ddb0ed1c8a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 02c1eee05d962d0a79ffdaa3cd7a68787babfa93f56735c4478a4f4b90216269
MD5 d68edd979087996c45967d7d547a3b04
BLAKE2b-256 faee4cbf51c30e2654b180375121a0d3aa1b905b9a9d6ea1f45b9dd55fe67bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d03bbf61eeef0e557405c0345ee8ee4c37d8dca6ce7245bb5ec3a9647a0ad81
MD5 eff8d1a679d7edd2e4358c714b27de02
BLAKE2b-256 0f52ee629c378401aa77219cb15a789003d08ce46490977d48b5fdc2e7bb5524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b32c7ba898644d657c700eb89e5aa0e4e076863f10e10c40c1e9b35ca0e73b47
MD5 e56d03c9d1cd32b00ebf1c5b1d72f259
BLAKE2b-256 d5b893cc5fb85456a1745ed5b2a09dcde1cc1c8d6741afa6438b644c0ea05141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1c7eed478bd6a1a138aaed98bf08932edeef4049b9834d9a9462f8df6980cda8
MD5 dd609fa6d7d5421cd811e02fd6317110
BLAKE2b-256 36029408c716e771aaeb7f63b9b619aa61cce049aa931ce7e073a0757c3136be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c31e8f6a39231d4a0a909bbd60de2dff4c070959dada8182185352ca301837bb
MD5 642a43611cb5fea2fa5dfa5bffad3fe0
BLAKE2b-256 067e5d4c7063823687fe218bb7081bd06724c55224779df108e3559a6baa43a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d08f209f42ab7aa24792bc51de9417b5b0d04ff7a4117ec2315d5f82d6969f73
MD5 646e2ae4d272137c7908b8b3f5369725
BLAKE2b-256 443734b780b5219d125183005e48b58328bb52a1abde207c66eafa1e909555c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70f30317eb21487ff47bbd8cdbf52f3ef3df739072e513c6680d1c655e3568ff
MD5 02826cc0c91398d64caba20fa6a925c1
BLAKE2b-256 85bc66545ca29697b953fb65c5fc6d8dcecca60b781b070c1eedd549c674fd48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1f0fb6a1359ad876686bd3c6f8b07a58ede11090c57e37ceedb5606a0526824
MD5 7514532e02744e93c694b3a12d5be680
BLAKE2b-256 87c0739ba8c0af6c0cf20478bad1a7cb9aad5a4d42014d433674bb8471722da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f955afcdfbb94edd553e1f53b738823a3d81efedce36f7a971e78e55a5befc8e
MD5 4e8539aad69dc1fcde224fad2b2fea69
BLAKE2b-256 d77163c51f8929294428a66a47763ae2af6e2c7bffdac6b99492c3c681bbdf28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 235b5c32cdbf8dded779fa609319fb3bde1a6cefd99fa77fffcc7ab176c78777
MD5 0f415994f008971feb58ec99f3563f41
BLAKE2b-256 07cbe5e9ab18d25f8ca14d3d560823bdce15527347f1b661677f88e4617f55fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f12d4f1e732bca39b83b61b5f1643a5ed4f03b826bc825b8d89b3e46d773429d
MD5 07059f8cde5da64e7f64874b3cee2fbf
BLAKE2b-256 99a7fc69086e184f8859752c2381b2986e04afda36981fbd5da6645582d5613a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07d155f1df02e16d9e5526300a04d6101568260b4d7c48aa7c0b2d2faa9dfeb3
MD5 fcacc181fecc191e9865109445fd64df
BLAKE2b-256 5fb5692f354fd26c036ad7bef638e8c9503bff22f33eaadbe84ad4d11de1339e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b102214d98c423755096e717b487c0339dcdc6930a2533aed9030516456c262
MD5 dcc2237cdfc83994c0eb6412646f6b1f
BLAKE2b-256 c8333a88e3fb590d3ded111dfcd502f326eaa2723c3bbfae2d40d244149ef2d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 853ae8bf3f7ce34878f41189665a1813531e72b474368de1424085e943658fd7
MD5 b29e271c4b001ddd9212ad78be4f97f3
BLAKE2b-256 1dca15734227151bc91d0e56df8488c2111107f27430e2ea6623951ccb5a46a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8120b62d23d73dec5c2f1e7b854e2c839e56aa649dd3d319b06c0bd5e72aca1
MD5 5cc9bbd2a806d834959ef80399b384d3
BLAKE2b-256 58248909e6995706000ef187216747521c85c845da2a0f22ef9fd9ab7e5b3992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bc4b6479c49ab72c80b1f588a74e9352d974cb0c4a9be55a6754f48bc67a7751
MD5 6947e2aeb71f36e0fbddfa8375659b8d
BLAKE2b-256 4771d1fdafcd39c1ef45c8c1c29aad72bb4f60b42b9c4a63be121468053f5a59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c8b2e15925a6e370fe4c463c5ca5bdfda61d8ab02db47d7deadfa2a56175953b
MD5 75dc04e42ec6ded6b65a02e9369fb4ea
BLAKE2b-256 9ba562acc575413806682b03f0eea41d36b90edef233a0bac0186387845b66fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 380830cb55a2f4742c5d816bcbfed867d02659ac95f05314091acbdafb6264db
MD5 446ba79de2bbb6eecc27fba4b7044827
BLAKE2b-256 1b66426c73da2b3e63401a559ee59d9721ca6cf53a4f28197312a0e6f7df47ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6694c8f22ceffcda85ffca833b154510d44515c1655014c50f79ce5a38eab600
MD5 25074a8baba5530d17942d7f72c5e7e4
BLAKE2b-256 10db266155a298f0329628e491369a3a7745e576f96503f8e63b2094d65f4b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 238f2ba03b117a07f92b82a8adeb065d7d3309cb494217e0c0ece2f70ea4c5c1
MD5 5ed43a30452d7e2502bf736aad29398b
BLAKE2b-256 309fa4758d3486a731e568000b7ba83a59629fd514a851db2b85222d2e26a6bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a4673cd2c9bf88fd1c2490911c4343516f1e6a00ca90aa4746ddb43a9d9e8253
MD5 19a04b784bccf6c3b9d7170c08e86c37
BLAKE2b-256 cfe6f89118e2735769eb0ab4a37c674b1dc260d8c72afaa2745e2b9d4c043323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0935169ac4ff801c0211229c0a1a5cce36de04063ec47b0535e755798037f11
MD5 2cae6b4c587791b157bcbd81857986e9
BLAKE2b-256 97e80961a14113278a01bdfbd4837412945c5aae4485146728be1422d787225c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb41f39fe5684b0c77c5b3d7b489274a8e39de16701574fbfa348e2c4740e153
MD5 3cb6f79d6c5fdb6b81007d508a265fe8
BLAKE2b-256 824fb25c2929878080f1d789d5b78b92ed00430d7ee684b14602910c79ad0cdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7c1d6ecf6ee567845da9d5f4e6641a9c60ca961daa66ec28f581be741c8faeb
MD5 e93cbf9f29d775c7a8e456f1b10b1cd1
BLAKE2b-256 8db7a3a300a19aec281aa697af8a4386b36321b93b5f095ca9e084ee56f1a54f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1d17cd7efc029463e7fb9a3a79b4a15c3868c579138711ada67cbc342070efba
MD5 b4ac6227c8419e4b4d4d293a3ca63e96
BLAKE2b-256 315b8fc812645046b3365790e376fe93783e8424f046d9e4701078abee3d69b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 536c182b23bc5210e103eb60b56afc18a95e6ddd6fbcfc0672facbb30fbeabd4
MD5 3eb4b251ab7ae35611d293bed3815dd2
BLAKE2b-256 e36c41334e7f264a0cd7473883fe4a7ae610fa4af747c796857b0d969deafab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 200a89967ebf81e6d74a3a880f7d83effd773abe3e8a3962efc67b08f92792a7
MD5 1b1f3be7593de45ee3e14a58a64e27c5
BLAKE2b-256 11516406c4b6d027e55db01f59f4e87df3adb0dead28883392d16b02a8f4cd33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 60d49d3e995aad7ce5ac414c50014bcece23eea0665292ec931da0a6b18f13c3
MD5 d223f1d8072a5c752661e8874fad36f6
BLAKE2b-256 1d83e56dd32676a8f418b94b756f21bb7c4fe5d32750ac1327e463a9595374ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6d8db0f5d24279981df7bd14aed7af878e54bae9721637d784f087bf995140d8
MD5 cf32485c905fe27c141feeb61acc2587
BLAKE2b-256 541a09d0ef7424601e730756e583aa8a8cfda6e4e0b87124afb5ebb74f5e1887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 664a9175361bd38809652ac31fa22dae41d8d8bf37e49558536081e85d5b9604
MD5 95eec0d5c08bf27790f5dadfb36ee75f
BLAKE2b-256 41674821b0ba1e5a93c20bc2e298a942b91099185058b0fb7d526551dd2f483b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3bfef2f3d4f2ce1deeae75712c30e5b897ffdbe56f448e77be26cc68df0d61e
MD5 2aef8a050438709126dfb5722d9ba176
BLAKE2b-256 3bda41c5a8e9d4222e4d5fb3d1dc4a3f377a3504684ad37cdb0610ad361b3401

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a644676c867a7d4ec39db4c6341efc4239c856cee71bf3c38e5c4162c841868a
MD5 e094f72923acd40eebd83a321d7348a4
BLAKE2b-256 a0c1659c50b17aa3e6dfdfef04ba885cc4da369d1b746cd5ff3c9dca69c82f5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8e07717830599bb1e5f0fd58d2477505bca08257254eac0a1b76fcaed2c9d69
MD5 1fe58803404dc7e033f8e4f1247e72d0
BLAKE2b-256 a0a20aef3774b26f13399c57d17024673e5b181e45f145bf82ec14317dc036e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56e740041b8584a9764e47d100ff8f44bd6478269b779190c2bdd209cba31147
MD5 9bdb5ebf5a0dab5e9ced02d1c315d3b7
BLAKE2b-256 02f9604e15bb629a61c79cd011adbbf939d4dff693871abedaf6823cb346a5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d7fb4db2bdf7d5a638b36bf8a000690f699e28cb6ee11ee37ece0de821728a5
MD5 2bf2bbf2ca24a72d358a5c156ace190c
BLAKE2b-256 d4068d7b4462510a39b4f71385cf7e457a99966d8efd1420467a4b15791e26b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98144ee426996cbdf4989f2fe9fa7907b65396e611bca742867648a7a9636e83
MD5 6d3244bcc364b3b68847c8811740380c
BLAKE2b-256 edcfa0aee47f610ad4f0213923349ebc70da2829d3b8fc595b1cad8fa22ebd7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 395d569b229fc04c734f0e9c356d623af272542211bb7f50a18cde768ea5670a
MD5 b233e6c7a2812ba8030bbd4dcc071abc
BLAKE2b-256 5c620726edb70665c556be9f72d76e5fdd6a4c9a1a8efeda9b29a9c551076f09

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