Skip to main content
Pre-release

This release is a pre-release and may not be stable for production use.

pydantic-monty

Python bindings for the Monty sandboxed Python interpreter.

Execution always happens in a pool of monty worker subprocesses: a monty process can never be made fully crash-proof against memory errors (stack overflows, allocator aborts) triggered by adversarial input, so crash isolation is built in. A crashed worker raises MontyCrashedError and is replaced transparently — your process is never at risk.

Installation

pip install pydantic-monty

This installs the monty worker binary via the pydantic-monty-runtime dependency (the same way uv and ruff ship their binaries).

Usage

Basic execution

from pydantic_monty import Monty

with Monty() as pool:
    with pool.checkout() as session:
        print(session.feed_run('1 + 2'))
        #> 3

Monty() is a pool of workers; pool.checkout() dedicates one worker to a REPL session. Session state persists across feed_run calls:

from pydantic_monty import Monty

with Monty() as pool:
    with pool.checkout() as session:
        session.feed_run('x = 40')
        print(session.feed_run('x + 2'))
        #> 42

Async

AsyncMonty is the asyncio counterpart: worker I/O runs off the event loop, and external functions may be coroutines.

import asyncio

from pydantic_monty import AsyncMonty


async def fetch(url: str) -> str:
    await asyncio.sleep(0.01)
    return f'contents of {url}'


async def main():
    async with AsyncMonty() as pool:
        async with pool.checkout() as session:
            result = await session.feed_run(
                "await fetch('https://example.com')",
                external_lookup={'fetch': fetch},
            )
    print(result)
    #> contents of https://example.com


asyncio.run(main())

Input variables and external lookup

from pydantic_monty import Monty

with Monty() as pool:
    with pool.checkout() as session:
        result = session.feed_run(
            'double(x) + y',
            inputs={'x': 5, 'y': 1},
            external_lookup={'double': lambda x: x * 2},
        )
    print(result)
    #> 11

Snapshots: pausing and resuming execution

feed_start is the suspendable counterpart of feed_run: instead of driving a snippet to completion, it hands control back at each external call, OS call, name lookup, or future resolution as a snapshot. You answer with snapshot.resume(...), which returns the next snapshot or a MontyComplete.

from pydantic_monty import FunctionSnapshot, Monty, MontyComplete

with Monty() as pool:
    with pool.checkout() as session:
        snapshot = session.feed_start('greet(name) + "!"', inputs={'name': 'Ada'})
        assert isinstance(snapshot, FunctionSnapshot)
        print(snapshot.function_name, snapshot.args)
        #> greet ('Ada',)
        result = snapshot.resume({'return_value': 'hello Ada'})
        assert isinstance(result, MontyComplete)
        print(result.output)
        #> hello Ada!

To iterate a snippet to completion without answering each suspension by hand, pass an external_lookup (and/or os) to feed_start and drive with snapshot.resume_auto(), which resolves each external call and name lookup from them automatically — the same resolution feed_run performs, but one step at a time so you can inspect or dump() each snapshot along the way:

from pydantic_monty import Monty, MontyComplete

with Monty() as pool:
    with pool.checkout() as session:
        snapshot = session.feed_start(
            'greet(name) + "!"',
            inputs={'name': 'Ada'},
            external_lookup={'greet': lambda n: f'hello {n}'},
        )
        while not isinstance(snapshot, MontyComplete):
            snapshot = snapshot.resume_auto()
        print(snapshot.output)
        #> hello Ada!

On AsyncMonty, external_lookup callables may be coroutine functions and resume_auto is awaitable (snapshot = await snapshot.resume_auto()); a coroutine external is awaited concurrently and settled via an AsyncFutureSnapshot.

snapshot.dump() serializes the paused worker to bytes; a fresh session's load_snapshot restores it and returns the snapshot to resume. This lets you checkpoint execution and continue it later, even in a different process:

from pydantic_monty import FunctionSnapshot, Monty, MontyComplete

