Skip to main content

The format that's super!

Project description

The Duper logo, with a confident spectacled mole wearing a flailing blue cape.

duper-python

PyPI version GitHub license

Duper support for Python.

Check out the official website for Duper.

Installation

uv add duper-python
# -- or --
pip install duper-python

Examples

The basic json/pickle-like interface:

import duper

DUPER_DATA = """
APIResponse({
  status: 200,
  headers: {
    content_type: "application/duper",
    cache_control: "max-age=3600",
  },
  body: {
    users: [
      User({
        id: Uuid("7039311b-02d2-4849-a6de-900d4dbe9acb"),
        name: "Alice",
        email: Email("alice@example.com"),
        roles: ["admin", "user"],
        metadata: {
          last_login: DateTime("2024-01-15T10:30:00Z"),
          ip: IPV4("173.255.230.79"),
        },
      }),
    ],
  },
})
"""

python_dict = duper.loads(DUPER_DATA)  # Actually a Pydantic BaseModel!

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

Using Pydantic:

from datetime import datetime
import re
import uuid

from duper import BaseModel


class RegisteredRegex(BaseModel):
    regex_id: uuid.UUID
    created_at: datetime
    pattern: re.Pattern
    matches: list[str] | None = None

data = RegisteredRegex(
    regex_id=uuid.uuid4(),
    created_at=datetime.now(),
    pattern=re.compile(r"^Hello w.rld!$"),
)

data_str = data.model_dump(mode="duper")
print(data_str)

reconstituted_data = RegisteredRegex.model_validate_duper(data_str)
assert data == reconstituted_data

Using FastAPI:

from typing import Annotated
from duper.fastapi import DuperBody, DuperResponse
from duper import BaseModel
from fastapi import FastAPI

class DuplicatableData(BaseModel):
    tup: tuple[str, bytes]
    value: int

app = FastAPI()

@app.post("/double", response_class=DuperResponse)
async def double_the_data(
    body: Annotated[DuplicatableData, DuperBody(DuplicatableData)],
) -> DuperResponse:
    return DuperResponse(
        DuplicatableData(
            tup=(body.tup[0] + body.tup[0], body.tup[1] + body.tup[1]),
            value=2 * body.value,
        )
    )

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

