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.2.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.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (720.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

duper_python-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl (759.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

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

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

duper_python-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (726.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (557.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (592.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (920.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

duper_python-0.1.2-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.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (545.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (598.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14Windows x86

duper_python-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (553.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

duper_python-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (592.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

duper_python-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (497.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

duper_python-0.1.2-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.2-cp313-cp313t-musllinux_1_2_i686.whl (752.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

duper_python-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl (811.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

duper_python-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (588.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

duper_python-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (917.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

duper_python-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (548.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (541.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13Windows x86-64

duper_python-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl (717.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

duper_python-0.1.2-cp313-cp313-musllinux_1_2_i686.whl (753.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

duper_python-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl (723.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

duper_python-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (554.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

duper_python-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (589.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

duper_python-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (916.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

duper_python-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (548.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

duper_python-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (542.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

duper_python-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (593.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

duper_python-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl (514.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

duper_python-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (718.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

duper_python-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (753.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

duper_python-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (723.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

duper_python-0.1.2-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.2-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.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (917.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

duper_python-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (548.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

duper_python-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (542.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

duper_python-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (593.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

duper_python-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (497.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

duper_python-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (515.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

duper_python-0.1.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (757.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

duper_python-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (815.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

duper_python-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (725.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

duper_python-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (556.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

duper_python-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

duper_python-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

duper_python-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

duper_python-0.1.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (499.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

duper_python-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (518.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

duper_python-0.1.2-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.2-cp310-cp310-musllinux_1_2_i686.whl (757.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

duper_python-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (815.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

duper_python-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (725.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

duper_python-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (556.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

duper_python-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (590.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

duper_python-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (918.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

duper_python-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (553.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

duper_python-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (543.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

duper_python-0.1.2-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.2.tar.gz.

File metadata

  • Download URL: duper_python-0.1.2.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.2.tar.gz
Algorithm Hash digest
SHA256 f2a3b8ed1016d97b68fe1cdcbfca13aaa933f2f04dcea388361a92c3a395dfd2
MD5 6928215c09f57a21220a948d9165de12
BLAKE2b-256 7272d3147136a3b4bd20e76b160ddeb7797f24dc8b6465e45d5821455da5a374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72548ac5e5f0b6f757b27ac8da5d8b3cbd6820e829f19a1243ed14d374375c21
MD5 9d55a9b869e6cc0d35e5e47e7a413ea3
BLAKE2b-256 ecf904a352dda51969544721f3e8c9e9596189bb2bdaed59f5c89251ae5ceecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e433c83a20c291294659ede376e94cfdfe671573eebf3ceeaedc7338884b5708
MD5 197917efb303324d771a163cbd83b19c
BLAKE2b-256 1f9ba828ec0bb579269561aa385deca303b6508a75cdc9971d711404716980ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 896c4697c6d056baa23c543b1db07ccc574df3406e2d45dc21f9f67a3b948e8a
MD5 3b15d11c274af6c4b2d73b1332e94d44
BLAKE2b-256 0c0d42b268a86a3a1cca1bb9dbce960ee7bc19ce6186383f38a0a4b50a89fb84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 36539734a22c4ec234370255725cfbc30a325e66eb548a3886c75709ad1f923f
MD5 2c1b882f8148cc42969070529795848b
BLAKE2b-256 1d72db3d0672e377bbfdf3aaa65a1258e834530b22bf816ebd79d1e8e4318582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3422846fa2933d6e54739b294f8a7ab031a635afbd97c994da5c1fb0e3c12341
MD5 819f8a013b3d0a4296297c4551f8086d
BLAKE2b-256 69c1301a166fa43eee4a4bd049ae47c99a47c93284ceb777c47dbd50e6cb79d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b3c6867f9f551769747dde07f911bb4f75023d47a8faeae92242ab7dcde3f9ed
MD5 62727efeec3884a70a2a9605fcaa9be9
BLAKE2b-256 fb794bea42b8cbbcdec320eb183fa6580caa3f6386d626108dce04a4f84cdb9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6e7fa0be28f72e71a9014a3b5caf5dd885ac1a5c4825ed9c0f5119e0e622580e
MD5 9efd59aa1ecb6e7cd5afd2909bdecd4d
BLAKE2b-256 dc7326901b13b6c9bd8691f13e084bec68ea2a7f08e551ed4ee04b12315d9adc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e73607783cba886681793b9ff5e19b2616383a10b696903c1b20978674cbdd01
MD5 bab9e6bbea95753728f4c583382e54fc
BLAKE2b-256 eb8c357bf74a60fdf6295a95738cd33fbe6481e802ade3316231c76d4c447822

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65a2c6ff78faf21e279e1f39bfaf4651f5640c36f909d261b3c74fa16ae292f6
MD5 504f1d088baa94f87d3d9216ce308529
BLAKE2b-256 8963e12287fbab3809af5bd08517f6e297a8409786dddd50db1ecaeebb99456b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 30bd5acc850ecfeb4c5b02d78c07642b55d6038729cf2efda134a1d756688e08
MD5 c2c8afa58bb4f0967394aafff4269552
BLAKE2b-256 2b9973fb9a6952ac5c7a25f49c0946993e14bc733ffcebe1c6adb5fa1c49cc93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 45a892d1c8a6e398cb6a0b37237499c9926b05fa7bc7bcb8a5b5f50bd11f9543
MD5 89e08524a3c550a4588745d353229243
BLAKE2b-256 9476b5f9ac6ea72d539e1426f3f70549469ae3170ca58aa67fc94e2fa874bdd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ece609e0f51d586fb6776a5bf4af28e65da7370f5209951f03a6ddca56401559
MD5 ff7766006ae3cff3be9942968334651b
BLAKE2b-256 6f19d29a9149b785429746e384e29e6c9274b44a3992a1b13920d1f85f85f6ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26db6d7aa0ad708a9b7b16dc754f7a3a69d46eb83038f4746b0539dd01651627
MD5 9d4b28afc64845c70aa0125bab16399d
BLAKE2b-256 6df644af8722b7fcc4d599aafd878dac2e313bc57edbfa4ad5a0248dea219422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad774f1fa0a7538a2fcae77c412e071a149f7bfc4ee47355188055e3c6c09da5
MD5 1bf737c3c32a42e4a240303803086446
BLAKE2b-256 7527aec116e28d41f2b382a4d9b3fc018bc7ddfa29b9b3c36a2681de1c9a2d44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e21d2cffd8db091ac3aea171a131b6ede0f1971db0bef2a6913e063d387ac80
MD5 b28f8d53e7975278ed3633f154ad08a9
BLAKE2b-256 583998c2381d962a8675bc8270d103bc1b5aadb2f3a75606724396a4a4a73f09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b0c1a4e93c1715e6285e2337c65e759188d3358ef6e9f89c168db13ca8a7bf6d
MD5 6159cd5ba729161aeb04ec0ca66f9ca2
BLAKE2b-256 a6f3b038437f4a9d81dc3e42e0ebcfb488283a128f47c8bb701f3b9cf86bab39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bc04f2d93cb4e61c8b269e8e8c35c9f423ce7128d3bd38715ff977b8824f1963
MD5 d6df62628503f7374847dac2374f5f90
BLAKE2b-256 5628a5dcc73930e9899960007aea84030eb93aa192473d5c60fc188cd40ee6a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b4682fe8171596d3ce853a10dfc0ef0290d0cd1a7a49707d1ce1847264d023dc
MD5 ba27e4b84fb595ecfefb6af2550f5ef3
BLAKE2b-256 43f8bf554640e7e3ff2fa34d03cbee57da68cbd789b9fff207c8cc6cf6e0839c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d9b8faf84b9c876be5fa5d07ae53a70f031d63d8f7f091c1fd20a9fd5d3b5b19
MD5 043883a3cee2adc5182acc5ba96017bc
BLAKE2b-256 62697b6bf6456946f8ade8995c7ccc1f2b78b018b90db4e687ccc5219c1c070f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f27eaf24eeb70d65768c7e1e9d1196a971ddc833606ce7c0ce6f94d92d4badd
MD5 43246c682b9436ddf5d195e37fc8af17
BLAKE2b-256 74e4ccdad51b2c521f62713218cb73b93dd950c813a0cb19aba2e1cc80604823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e47264a6180afe28124c1a94e2a64f9b23c25418963124fd3d2d69b27ba4dce6
MD5 792ed664050d01760a5edfd735b8c73d
BLAKE2b-256 3c5f1bc7123bfd3022b97fca7443cddf87f8ebe85337b14598bdcb11af928b11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64df7f5072eca2dda9456c00aa30d53ebc4e597f0193b1ddabd373bc9d593ea5
MD5 c25ad34a56b4372f12e1affb47e1a631
BLAKE2b-256 e8500d5dcbd015401fcf0d7b9e56e4e1f64faf3d2aca3816da237387b379185a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8e28e5ad2bb96b67790dc2d727fb00eb5b1bb5db3b599338f1150d2b052a7c17
MD5 008c9273f28cf4c0c87963e0ff3d2269
BLAKE2b-256 939db17d842bc13830e26fadd55342a83e19b5e9a8b388f78652ac1d70060fd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 763f1b9da8d4d877c5f9bfc07468f45d1fee69ab599ee2300705b162106d1bc9
MD5 31530d077b5d039ca775918080543685
BLAKE2b-256 f76f7f7fdf0827da4bc877110941e5f700e5ba442830a6e798e927a8c8cbf0b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6034728ff01a68f63b97647fcfd16868e8559afc9be046d8f4a6478dd9cae3a1
MD5 6c09222327be32e43a8d3ca14e7fa751
BLAKE2b-256 0028cc3488871562d70e31689689c7c51c60199101591c8d4f21483fc5f26b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 953cfab536b587609b548eda363a706c155221b0e1d0d41fb9ac376c6dc335c4
MD5 9c96d63ba53a27bd3ebbe214d941094f
BLAKE2b-256 cc4a314303a95ea71c181b038df74d149feda21412377ef191a64549707172b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 38a0d485e506a2ebf387419ac53b955ba859f118c1a660d43cb65a72e8dedc59
MD5 a2c04921e39fcc03d51db9a4903aaeab
BLAKE2b-256 4cf391d86f0aaf770369e97a9520cc784077e7341abc98eceb383cb9a090d6f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7bed479e81c1d80f1e39a89256e70aa6fc3f08ea0b74ef8c47d5d13bd0c8b05
MD5 13218f404b32b5cb7c81d161de9361b2
BLAKE2b-256 1d625409f87022e17c8935740669520bc7b6eec22839e2b88d10ad95575a6dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7a276c645a3b225da2e3c951937154f1ec66a83150e6e0855ead82305a899b1
MD5 2252a58e84b7c1de76d73ccc1489f03b
BLAKE2b-256 b86cd10c96498a463ffa8853e7b71f89aecff90daae700e27c471f920a99c85a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9031e1b35d34be99282649715b1b35d782660a2fb93a10098af34094bb9fd964
MD5 9e3ff944c2de59dbff297e8244d171f9
BLAKE2b-256 4bcb41426d73453861d8af68bbf9145626757c89f32d44b0fb5a7f029dbcbb42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 345bc504afa450231c7da0bc069660bcf88188e805d99516b633ce6ca9dd7aef
MD5 28251e32296bd646a289bb79a3470e63
BLAKE2b-256 e6cc82ef50b4623c3c91f89fa0b2c4945c8f77632bf434017a64c775e0e6302b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3ba26cc93204cd1c736043e8e8a5e65d91e87684f45182814cba65d11ff7aba
MD5 3225c7867a503c9456cf03210a5c858b
BLAKE2b-256 6d7053c1b3bdc5b4f4fe5b5681778cc6eff5fec86dbc808b98369a9fee83f205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ca92ea003a448a5692689d42d394034ff0614be59b29f94f5503ec61e446611
MD5 ce1d4f0420921ba67d4bb7eb02c59447
BLAKE2b-256 0c8e86b2be83a66e8f6bf8a9e88ddd5b72dd02740f505761029a760e9f383011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c7a2aa59f3073b62fe1dcac45f2cca8e06514c90a5e00ab4a2878f525ff0be6
MD5 74cfe591369b045c26bac479e67e1c1f
BLAKE2b-256 6903c0ce77304953a08b8e991a064ccdf289625dbb6d655eccaeaac06045ef7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f6768b51b394e11c7f54fbd64fcd09443d0bfd50c199168de896fa2d3dcdb757
MD5 651dda57dc696febabbd7b6faaf83c58
BLAKE2b-256 934aa606bc40cac9505923dcab29625b4d0c3058d4d69cbf361d206cd781185d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a5aca5471a2613a3a691bad1340bcf5df15baa983e2edfc112f3c4107a98df5f
MD5 51f90cf3508c439c411a9282460479af
BLAKE2b-256 446e3fa83847ae0d972fd37d3fc908e27b67abf08760067af4ced0da0b0f6ded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a05ee4210afb037e9aa3d09d8b4c117e40d40096d1e6391be48662d3162e47c8
MD5 b37f1fe42462e906e59c39b3858549f3
BLAKE2b-256 c66343d563c63292654d4bbfc2c59f4d59d558a9c8d7c359c0985f351ef988e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7a66028cec60aad5ab0eac1cac792c1f587c23f5bd5b16ba51f5d12fc18d15d
MD5 980f91ff3568dfa6a3fc783fd6c77756
BLAKE2b-256 f5dfd40fab0d1ae9e5eba42fd03b2a1b80fb1a99b9799a58042e7adad15a031f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6070c01c1a8e18e7b04e192304ec6daa7334283f2b7463fb5c17abfef7b32353
MD5 c42dbc4e62db2681116878965b767846
BLAKE2b-256 f160abe6dab0fd679899196a03c2986f6feeb973267850b2ce48b754b8eed62f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f5b1550e93a4dc0ae6ea7f4e3a10321f434358d8a34dcf6c67989809e35e6368
MD5 478ed60ad76792fbf65783c2e6c58940
BLAKE2b-256 193f71e31451dc8c52c7785d42d9d72a073aa39cb5d7d3f66a21b05f6030a740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca431a70add6a09d2bc2a96febcea9b8652afcdf6248b0f91ee59d28022a97e5
MD5 ac895265570cf2ecaeda471570943a06
BLAKE2b-256 2f19deda35921cade5da5173cf446045477da4712d6b749839e87d446d29a42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 541e7fcb7e6d935fc1ff99948792690185fdc90f7a956de077c67ba273297b87
MD5 c994690c48903cd4142fe555ae97ed64
BLAKE2b-256 3375fe9993ccd2390fb5b849762899940f71f42a7f29cfbdd65646f78da0557b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c128e0e1dc2b2fbba578703939a1b1aa71239e13b484b72be809aa67f6660324
MD5 36e9c82b3db00cb73003814c3635aeb8
BLAKE2b-256 8e14d094f479e76938ebff0ac67aa95bc12b8acf910269b457282225be8abb53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fce7ffe3cb337b5dc4a110cc35cf85ae204c2a95f01d17bfc2635c71df711e4
MD5 2771e73b9309d71a9a34baaf31efa941
BLAKE2b-256 c48ffc1f1c6c00c0e19f1b7bb99a44a4b6955eab2132b4105954d3106c8d2e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 935feb0f601a2c1fceaaf1f30960cc9a43568a580eccbe8978c0fea56b90ec00
MD5 c354d8f1090a5545c4d18c6e16a2fba5
BLAKE2b-256 4f6e57cc2c0420fbff55954207b6ea86b5212364ebf54006da30c1eb8fe266ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 baefd0354b86adcbc200f15c8822c122fcc05ec2e9bc52af7cf961c1591a0ee2
MD5 8267956e69e7a38b90b4a37562d06143
BLAKE2b-256 55ec6ae0ec4768068a7ae9b9596cb2f55bf11142c2ce61516a2a83ce25bb60c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59d6eb51d182736acf421eed146d88ba833e275d855ab4d4248edf17fa56f6bb
MD5 d7299bc35c8519d4679ec5ec66ce5aaa
BLAKE2b-256 e6cb119b17a783c8cfaa7715d0f878efc01bd2a6eb55ea7826f6c44563b88717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab463509d0992e3c9b60df28c73419b97a0ab6e9a594ddb247bcdf453c85b10c
MD5 4b8d42eddfac5c95726188bfb6cf18ce
BLAKE2b-256 c7fe5a4a40dfd808a37c94be1530fee16b19233b97606d9885d001d9bbe18ecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2b96d0386d55c1d5a526b963e4b5ed1fe975893a4c8e4389f7f7c24747e2ad37
MD5 846ea0293e3fd9fecca9e1ef84449829
BLAKE2b-256 34e0d40ceb8f795bfc9c6b2ae7bf5d2b6b9a52718c91c6d5879dab20a3cddc7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d22eb563c08eb5f8b352a23b4ec6d81cd4a85ea6f00efc4844f59a6933c1d45
MD5 34a28f74b9242725fe995b8b7e14f651
BLAKE2b-256 af09919a95921f31f4ef5a2ee863204f0229936bd9cf70ca70141099f682c054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d34d95c42feb5b2289a05875923519bc97d20f16359a41621968ec953d7cf271
MD5 2acfa3ac2920b4149ccc544233a02d6d
BLAKE2b-256 0ffe3339755643d97cb6b6399941e484289ba541f7149efdb3f97d847c39602e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 826b9ce87e1152da8c2b319c56d2ff855c12796758608a0189bd6f8681ffd211
MD5 26abea18a1149f4c052d6a7cec4bc7bf
BLAKE2b-256 b56d63c04940c061d59ca2c8adb1a24ea78d07a2bf8155dfe853d97b76f2f774

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 013e96f6d742b7430ecf697843e2b18a3906a3f3ad6816050f5bf77414c048a4
MD5 f70d6e00f6a15c793051fcfed9e84e38
BLAKE2b-256 6e18475f253145d282ed41adccef7b87b345aa21cc97460c16520e7e4a0f5df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b4719fd7deeed3f545aa68d7d31c88d4adbe0585a9b6d1b2552d1774f8a03f11
MD5 0171cfa484f1058303d206850bde3d4a
BLAKE2b-256 7bc1e108093e6dbcf87e89813c665cd22212ac206a658b5d154538c98d0060ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6b9fe9756120a7308648ae95e2299c39489424ae2326230a35e489196e86c75
MD5 9ec455ecf40b82db1e274001cb2269f5
BLAKE2b-256 a618d94f860f830e1c4f1658328dd50aa58d3debf2347da3a00d455ac41c50a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ff9b3ba5ecaf524b0043c83041ac0674cea75a7fc562f4626c0f8e74b9f687fc
MD5 5219761af8ebfceb45fc116946a84197
BLAKE2b-256 e6f24715ebfbe68acf87df8acf88a8cb8c17c4b097fe3efe5860bc3849bd4d99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e1aa85d8f285ba8a04f549a1e9231d35a90544e87c9ee8765edc21d3841d393
MD5 9a1260b097d863e61710423607505709
BLAKE2b-256 87a5d2cbcc25dafa26862970d46f2c7df37ede284aba321b1df86fb7b2fa9037

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 232b5fdae61fb46620a8366b409c10b8228c037020b35eef41b6a122851afa32
MD5 673df1e4b60b94baa8bcb872865f9228
BLAKE2b-256 e7054eb0163a9139b6efc7d032eec34109101409740b12273c5a15ab795b0ef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7aea7b3c448b4fca1e426c7b44529543e9f1cc1d26aa9c523bd61c8ff4e9f23e
MD5 5a378a25b53977ee290d5db2ef0d4368
BLAKE2b-256 6f2ee1123be42f59e401711e966a68c56fff1be0a6faa46b369b5ec93e6eaeda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ff637f2029b5c31d31fc1f0a08f08790654643e1cf380282b43d5e347857cf6
MD5 bee38c4f038a25e8ad26aae663895881
BLAKE2b-256 562b6fd9696d08d6ae769e3bab1c6f0e604905d0643e995d7d1b0c9f58be5f20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 576f499793e98ec5d2d0ddb94dcecc2bc4783675357612ebefe01746d1e6bef0
MD5 f7663e23038c18002362083cebf84676
BLAKE2b-256 8d2a9ba2939165261649642b3afad66c58d69a81d1416e04bbc76324d1d2ac25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5c7fd11c9570e24d41d64c5e133e302359da0108548cba642b16fab8db5eee2a
MD5 0e90ac0ee2d035fa0b8d369fdd9d806b
BLAKE2b-256 37553ff26effeed8d1a668fe54ceab11dc6ccc703a291a07077c1ec1d5a48e9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3674c25c2401a97139ebc7654c8d41f3e45dc511e6882d72e4c425c53ef173dc
MD5 293eddb1e85e0cc914eabf612843e637
BLAKE2b-256 63bd788d38f7bbe45e9a36baa87fa710d6a9d21793c4d8319f40d9eb61cceabf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1241ea5b3494f1465b8c0860c170547163dc1612b34f881e18b2d4b238270905
MD5 0f87f412b67aaee95797d7f34fa1c6bc
BLAKE2b-256 ed1e310a5bc5d11baa5285d0a6a7539ff9aca861a68f233ec2f6124d8f854f15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d73947121ec7a40d8dbacdbd2227173550dbaeaacd7d1a040dae27b0ff5ce75d
MD5 cb2c11040aa4d2b37315482b89c64bd9
BLAKE2b-256 a3e8f1ed7acc6ad76a18b2812ed1ba79da16a193870edce6e26097f91eefc783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe8254ba540a57878c767149ecb4a3c79f7adff06bcfa5e6cef76908f331f307
MD5 acda1a38ca67ff65da5ba8c14ead6dbc
BLAKE2b-256 cd19bb3705233d2691435cc7df12cc9c8baa121a9aca43da5dd29a58195688a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd3461775e29dafb2f8318ecc0686b72c59989e66af9fe156bbf9b0c1c8c1bca
MD5 236ec394834e2a8816ef2cd411cabd9f
BLAKE2b-256 475027eb33b00d7e413c16f7826804ae389ade171f20894834274cb466ee5f2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4129fef400cc521094139c479ad73b22022a25181ea59d07be4f9dcc9b2bc74
MD5 1a11c58b028d8ce810c3ce00da1700ae
BLAKE2b-256 dcd2d45a1c067362d73d1062c3c4f564fe97d8c7639e4832a3d44347fcad017a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 302898beebdda6374d1b5ebf667f4f41deb1ded5b218381dc3b98471c28cdb91
MD5 70714453607ae1425a8f70a1f686a29d
BLAKE2b-256 734b5e9b759accdfa9fa949dcea730f83a89048817111e8dd0551d4532441dc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b43ffe0c6b1b1607d1b608e0d938baf3690671d977fd0840b922fa3a1d7c98e9
MD5 d98c2e463f25ab3b263778e3f5d66ce8
BLAKE2b-256 b79c13b3772a5765ea2f7e5ea5221c431652d3502b96bd7e785a2bfe0bfae3a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 080259842da0d292edbb6c3c9df5fa6783543ac2bfe61a27c38570b20b8bb5fe
MD5 23c14e32a78528e25f9391e879bdc631
BLAKE2b-256 a010765fcafc4d36c91f5258f065940f037ba433681dd9f05691ba96b555ac0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e7bff61cc6ee96a6a72323e1559e538704fca758ce6f320f0a28c57cb56cfc7
MD5 479663e34290ad4164019ee0c384a22b
BLAKE2b-256 281862973cb2337e5718bc94f37e6736cd2f9d0278a1996a8ec791b7143084a6

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