with Monty() as pool:
    with pool.checkout() as session:
        snapshot = session.feed_start(
            'fetch(url)', inputs={'url': 'https://example.com'}
        )
        blob = snapshot.dump()

    # later — restore into a fresh session and resume
    with pool.checkout() as session:
        snapshot = session.load_snapshot(blob)
        assert isinstance(snapshot, FunctionSnapshot)
        result = snapshot.resume({'return_value': 'page contents'})
        assert isinstance(result, MontyComplete)
        print(result.output)
        #> page contents

If the paused feed used filesystem mounts, re-supply the same ones to load_snapshot(blob, mount=...) — their host paths are not stored in the dump.

session.dump() between feeds serializes an idle session instead; restore it with session.load(blob) (which returns None) and keep feeding. Both load and load_snapshot are valid only on a fresh session, before any feed; using the wrong one for a dump's kind raises. AsyncMonty sessions expose the same feed_start / load / load_snapshot, with awaitable resume(...).

Resource limits

Limits are enforced inside the worker; the pool's request_timeout is a host-side backstop that kills a hung worker outright. max_duration_secs limits cumulative execution time — the clock runs only while the interpreter executes, never while suspended waiting on the host, and accumulates across feeds. The worker reports its execution time on every protocol turn, and sessions with the limit are additionally killed duration_limit_grace (1s, not currently configurable from Python) after the remaining budget expires, covering hangs the in-sandbox limit cannot catch (e.g. a blocking syscall inside a mount).

from pydantic_monty import Monty, MontyRuntimeError

with Monty(request_timeout=10) as pool:
    with pool.checkout(limits={'max_duration_secs': 0.1}) as session:
        try:
            session.feed_run('while True:\n    pass')
        except MontyRuntimeError as exc:
            print(exc.display(format='type-msg').split(':')[0])
            #> TimeoutError

Type checking

Monty bundles ty: each fed snippet can be type-checked inside the worker before it runs, with successfully executed snippets accumulating into the checking context.

from pydantic_monty import Monty, MontyTypingError

with Monty() as pool:
    with pool.checkout(type_check=True) as session:
        try:
            session.feed_run("x: int = 'not an int'")
        except MontyTypingError as exc:
            print('invalid-assignment' in exc.display())
            #> True

Crash isolation

from pydantic_monty import Monty, MontyCrashedError

hostile_code = '...'

with Monty() as pool:
    with pool.checkout() as session:
        try:
            session.feed_run(hostile_code)  # even a segfault is contained
        except MontyCrashedError:
            ...  # the worker died; the pool already replaced it

See limitations/pool-architecture.md in the repository for the behavioural details of subprocess execution (worker-local mounts, line-buffered print callbacks, session dumps).

Download files

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

Source Distribution

pydantic_monty-0.0.19b3.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

pydantic_monty-0.0.19b3-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

pydantic_monty-0.0.19b3-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.19b3-cp314-cp314-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.19b3-cp314-cp314-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_s390x.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_i686.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

pydantic_monty-0.0.19b3-cp314-cp314-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.19b3-cp314-cp314-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_monty-0.0.19b3-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_monty-0.0.19b3-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.19b3-cp313-cp313-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.19b3-cp313-cp313-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_s390x.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_i686.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

pydantic_monty-0.0.19b3-cp313-cp313-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.19b3-cp313-cp313-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_monty-0.0.19b3-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_monty-0.0.19b3-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.19b3-cp312-cp312-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.19b3-cp312-cp312-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_s390x.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_i686.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