duper_python-0.3.0.tar.gz (149.7 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.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (741.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

duper_python-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (778.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

duper_python-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (844.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

duper_python-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (724.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

duper_python-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (567.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

duper_python-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (581.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

duper_python-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (541.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

duper_python-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (607.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

duper_python-0.3.0-cp314-cp314-win_amd64.whl (416.9 kB view details)

Uploaded CPython 3.14Windows x86-64

duper_python-0.3.0-cp314-cp314-win32.whl (398.5 kB view details)

Uploaded CPython 3.14Windows x86

duper_python-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

duper_python-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (605.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

duper_python-0.3.0-cp314-cp314-macosx_11_0_arm64.whl (525.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

duper_python-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl (739.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

duper_python-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl (770.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

duper_python-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl (836.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

duper_python-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl (721.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

duper_python-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (573.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

duper_python-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (539.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

duper_python-0.3.0-cp313-cp313-win_amd64.whl (417.3 kB view details)

Uploaded CPython 3.13Windows x86-64

duper_python-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl (742.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

duper_python-0.3.0-cp313-cp313-musllinux_1_2_i686.whl (775.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

duper_python-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl (840.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

duper_python-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (725.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

duper_python-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

duper_python-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (577.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

duper_python-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (543.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

duper_python-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (605.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

duper_python-0.3.0-cp313-cp313-macosx_11_0_arm64.whl (525.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

duper_python-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl (559.0 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

duper_python-0.3.0-cp312-cp312-win_amd64.whl (417.6 kB view details)

Uploaded CPython 3.12Windows x86-64

duper_python-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl (743.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

duper_python-0.3.0-cp312-cp312-musllinux_1_2_i686.whl (776.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

duper_python-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl (840.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

duper_python-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl (726.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

duper_python-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (569.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

duper_python-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (577.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

duper_python-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (543.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

duper_python-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (605.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

duper_python-0.3.0-cp312-cp312-macosx_11_0_arm64.whl (525.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

duper_python-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl (559.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

duper_python-0.3.0-cp311-cp311-win_amd64.whl (416.0 kB view details)

Uploaded CPython 3.11Windows x86-64

duper_python-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl (741.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

duper_python-0.3.0-cp311-cp311-musllinux_1_2_i686.whl (777.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

duper_python-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl (843.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

duper_python-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (724.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

duper_python-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

duper_python-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (580.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

duper_python-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (542.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

duper_python-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (607.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

duper_python-0.3.0-cp311-cp311-macosx_11_0_arm64.whl (526.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

duper_python-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl (561.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

duper_python-0.3.0-cp310-cp310-win_amd64.whl (416.0 kB view details)

Uploaded CPython 3.10Windows x86-64

duper_python-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (741.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

duper_python-0.3.0-cp310-cp310-musllinux_1_2_i686.whl (777.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

duper_python-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl (843.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

duper_python-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (724.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

duper_python-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (568.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

duper_python-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (580.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

duper_python-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (542.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

duper_python-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (607.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for duper_python-0.3.0.tar.gz
Algorithm Hash digest
SHA256 b6143ee5ca0798cd625b886d02b12cc8bc70daef8cbc64fd250576ca807581f6
MD5 e6cffeeb6ea653bccc2cb49142ab4cd5
BLAKE2b-256 75a0f0e386006ce6312ca7ddfceb70126376ed136abcb9e1bc79d58ae91e7d3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fe77305d1b096de14cdd12406699739dfe1c214dd426751cfb1fae4ebccac31e
MD5 d85740c8eec05310b35fd1fa2554b934
BLAKE2b-256 906d7c4df76be7f37004cb7678b9b403f049d362140652a2d806bbd79a9736ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b09ed5c1dcd1db8fff32a67095342472fff9dcc7f3f8706ac224d5fee44b9db
MD5 d4095e364c43612dea00b65bb4f6acf2
BLAKE2b-256 a631944196a471e221184c4dd2c81a54b94dedc0567372e8799b91448cdacf2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fde1fac4a0dae1cfe05f50bf59bd1bd33e7dad3312e4d12ac126e4d3685c4379
MD5 0f6c2a4b884983f59a8c9e643cd634c2
BLAKE2b-256 76dee48b1787eb20af9860239d5b758c5292acb80735a9d490b994087a886abe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 de52338737423c1d0c8edc152ad1272a3c2b4f98532729e0a1855a6c86b97fd2
MD5 965ebe8e179c064c9ff09cd4eb185dd0
BLAKE2b-256 b54e44cdd1429154527996380d0052d0529da4a5f28cbcddd2b999ffc97f4b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 397c3479b8922cae760a702daa875c8d351cfb276bef56581cfc16c58d4d8797
MD5 2028ae90a56e802051ccd046e81bec2c
BLAKE2b-256 1034a1fdb9f64f2de0d7ec53e705a8a1bf5e2d87096189047098d8b21b8f057a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ef07c82ed5edb6ddbc88a11d99e07d86df1919620ab94f5a1eaac0871af1a6f
MD5 aefbc7d2b6f154ae5323cf72121678d0
BLAKE2b-256 95355e508c3e8304b6a6f1feae2a2a43c705e4478843ab0ec7947dff71375fd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5233693393cd54d270437023f016e7b65795415505397fdc50cfae6152ae12c
MD5 13ddb6c63a7603c1c59f63a047b4b8f9
BLAKE2b-256 289e54cd4ddc585401d00951a094ac355daacd4dbabd32ab33557fe763a354b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73b913b175790efaf6860c706630c892e6b134d85d8b5fc811755ea203519c19
MD5 6f682b7bf6ef033fa8a976f3308624ab
BLAKE2b-256 397435d9f6fc850276667706cd842c30a8419dc9f6d1a91f347d41d1c7dd3f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 5f44f97f0d75af9569393b4baf7cf5371992a0a19b5adfc0c6da06059cf1df3b
MD5 6ee63be18f0db4c5c47f64bf36e487d4
BLAKE2b-256 c6ef09e8d73629fcd84c1e1aa1bba8a032a1e2091ba028dd8db4fdc6b18c4891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8f97387fd906f4c3e2ef7a2f451c3418a5be5f166b401241f6ea5b67a2a59334
MD5 bfda012434966dfde3d386745d0c73d5
BLAKE2b-256 fb2dfd1484feea1e3e0a3192b94e27fd9f029a18e794967866762ce38022a9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 230f225ebc550f4c367eeba5e62f8ed0daf31ef89b3f0554239d909db0746ba6
MD5 d58badfcad95e20f3fee74720650fe0a
BLAKE2b-256 5a39c5aee2a9b05d9bd459cb8d3270fbb2ca1532f4330b341e952fa20255f893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ecd26078759708d1e6629e4e4880234fc2342208d7a4a459856b9d2e7b82a5b
MD5 1b1dff2adb8b3a3ade2a0f19f59242f8
BLAKE2b-256 564da028f159ccbb81fe7def93d04317d9ce2d090e979c2421e87a5e7db20ebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a5428e3f93ffcc3db3b5eaea9f7a73b19d18f0e9d95948fa5995fe800c8ea09
MD5 0c56b556d9a8d99374b75d72d7d106c7
BLAKE2b-256 8db65f3a7bfcfc41568b41db309af4d4eb08676e33c2af0cac700410d96fb308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 78efe2b5aa30a33cca2f558e798227816caf2a321758c3e3a4a246693f196a61
MD5 86efb6daed3b7dd462e1d7a1aa70e351
BLAKE2b-256 5dcc549398a20b0a1e52748fb47d7ac345d160f41f4daee2aff87e87772ec49a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37b57c2b58fc7f93859fe387da415fbde9bb5bd440f775a65f07fb2cb4a08d46
MD5 a5605fd19b40c4e2c3c30a7883719237
BLAKE2b-256 824ffd7cc0dad05b7c7ad0a8c643a4c551f3a4ed2020ad014e2fe0db46dba635

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c2c95eb353660e9611a9e42e0c42e9925c29d32c894b6646378b3d795319a5c1
MD5 51ed11bd9293dca818124f1a0cb6a025
BLAKE2b-256 7d620bcb60ccff52ed38ff12b2f1038cc86293d244a47bd302420349604d5fef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 77335828047c0c7ff26997f7706c3304bc4370b302fe42821988e6755759455d
MD5 8fbc3b39183d424e671de017ab40897f
BLAKE2b-256 f8b11d998d5890fd568e8619e159c51778c52e601aba61e1a52028a9fcf4075a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a2c70df12d90ac1b8fd7879e1bbc5877c4786b93a3fa923fb3dae2a04aeea510
MD5 3afe29c1832943e17e366b33d8f514b1
BLAKE2b-256 84b0b716852d22a73022e2ac5b3f1ad74191a651b34ba568f5414fa482910970

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85c60342d15964cbd81941d45e78db32c41c8c48020e8dadd0dea26d0e5fa9ab
MD5 e011501d56d9de43959ea3b7654f0c74
BLAKE2b-256 7c5cf13565e6eb86c8063c2a147a4ae59d726e5369a48e7efec3efbfdd243a88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 796bc31c9ce248224f59579dca16a2a3029ff84088c0e24ea03a10e1ca481b9e
MD5 2d0ac5d5f8e49ce3e5c17232cab5ee57
BLAKE2b-256 73a9041d7984353a39c2b5b2461ead9b8d56b26d5c78c6eb1d769f0b40c1d2fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c9738eb6c4db406040c309c477024136b201a72903cf9a85a9a55e775b45b46
MD5 e9a6cae3e68d57974d0b26503f94413c
BLAKE2b-256 6e10111a44133e685a36751778e3a326bfc85ccf931c22d2952493d27ddbe755

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 76b1bb25a76aaf5d30eadfd25358828ae8d54a8fa08fcd87cdc58a5422cc53f7
MD5 8bcec193b8a37934ed1f0da14424ce28
BLAKE2b-256 44d294043deecf71fd39136c266343d897c4ff833455659a74bf7e1b5cfdbfdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 937d7682e3fb1f3a09c3507e4384dc029b6d13e57b7b1c73e21b36afae1740cf
MD5 e54db354af66c2403ef1335385e55b51
BLAKE2b-256 e59ed22115edcf64d2d6503c5df1029754e0b8d49357d0c62d6f20b5c4ea3d34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 98b78852a1cf7b96429f3d6dcf7534d15fdd8219ed72d2f8590275da14adbfca
MD5 220c2c06da76ff88015ebbe88b6c6c49
BLAKE2b-256 9e0e30fea0aee922e240a8505b54bfeeef1873ebac8067b83ecbb6d884ed070b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04962b26d3d6596f94cd7685e5252af07a86407067c9aa70a658e74f8210efaf
MD5 311641c925df6bf7e64a63a0d8271ce6
BLAKE2b-256 0aa2701377a0ccdf023d78fcdc046c79ac480191f1bc9bb853a661926d2f873f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93a18784883b9a3fbf92509528d01ac35cf7f1108d276302d3b27791287fc305
MD5 744d88d83ff7c74bebb24324c55ae7e0
BLAKE2b-256 c1c40ba93148d60a4990c734d9585d70af3bc3599989001620bc963b15b79518

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f7e3d926b68dcd7893c1a26ddc0fcfda89f3f3da961a897b9eb1d3537d66ca6b
MD5 26037ff9a1eb262122a990d81be18013
BLAKE2b-256 aeab8487f76c5431965f6508db880709ff9c6adca36f9abf1ee0bcd99a2c58fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a799e4d79ad376a30b7a89cf0b8baee8c6cac3f503d3a1d0289df4d94a9fdb1
MD5 0621bb0687706b3fb36126e1f8512011
BLAKE2b-256 482edfaf652b4afe9bb708056ab580513e34114f7018f614c6c363b4afd0a80f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9abf54faae4ab51a7501d8aec58bbc22dd4b789bcd6f4d4376aacf4e47fdaa2d
MD5 4e8859253d21703c7a382d57a211237c
BLAKE2b-256 4df068db38946d79ecd0b8d136f3c79369b17ae7ae7e5f9089795ae8b460aa5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c649c4de828509271b8ad7e145ef2c0b9961f2f79176ed99c38cc2e49a26ee73
MD5 9abb5271680fa39cf347f683713a8fe8
BLAKE2b-256 827779fe648f384700fe4752676e8121875646423f9797ecbeb079711ab1cd89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ba892fb00b6d07f80b23a4d6d904b980b60d16837726a38e6ad5bb6124d5210a
MD5 8824763c6b3429995705911f589537fb
BLAKE2b-256 f437a8ec1c3c7a8a45bc4a101f2a37dc1adcebb8587ffa3716630a09f181f9d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 179c5477f8804e000649761b379087f739806b739b48865d4011c82eb2e739d5
MD5 15af1f5f9258e478441ba017bc4e1097
BLAKE2b-256 446edc8581bad2c0cd2fc51fe23419498636f4d3cc4fffb190d930cbd6a71d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b240cd8b252a313853dba2f6c9543dfcbca9930068bc312a64bd7d85c68aee27
MD5 1fb64f621f074f2703aa389737a7e69a
BLAKE2b-256 7a69415ae0d4981571e7112af69af4b42ff42783741b8e45a3dcb38d9158ef8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cbfa89157bce283a7b5617710e1362013f2850e8718254b965648ad54f34b7d5
MD5 1ea62c8fb60de5377da1dc3a84409656
BLAKE2b-256 2fc43766215c1e793082eb3fdfb9bf36e8986253e6a571f393234a71460bf143

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e815bffccc185ea6eed3465370b618074e85d4458c4662edddd35e7ac829fabf
MD5 b38419711cafe3e13d14f698070cba84
BLAKE2b-256 54f9b71271bd119f7eb03a17ffe99bc73a4495425b8455970c70592f71f7890d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bee7709c104a3c19c3772efc1261b1c959d6ded8935a4eaa81e3d6972881834a
MD5 a768d4a0a644719cd65b41c6c8a0763b
BLAKE2b-256 814c11997921a0c4856229510b5831d7f772f9424c2d0a199829f8e46fee9389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 83e7ec923749f7153d108d45a83126cb072ec46cd972a2285aaa4aacc0aaad2d
MD5 7340d6aa89dd546a54c72438c5fc0075
BLAKE2b-256 f387fbf50959d1892594d9947ced33cb12507df66c385c830a87d164fe3b89d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61c23d00247406c8e01e4d092ea1a28568a8a7c7f406e2067b9a3556bf43c302
MD5 11ba4a064866fb6703c67e2c46409da4
BLAKE2b-256 8db348161cb2cb8730066cb7bdfa482ab377ceb007f62506711dd168302fedc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f96a0303d99cc47ab95cb1a5b7aea3aa00f738908b8cb96ce86222b241d39fc6
MD5 519e8cddc90ffc6ff6b9895f5908501f
BLAKE2b-256 d1faf754e2bc36373bb2df9e6dec6207db28fd680a5325fbaa630e039595a3b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09a85b08660d92340eb6b57087efc75c4e609034be59f1a24a41319d2209a5c4
MD5 b29086e6d5dac65f3280713a3f39a28f
BLAKE2b-256 70b41c285f8c28de0d5517a65629ee306f76a3e8a41f7910bbe84887fa0f0df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b50594b9dea833c27864a16a06dad3df4f2ff818008115a6baea4ed8434e08ca
MD5 903a4cfd5953b10710ab856b407c011e
BLAKE2b-256 ecfd81d0b042c093d84e07cb8a83241f7d5b723d93358d4eb18ce888c8dc1d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 ccaac5eb0e056205eb94d5c3418c01d32226835f731267eda6ffd388de18f7e0
MD5 608123c7ac89099c87ca997f2f514401
BLAKE2b-256 48b0cbc99ac29fde77aacde23f4ce4ec57392d50095569e099b5fde11a44d263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63c5d273a88521c37632f13167980a485722e60d78b7f18592132a46ba3f06fc
MD5 2cc1c07fc8bdc3c6d74ee54fbc292056
BLAKE2b-256 7ff80a4cb0f2a83cd188ae5e17d92944effe5a729ddf9194d6b8aeb11852b5c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4e99deb8a5ddf3ea1ee414ca91c28a1373564c48e0292439f42b1e1eea84b0f6
MD5 de82e22f582da677a2e59407c6b4f917
BLAKE2b-256 b037b72a9137ad7b73f8f4ae6868cd72aa9db85692fd815a342b80f2982c640b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 173714cd2c1f3f687bdd5f875fe866d974d74921c182082eac0e332bb4b0886f
MD5 79ba3a3cd5dfe424b79a96ae62b9bc81
BLAKE2b-256 fff53eb9b6d547fc287233a6e4fbfb35c6f9d263a1641261a2c38a3eb90eab35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc27681f43ac661d0495b92ba9ff54c881d5bb225c26b2bcdd06ff09b53dc144
MD5 a6226d973ebc92d54f7afc09b9bb345d
BLAKE2b-256 ca8e51dc01ff4f5f738e9e23a449b097d21d85a844b9c7da1df6f3a0fb156bc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d2d9d5057b59d667a9c781fe4ae22efbaec5310ecd105cfaa9bbabe85a8a47c
MD5 df6ea606042cd6b307f841086072a2bd
BLAKE2b-256 9d34924e1ff8c496ecc2fc84b824e642dc733349fd55755276e62bd78e0e5457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b40746c60040bdad8cb1d87b7336bea5962f3cdfd69678d30286e67863e20ab
MD5 087744c2f1d654aa6f15d785a223545d
BLAKE2b-256 1a88204e18759ec70592621bb8aafbe21c0ee4e27d2a361b38db79494618d0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fc5ed177d5ac0c81662fee825f5da0b750d3381d8bf861913612c56dd6337be
MD5 eaa343e7b8c5d51205c4c12d729b3bd7
BLAKE2b-256 5837b404f589dfe51f8349d731617bf0ca03db1f3814e16be65f9241f19012ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc8bddce5966127b1ecf90ee177d56dccfc9793576f5d466875526807bad9e30
MD5 a79e1624c492dcd99094f6f676028988
BLAKE2b-256 c963f4ae8d3dbff4254d0cde4355ca61a05eaf8e21c37ebe549fd8f419e6bae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c746022322904a4d0e35b9e885af9477289304391f29933bfce6e92e4e522c62
MD5 9d690a4c527c7374356217e3314f51b3
BLAKE2b-256 5633325676f93e94611665aa045dc511f2664600b3613a91a3aa1cb9122352d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0abe58ca1d7918cde75cbbb7c8718944e453dddd9fafd7eda87cc4c217dcefb
MD5 2ff23c90eae6e8c024b6135b7bc1bdde
BLAKE2b-256 9e55501341675a429bf2ca657b6bab5d37ca3d8bf38685f1f4474e39bdd191b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8299f9bf12e444ad7d01e49cfb18ea9d1439b574528b654cbee792284d108ef1
MD5 d5ad9ef9e8a4d1b5055c71c3d5bd5847
BLAKE2b-256 0892fd8b4201fb30a307a828ab99febd3b5e65a0d3e628dffeece45ad8bfaf14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 498bdadaf731bbddd04dbaa94ca6fe10b78bca883a3e27207e6aad2cf4c4f182
MD5 858ab651d51eabd10728867a7809d003
BLAKE2b-256 ffeacf48ef4f96f86a11d4cb1ebb43156d6671791e4c4b8c2ea45fd5704ef91e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 81c716bb97b2cfb542b3a5c2a43376175987d330bc2a4b4fbdf1452af55bbc30
MD5 687157f2e1b6019d842e7ffb0db7a24c
BLAKE2b-256 9b6d0581b4a7217dd8d38ee323c19adb6de5df3e94ce094057f7ef7e41e96ec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 355aa3637f931ec2d47d7e7680c4e1817032aa0d4914d36fddc6c80f38947fdd
MD5 4a6b3d14392e70607fcb6792d45c38ce
BLAKE2b-256 dd54e3c0ea5488d940538ca95565afce6ce9b25f40d1a49ec52c6271dc3aa0c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3e313cb891bece437b4687d7205f998e6cb255d80b564f2cdfbabb4c005cb2ec
MD5 603c8f38365b34582d0953a3e598dbb2
BLAKE2b-256 c3174a9679846d8f5ab85e1bb890c724f5b1659b64f14fe57a0e3c59b500cc70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f971af30c7a039f0a916b53ce0e80590c317cd52c62563d4b9f477492702dcd
MD5 89d81424684bcee7e75d5b5f59030c75
BLAKE2b-256 c06ddf42d1fea5ed35bb6b808447a711e7bac22673874fa572f6b04fb3eb600c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb51aee3fd381ad01338468b37e0c960202b7c4ebc25e2a48fb832c29d0ae7c2
MD5 bafea6be4f66936f25a75772b9172b2b
BLAKE2b-256 62315521ccd68260abb736e0a93cf22e6889fe196ffa0aad43fb9fbeff7c5f88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2154457ddf9f4f5691eecf08ccd39706adbb1ad4947f9f564ef2fb740161dc43
MD5 12f76baeb336f406ba50bc71d6f4b791
BLAKE2b-256 aaeea41a99d72ecc29b3c813824e38bad57dcff7750e0eb1d6b26fb87bfb2f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for duper_python-0.3.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4e50472079ac591184dcda11a0d184b448602315ad76a824cc86431125f299d
MD5 7bb72aada97c53243efb5eaa9d7ca332
BLAKE2b-256 0839e030c8ef7877bab9e5f7a04571f9ee46939eebe0af2b75b6f2a7a7c33a05

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