pydantic_monty-0.0.19b3-cp312-cp312-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.19b3-cp312-cp312-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_monty-0.0.19b3-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_monty-0.0.19b3-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.19b3-cp311-cp311-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.19b3-cp311-cp311-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_s390x.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_i686.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pydantic_monty-0.0.19b3-cp311-cp311-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.19b3-cp311-cp311-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_monty-0.0.19b3-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_monty-0.0.19b3-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.19b3-cp310-cp310-musllinux_1_1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.19b3-cp310-cp310-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_s390x.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_i686.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_aarch64.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pydantic_monty-0.0.19b3-cp310-cp310-macosx_11_0_arm64.whl (2.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.19b3-cp310-cp310-macosx_10_12_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file pydantic_monty-0.0.19b3.tar.gz.

File metadata

  • Download URL: pydantic_monty-0.0.19b3.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3.tar.gz
Algorithm Hash digest
SHA256 7b3e69bba59c18c096162d4d3e3e5741c7f6a28a3d8f7db0039eec02ce1cacaa
MD5 b46170438dc9bfda95a3984bdeea7eba
BLAKE2b-256 83180d0903eaf9b45ef51251696258dae2f53e88304704fc7263a685318352a3

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c42bc51108274cd12237991ffe67c93647f7c695a5dcb0266730df54566713b1
MD5 8d0748db38bd982d2bac9e64ca78776a
BLAKE2b-256 78015f70e7dbb21d4753e664ba0078b437b20a12ed619a8e40bd7abe96c6b789

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-win32.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 169af0c57b04bb7642c35904441507ca4e1dd69a51b6a527111cc4a2cae86936
MD5 e2df6a4fbb1232da706d16497c287f9d
BLAKE2b-256 0d54dc95ef5a0689b9026ed52a7a45e7680c7c3ec5ee64f61c77a4aac909e8bd

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5cc6494cc5cd2b40da5f90bdb0706f824082f4070b228908aca5fb00565b81f3
MD5 89f1639dbd993d8d942a93d1aa951041
BLAKE2b-256 940108ee2605a97bf4955e757312ed04e5d49eb1fd8c3f45de4a4809b40566e2

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 691ce09bef33903b01fdf6412f8dd21916bec4aa28c0a6854f7676017ce07457
MD5 bfef052db3c3ee5548702f2868b0f498
BLAKE2b-256 4e77bbe0ac0da410ae27c20876607f65f3cbf8ce0bb98c4710630de83611e2b2

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3c57e0cad4206ba6aecaad2af3bb0eb3c8f6bf5855c619d9f615eb18af5bd7d0
MD5 a27a650f9a26952ac186708f26d1f644
BLAKE2b-256 f04079d9eef14234fa66f92c580a8571bdd42745a93a5b077f0baa52166ee7e2

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1a633e298d97dedf4d4b8f15a729a095edc9354d3f63c2031d771372fa9238f1
MD5 5ab9977687e78d6f3c8220fb13e8063e
BLAKE2b-256 f9f84c186fd55dd8633dd97ca04696b2e2710baebbcd6974782ad56eda163000

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 0b6ee76026138b16ca4b4b88f6c130bb5fb36b3af76b6e913cd879b6f1922c32
MD5 90b074bbc0f4be79a672e2b99f8c01d7
BLAKE2b-256 953452b4abcb0deb176733b4dd3b09e99f849c5b832fde18207905c46536686f

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1b7b08560fbbd29ae010b5572f5c65a288ebae3086829edabdac953ad189fbf4
MD5 4bf63f843eda50ffcb0c311979141b14
BLAKE2b-256 8e6590ee26bd0f6fcb18318e7ac552e409d899da511249bf946288cbf359a9b0

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c5c203c9ee221b2401ad6525c89baa25bb08ba173efb6dc7bc03c7f71a49a099
MD5 b6011782329bd6d4455689863b1ac6bb
BLAKE2b-256 567c7032bcc5f01b63a1d2b19613a2fded979ec23243c09340890f97cefe4ee9

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f18a7077de5691975bcc98b29686fa9066b5999047a806b0a4db30e80f0c9ebe
MD5 26c5c07642c58dac646bc9fda306159d
BLAKE2b-256 ed967024dc38d9e48a73f5cdac6c5d38768513e0a1adf3c2dc1a81fbf8486aa9

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48a5b0f31982cfbff9f0c3cb2443ccb52782daf32a6dc288f1c63c4e0119fef7
MD5 cb92c3644153f44de978da70d37efdd6
BLAKE2b-256 fb21684791eac018d44a872bc8acc213f13bb3b393e088318a4f14678d4523c7

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9162315f64c7aef2b4d8b2dee106f60104f70c9b662864104871fb2f529b794b
MD5 92f4f5145726ad7eac75b6f0e2566205
BLAKE2b-256 2c2def53c18feeb2ceec7b82bae4c62a41b110d3639bb1fad4f9247ec674fc92

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1fbdabd9f8bae7f0c831aa9f6e4e51bfdb48847fe6cda97ed44771678075a65e
MD5 d719727127d06989292113cfcf950038
BLAKE2b-256 14f905b5891cc5ab51d994be2cba30eeda3fd1bb066a6d8c32bc29dc1a812c32

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-win32.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 96097e5f51a8714b20d1df6c0decfdf3aa30a9523bcb5b56b64fbf79b4b69a29
MD5 d9813a1365603ca27935c31072826817
BLAKE2b-256 b33f4494f50926196b571892d6545faa1a3309c28ac22462be1323dfc2ed26da

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63c77082d128fdf0ba4fc5d8f211745a9f1f215ceb967c2a95758bd70a1733bc
MD5 aefa260ffc244d6065b08c90f1747640
BLAKE2b-256 fb617d3235dced25ad721543b9b3086741b687db38b155c42571bd9a3d65b647

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2d8a585b38308bf072d3fe39b90611330f88918892b178bec2c7d3a909304842
MD5 294efe27f30cb2441fec5e9e88cbb0f5
BLAKE2b-256 2f75f0ed3a9da1bc4bf301e7bfda43170a814cb561e455ea9f0bcc7c2078ea24

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b108b62e8a23cf4b4ebb808b35025474101aff2f13f50b76649b556663e8c252
MD5 6dc4ac0c587249fd5a75cad21f636c86
BLAKE2b-256 eb3af5c2871d9eb19dbb750a4b35685092362f5b3db662fa66690bdd72b64c74

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c5fcfe87cca6fe545ecc642213121e2af97f7c67d6995ba6d6f9bfc373a68768
MD5 13ff664485d290f2527806ef9be604e8
BLAKE2b-256 2c5f1510f4fe3a337ce9733644511a78530e15d5281126fac33de3111b7600d5

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c2c2de571e5a4eb97aeac1c722f133cbced9e14f53f8f5bf7858380c0fbe2034
MD5 b8aa83ec773f5b3e8841c7161939a953
BLAKE2b-256 859ed83f30c968b6c898a9a94d5e978f1724ddb2448805a61ab977862a9abe58

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 a49806ad16227e65e332d9806825419ae2895ee7faa734debb3fb8312180f49d
MD5 a1110c413855a512ce935656de5024ab
BLAKE2b-256 0f715ace08cd4e75d26599d0450d8fd079b301f403a7886d1c3c5e2848c910a3

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 dceb0c9e4b63dea0ea781aafcf3dcadf0178461701538cb646458bfa9ca37be8
MD5 4f6241006fa8df0a890e0296a69e1f9e
BLAKE2b-256 39eaf08cd45deff27877541b892633347379d72df563413b46f1096a03862657

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bc88eae40cdf17adc8297778789bda5689cca6770faccab14fe827f2c3aa562a
MD5 e9216f5c9786fe9439ec310dc3c74215
BLAKE2b-256 256e0a464f8d7423b5673d4d869eaf9899b2f6bcf99b94282e518e8e051ef6f1

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e36486fc48064ac3bc6029ff25226d82ab770e1e9a3320444f9a41373b6cfdd1
MD5 9939e49f7dbe11728e28fb37c26b52fa
BLAKE2b-256 304d37a5ba41063baaf9d29e0b5d8d6d85ee0ace3a59adc4d41bd2e60011074f

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec95941b706ccfb91b9030f387687cf5030abf83034b9281fd1fc20a7fe9d514
MD5 e4051063aa3ffa58c3d8c0a546f9de62
BLAKE2b-256 185a50c825be7abd2bea8e99cc2420000c38a37f76e8dbe95dffec4c8711231e

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 09390961fc72e994d0d1f42ae51a3099863a7f90200ebd53b4e6afca02f064ce
MD5 880505336bed15f41cb7df492eb6d403
BLAKE2b-256 97af0e5326ae596d7b9aac70d3c162f17df0419b652df161da15a9f75f8b48ba

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-win32.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 531d04a0bbef720c52369a65abf1e65d0999125d101e1fc1333dcf1b323485f3
MD5 926f09fa9cd58ce753e21bd2cc2e7fea
BLAKE2b-256 3dd2102574a57b10184396d82db7453824e672a9dd18370143f877fc8c5fd11f

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0a18ca7d09d3240e5ec8575466ca0d10d46840720c07e3f0732d2e04f9f01574
MD5 195204571117c12408642b1dee942a81
BLAKE2b-256 1618c82b99cfbec968740bd7b9bd160e8b1859047e496cb9c7c55a2847224cc3

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 06eb75260e55209fa09f1af07d073237dabc9816a389b2bb6f4e8053e0087973
MD5 8281b188798cf2f17a537351e3295b73
BLAKE2b-256 9e4f36136f8105de2b0d1f747a905b665d2730c94b040d708a583e1e25bf136f

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 57514bf60903c488cec279a0101a5b0c6aaae83c002aa80be8fd7eb96a24107e
MD5 3f0641de272da866a08dba05eb7766b2
BLAKE2b-256 d1f3f7feeb1204fe68092a47b3bb20273e84369299e713ef896eba41cd76abee

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 9f3333d67a90924e52eb5075d3177b73950be451dab32a596ad5c4a945b54aab
MD5 22a2edff39ebfe48d0d28c7e93354890
BLAKE2b-256 e2dd28ad391ff4e136f7fb7c0f2b5b8c7d5411efdb2f3462b7d24e9713a6c598

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3efdfb069cb52a530b0a680ecef67f10682e832f80f1db5f36c9d3639934b329
MD5 bd0452c135a124a23b3c7c36eee5ef80
BLAKE2b-256 9496da18b0165586798b73130077cd853d3b1ad3b07fe0dc0f62b96b47c738e9

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 32dda5e7f25a81bca6b4dfab65901a07fa01ea51745eedf9a1edf68518f54b9d
MD5 cff8d5761240045990050c3f4d38eb60
BLAKE2b-256 471d0374aaad7eb08a46a97c479e1f2ca73b6b29c7998e04cced1b0063b2caaa

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 fc62514f4491892518548c87202ea799e13a7a2d4960412ffe0b1c367dce1b49
MD5 7baa03a5df64bcfd7184099987de6254
BLAKE2b-256 31fae16f4128904b3060657609ae550e085bf317a3e8dea0d9233ff476db3c9d

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7a35dcfb8b817a3b65a816afcf2e02f2bff65a74d550fdd5e8796cb6c7027368
MD5 06764bf40c9d74d4d5ec1740bbb9e708
BLAKE2b-256 216bcbf7640b69ce5ff87e955104cd73fd7d530f31442a9290332400f9d5c9cc

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70f847fe4ea8af3b4a59330040367cc7e72346fbfd3920032f95748e540ddc9d
MD5 2de164ec71e3d4fb9d075f067a34882e
BLAKE2b-256 ff93403d54c9c3b1eeefeed40cff6c5e0a80e79a8cafb7febf94340b883093db

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46ab2d2053066d86de334f07b8d2c79f2df835285253cd042bcc738735bc4d20
MD5 ac49524b72699c68fbd5d76a459a9a95
BLAKE2b-256 bd8ec1fc5726630f62af051ee50f9fda2107e35d697d859e1e18471b9b17f5a4

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 929e8e41792120c97f34be43cc270d53a43164afe130655ccabb8517d4bc8d49
MD5 9f0fbb47f51696c6ac3197154a8441ca
BLAKE2b-256 8774b740fcd61b7b76dbe1ee4106f24a4511af778cef8e1f69d51ab486abca96

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-win32.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 646a31c859a50501d5a9a3ebf840ea353ead52c24185ebf129068700e728b088
MD5 4e7e3c98728c9b8bce8af5914da791ce
BLAKE2b-256 741cd60993578290e089d6cc121b47e20b9309b5fa342df215d01a4905a93aa6

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cc22a607fa0f24b2baa5e99b92f43432e8b3e917aa2e5e0b610538e49b24f37a
MD5 cb391debaa3774e2917ef0c19e458be7
BLAKE2b-256 66ed7ce7a0cf0693e3e8b53819e9b5870b2ff07dc314098ef37f158431c6acf1

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 39b33df4fc51b30d974694cd89b567bd9c33cd358a4b3864e97b5f9676d74f4e
MD5 bcb09259ee3f7bdf4c27f86fe34ac8d7
BLAKE2b-256 2c549fb64a58e8a5f4294109c01a90ba3da399c2e58b753ecd7efc8ea2824340

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 dd33593b23a69f515c968c79d35b8a07faa53c38b5d5b542e4e8bcb30ab4d4ff
MD5 e6c7173b5c7e68f3eb45b502f9092562
BLAKE2b-256 8145dc125549818857a7faf3380ec2a89f06776de0b6eadd54c5e6f7fdfcd0a6

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 64c325041ff45ff315d4d400c0ad154e361c9bb4d571f8f2477148d4db953b2d
MD5 5d2caff5d5ae643807b23521d8eba8a1
BLAKE2b-256 85dfe2b90fd4107760d19f570d521dc376f28d822b312121a9f8e414feb3e5ad

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 16915b62f8a16928477bd4f1a57c3dafb0c16cae8910eacba23ef6f6f036faf3
MD5 fac8f7752fadfd81c82a7628be8daaf1
BLAKE2b-256 15803d4c18115d49e34da2fd38555292b62acedd261c7aef8477883ddfbf031d

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f12bb1d2b5ab300c24c882ac98e544bdd9e119e5301d8e3ba34aeaee10e68587
MD5 73241af4b8250ba7cbe5e18945affb16
BLAKE2b-256 5c30d6ba12e9b94309834438d8132a70e5a69bb70bb92083da6ab0ec7281bfcc

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 058f312c719f6f759eed9fe194cbde9e0d18b48c87fae27ac937db9fc0ce079d
MD5 cb191083adfdbde977359aa867f55864
BLAKE2b-256 3ad12cb4b5c13ca789aed727b960089d97eb8b8fd9819c8b5f63882b1fdfda93

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a0bac2529e4716816969f343cacd1ff0fbf7a2fde15f083fea0f4fe77bfe6124
MD5 dbf97a5678a506d92ee5dd2b8ef70c2d
BLAKE2b-256 6e890e234322c0b3845cfada168e84522669f6c6b753858deb517d9e05e0b4d7

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27707791f61273843728da8d9db79b69590400df7e3f01ce92d150f64fc0a8d7
MD5 a386beeaad29a8b08552c6b7a18e0bf5
BLAKE2b-256 e84720b919a03c589ac7d8a94e63812cd40aebe173cd8963b251359d0b355996

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 72c0127f8a0f7a3f54a447daf3d4dfdaae6924d032ca3d77b85df7826915c84b
MD5 a393abd87313017e9f831b95d627ab16
BLAKE2b-256 de438594b2c091ee1ba53710a07e274a248fdba7e0a20de1a7d9e5e9b552f6d6

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf0cc89d947406fb504e01f0a8a5358c9502d9384e954187fa72e60bbc71e533
MD5 28e1eb1628e5c40d269e1922a0efe080
BLAKE2b-256 dee6f434aafddf8af396ce464001233bf45863301c6ff0775a0fabd5156fd37b

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-win32.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 77f4650eaf279129696858e8559c5fc8b61c7d97e69abc65e5ffddfe46d18cbe
MD5 10e5358cc39bb1716e6a8647365eddaa
BLAKE2b-256 0737d776226465fd26df61a53dbda03fc9cadcb0356363e7076ced06c1afd15a

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 89258ed859f7209e1474abe4d8bf3c8f06083b330937eac41ad2a157f4bca9f4
MD5 a4a788f6e7ad3bc0668754cd972da3bb
BLAKE2b-256 0868e6cf2eec8bd3d9e633c80a4f19e85b6c0cf270a42d61878015d1e871ea5f

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 134e71024596cfa30a4e3612927d6b9283aabaf9acef8215be9afd0087b2f3cc
MD5 568284542ce1e8aa1a8920d804de3f6c
BLAKE2b-256 a6f5583cb0219fc1a700dc47a4926ef473c28270798ad59547a5dc84e3f1b709

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0fafeb9fa3ef9fa99e106558d8f74801ebdce6b0f578597aee3a4b86f5688de8
MD5 3529029d23f28863450b5a230c87911b
BLAKE2b-256 84bf04f92d187bc62042962d2b4014a3881e241f5a0e49d247aadf625a211d68

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_s390x.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 067a2473a8390f84dab9b57e2126941a46fae8f3c8c10923d1b5f9b08adafb9f
MD5 fa0cd3f5699a7a56a9f8073e2e1644f4
BLAKE2b-256 1afd8c7f053827d43d07ce0d6de4648f0fafaeccffda083b4e869d6b5dacc18e

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_ppc64le.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4db491f326adf150ef664437f0f3b45895d1c390020d5875f4fd295607272753
MD5 ca8e04134e0e4719be5e655f8c799351
BLAKE2b-256 fdccf48f4701dc993b59eae9cadc748fbbb83db335454b321b7b1fc54e72f69f

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_i686.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 ba09117a8d504ba9a98498a40d92b7435973b9f27ca16770820f38fc5532cab1
MD5 a7c478406c8aea4b1e873f9d2a338830
BLAKE2b-256 0d47026ac77fd49c40b7026934e94364ac1637631a8fde3108aae4eafbb5150a

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_armv7l.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 1f3c4d48d8a7dd26d9fbb8bc01cff9394cf35340de5cf9c0ef01055e35fd24d4
MD5 9b00682039e4bf83ef5aeb783120d6a2
BLAKE2b-256 54465ec7d55c80c15ad67b4895b572bd6802594e0fc7727570f546c060a6f162

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23df202cebfe58373e91fec9ad8be5e3109ef6f74615b4e896bb21c37674bad2
MD5 5b0b1a6282ce667b092f042263a36d93
BLAKE2b-256 10579b80502e0ad7b69d5d37b096b99552715ef693b771fa1889c91c614090f3

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bf799f827901bca5ad0b2e6cc60878469e5ef363595e80d8a18d9e03e88dbfa
MD5 3253cd4c8493126eeadb074bdcd0cb0f
BLAKE2b-256 8fe8c7a2413e59f82d5319fa30796fd849d409ad8ef0dbd33ac6dc9ae46269a5

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.19b3-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pydantic_monty-0.0.19b3-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.28 {"installer":{"name":"uv","version":"0.11.28","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.19b3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bb739542e53b8212584bbf1b51f03a543d9d90c4438c143852c3ae050a01e062
MD5 4d5bdf3426cc8d33cbe8b9d8907f2227
BLAKE2b-256 4f37e1d994a0abc44b2859625db5dfccfdd6a081d131c0f4f4478d95db6e9a1f

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