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_session(blob) (which returns None) and keep feeding. Both load_session 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_session / 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 (its check only runs at interpreter checkpoints).

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 (host-side mounts, 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.19b5.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.19b5-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.19b5-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.19b5-cp314-cp314-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_s390x.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.19b5-cp314-cp314-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.19b5-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.19b5-cp313-cp313-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b5-cp313-cp313-manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

pydantic_monty-0.0.19b5-cp313-cp313-manylinux_2_28_s390x.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b5-cp313-cp313-manylinux_2_28_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b5-cp313-cp313-manylinux_2_28_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.19b5-cp313-cp313-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.19b5-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.19b5-cp312-cp312-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_s390x.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.19b5-cp312-cp312-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.19b5-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.19b5-cp311-cp311-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_s390x.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

pydantic_monty-0.0.19b5-cp311-cp311-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.19b5-cp311-cp311-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.19b5-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.19b5-cp310-cp310-musllinux_1_1_aarch64.whl (2.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b5-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.19b5-cp310-cp310-manylinux_2_28_s390x.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

pydantic_monty-0.0.19b5-cp310-cp310-manylinux_2_28_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

pydantic_monty-0.0.19b5-cp310-cp310-manylinux_2_28_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

pydantic_monty-0.0.19b5-cp310-cp310-manylinux_2_28_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

pydantic_monty-0.0.19b5-cp310-cp310-macosx_11_0_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.19b5-cp310-cp310-macosx_10_12_x86_64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5.tar.gz
Algorithm Hash digest
SHA256 ab50fe597f8f357bc03aaac41b22d5feda792f3de3bad7081c7c74406409dd28
MD5 1dc96f363ac25014119a6fe4b8d9fcd9
BLAKE2b-256 0411858b71f22c4797379cdaa1abb9d48583dee7bf8dea32c20b52bbc388c5cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 126d39c104417dc997f392ac12585e2637c7cac0772da6ed3a3f39434e8b65bb
MD5 ffb2dc1c0930ade43d43d8bdacd17c94
BLAKE2b-256 987da2fc2221dbae6011824009b64461dd831f576bef4e525ffcb1abdd20319d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 e3d788a3e8987a62f9937994324abc6f8e91a8bb23304ca3c66660eb2829961a
MD5 5b3ea7b66e0d45ce580e859aae14b172
BLAKE2b-256 d42752f0dee4a01fd02f6df2cbe6b7842a0892adeb7598830cbe69375cdb19b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1b66dc1225ee6f1e7c893074fe5874af6b7d9ae9fcd147659e6ebf03961b5ed4
MD5 5f8025e67b81545c562362e83dab80f9
BLAKE2b-256 fff27de1c72ca558105fd9b1c455472fa203347e079448942fcb7bab40dac155

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4bec9e286c698d126085625d9c011de0a3eef1d8cf711670dfdc3a190e931a87
MD5 4bee0f9750c0b33c36fd7e90aebfefb8
BLAKE2b-256 0818fe069e8961bf5c46f6c5becb5e07e3380ccdc9f3ebea45f9e6496b26ed7b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2568207eba77e72f74e08b2b6f4c2e15d3e24c849b7cd0a0c20b7ad526e4972a
MD5 a5f7e3b50132a1af374bba8a3b6311d2
BLAKE2b-256 8704072d0caf7b2f045b9b4a863bcfc99eb6ec05763389410302bb1eab579c67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 978307f9704a0718f7468031b1bf3bf10ab724c7144dbd301d85c9e4660cb57e
MD5 9ef75caeec7874b88d4a65ffdba0361f
BLAKE2b-256 d9301b06ec70128c6ff9c498ece9228f30045f590a045228f21c0024b6c4f4bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 ac46e0a2a59abe539af684c25ab0c6706b464f8504b3389a75c21987899f91cd
MD5 51514fd5622af5074acea08b29332ce2
BLAKE2b-256 617b25a6121db11a15923294c6ebd820b4b22fee7174d02320937ca0fd13d5bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0c24996eefbed7400fab7aaf1d939198697da089a665eba4b1546c00adb573c7
MD5 3c127145a76b4e2aa2694ea2629b8d39
BLAKE2b-256 ae40619a82f5e417df829b7620968175d577a3789de512cb62951495dc96927f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp314-cp314-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d0f0f1272faab4e1baf1f6acae94afc17170afb8c36f8508082f4dd85d7669e8
MD5 f89a5f4d722bc20fe2442eb4102e32ec
BLAKE2b-256 1ed1f7e0afb74073a291b1bbe34a114d94cd51dd7dc072013b00b0d15894a635

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0b254feb25b78c0e2c7671aefb675017c9fc9abbd44bef15e1ac3daed47a4926
MD5 8344992fadd3c5f2aec074b7913d5f67
BLAKE2b-256 91a73b7591e7e77b1aab1236700e636796414a15a3ebee6df26a24cdc7f3a597

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ffe01ebecfb6208b0a930e026e5cbc1564450df5eda0b41500851613f38c86b
MD5 61c01f359891cfb04648ae54efa69998
BLAKE2b-256 1614a111978ea6de488d7f0e9ab4d94dd26d53e3da41717531069774cbcd05d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 50bd6b012c7689d4b9ddeeaee688a11673a6cc9feb5368c3aa66ad0463a3e39e
MD5 66e7df9f1e9a03cade036dfcaf55397a
BLAKE2b-256 4e3e40a1b8461595418dd697aa6961ea21c39c757fd22dfbe4ef50c208b86da6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f16028553970c80e843aa27c31ce65889dcd31dd15698e804f76ef3a0f949894
MD5 04b6d17dca5ae276c613593994a7a2fe
BLAKE2b-256 14a40e525d7389fe2b24dbbc72a8ae50a3fdf387c842d4aceae7caf00543a989

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 2d74be8c22c90346c20faaf300abb948c8efba93704ae23b421fc1b242b72dc2
MD5 56d0a0b5c25ff0e126bce933d5349331
BLAKE2b-256 cfe9fb4059f3b3a9dd3fbc0189a106c0fd6119a531dca8254b944c5d98ce8eb6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 406cbc5271f83c3106d7ea2776c0022ed2e0e3846912c4dee7a5876610ea3d57
MD5 bb834de04a238f65d05b7d97695d496e
BLAKE2b-256 56ef5bd0ddbdc8011445567d63e3cdea633654a3687be2bcc58da7d68f5c6c6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1dc869bed17f9e57e45a7398c63bea146240710a9f74b4aff0756781a3a27755
MD5 39d05a3f88b65996c8a7af5dbfd737fb
BLAKE2b-256 c411b015366bc2ca0a4ff5503ae876161613f8475599e46761e3cb05dd122140

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp313-cp313-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 527dd40643a2412148d4186b73911203f611f93b384c2ac43b790ac578991093
MD5 4b071c6fb4dd0d1b1f2f9ceefe1f1374
BLAKE2b-256 3ea13ccb221612a720bcc8155c3599147212841f0424dfd0ceb9db986642b39b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp313-cp313-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7ff1c1165344b147e9621f630a7213af770152e68418422c7481b0ddcdd1b5ed
MD5 aafbca6c44b4595d9a9a89fbec9ecd91
BLAKE2b-256 462199e58c14f9abf7b55549e964b9ac8b55cd6e1b12c0505ae76cb24fbb4f74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp313-cp313-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9839554f688a2ca62c5f31a52e7215e13d2c5acae0cd05c2579c012bfabc7bb8
MD5 0202d4906bd71b0ad16138a2507e716f
BLAKE2b-256 80e2ab3d1e63f092599bd620417c8da9e8a55b80d5582e1499455fd736df200f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 333f5f72a6a9bf87618173ab5f4a935f0286eb7fe45e0f811bca01b3bcf5e272
MD5 eec64af0f82fbb42346af075ca535912
BLAKE2b-256 30e782f174bc0608cd44047cfec2adc1d6769c10640af496704d870802afc557

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp313-cp313-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7258c4f5dbaf915b7024b21bd7898e715f6ada13e1ff3add7ba75adbcde99bae
MD5 012bf8ef73288bebfa945cf40bccd9cd
BLAKE2b-256 606c10d55da7bf0414f1180f3471893227458e58cf1f1504388b5d4abf2521bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b982eaf95606335b4690fba0c7f2597ee0002b42f38b318b98a8aa9eeb408e70
MD5 96ebcad81ba1739d172828eb8b92bf90
BLAKE2b-256 0c7bc0b5ea4a1b17cc2fdff0628f07a5c82739ce2e2d7f52cd2d2dd68dd5b465

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caf08bdff560a41bdadaa8789e639d3ca06c47567224c4ad52afa5f051675c8d
MD5 a94a12fcec1270ef640a7d34b177c153
BLAKE2b-256 bab060bbb8d046a86c17e86879df4efbe8f63a8cf859aab8f292b568188a76e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bebcd4d3e64608bd4b0012768358889e6054179ec2f578910c0928b2322c8375
MD5 7228d249ea5c0a2b54a3a8c446add128
BLAKE2b-256 3340304c52f101fc4090fadc433819b01cfb24407cced1b08ed3818b6ff2f73c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 dfbe10c175adb9c3123998ffc17c37a49100e9e34295e14bb907faeaf93b5dc1
MD5 7e5bcb578a6f85fcd63019db30b6ea94
BLAKE2b-256 dd5671dcc13fa2b9f6fd1d1121d57a25c4ccc86fa54ea013c9e7e8e24239a733

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2165afe24b00b5d6786af201095eb555218222192329751396d549625819cbe6
MD5 af429f4792e282df75d514ec54de2e2f
BLAKE2b-256 7911e1a4f14a03d642b59dd1a5dbe7f78be8fb15d196b99d721fcacdf3a624a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1db9a230d2df54ba0aeb499782d4996faee8700cd1b32b09ff3819582d793e7f
MD5 7bc34e9324126d63184ca8ce7a091447
BLAKE2b-256 774a1ca56abf0d0ac027cddffe1531d952363eba70fb82a376a86a43d95c0768

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0fb79775adf9a993661d12175eccb01ac92b39e43c97987261dfe74d0837e058
MD5 8942eb84c095cebf5ee7137cd6af56ab
BLAKE2b-256 6f9caeaa35858412d9fee004885eb4f995a5f9e5a099f63328fb594d78f9feb7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2ca0967d405fd9a43deef8c71b200b3cf84d78a4ddbbbd2e706b933c4731ca9
MD5 80bb7aa9e4236aad1fe951ceb58446bc
BLAKE2b-256 4c30581da093cc7ee2c4f0b26c1737a2673460b40a85a0100827a299ac02df9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 524101db311b1ee90436f7b126497b2a833a2ff6fbcd0dec237f996198d4a345
MD5 39fd18c9c082384f14cab82b96772c39
BLAKE2b-256 9ddde02d25a6e0a31a490a6604f26ce8f672d091ca00bfc81212d004ce8f698e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 18d8453e2351bd7ee8842bab3f447cbbb53d38fe630de9c015dab53a7bf3c53b
MD5 10098dc9a035bd14d9d4efd0acec35dd
BLAKE2b-256 cff9189854dfbf79844b7fe45e48f0933f070ba06e66d553b970cdbfa500f41c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d972f9d9f89005b9198f76b05ca3dc20a12bc506d528126930848334ec4b3f19
MD5 2ee4f86c807bc3a0d0b0fe6b8416b855
BLAKE2b-256 76c38c053c9943b6575468ea1164270b9b647d3abc67e036ab470f052ab565a4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp312-cp312-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3550ba3d0b6e7bc2e9286078a988ad86b3833729ba3daec91773fbc5de73a068
MD5 f32f018cd433ca4eca899d53e85c99cc
BLAKE2b-256 37dcd0a65c253f1a49c9de78a0b6cb5d4e7f9971a4a97c80ef3ced95109979c3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e94c850aef7bdd3d02ff6695f8fb765827d0b2c140e5f4a1010ca4d8a786f972
MD5 c5b82f8491784c5a9f60eeae315b1cac
BLAKE2b-256 114499e8755868210603ebc2ff68b16c053a551dce93043c6c4207723fff4215

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e77d235e4baedf7b3fce4658be8b33a85644ff82655be7c088b6fb693124219
MD5 efaf33f6f9e1e13e2f1b6b2d0db147cb
BLAKE2b-256 4951fd0ae1f5d2eeb10588379aa6dac80bc20e8517442fd77d6e3a70f9a5f78d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96e657f2c5a9326830b570efcc58d48e69704d3760eecc844b768b0d85336cb4
MD5 f528bdfcd833ad696c8d3a0a0d20449e
BLAKE2b-256 0d682283f302fd460af08e04db14e18fc5f47b8b886d56a2afccf59b18646e74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e4d501e99efd5dc6024b36f140846713068555bd7709d6769a9621cfa8176b1b
MD5 f930e6fe38496161e333190c4fcb5d7d
BLAKE2b-256 80fcb99e810a6ecc5898102f8d5d621c9a7a6472c10cc8b0f2fbe4f677587e4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b040464085136ebadbbde72e77402ea321637d86de236f74a6999667bb180034
MD5 fe51de03cf1ce9823ef5f1c3860bc996
BLAKE2b-256 02346912d852579f828d5728cc19dc1a6d1875b7a932de227b22dffba90c2b12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 97d029dbbb9ea3d6af82f5db610ed86cf9fbbf7b901d5cb69aae36abe93ea945
MD5 438c884b54e1a012606c7ce55db99152
BLAKE2b-256 b7ec86f33eebc95b040552d828121e316e682449f5e1b3dc5b2aadce6e523873

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e1aa4f4f5486e5b021bfaba1567639a76ac0aa68c05afab13bb85859b8042c60
MD5 c3accfb3c740010fda5ad059f7501156
BLAKE2b-256 16e88f239d2a129bcca3e2d99ff939c5d1e23c8290f188733247ad5abdc305e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8c83ead41d66b1779fb26546a602473f4278a563916fd49e76ff6f42aeb42a1
MD5 0c36bd9a639995a77e179ad003f034fa
BLAKE2b-256 007bbf7dfb2219d45923f225ff3debb301b341ec807c0cba0a070c6da6436fae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b9948313521f06b203e3e5b12d92c302c7a465ca315e6365a5863cb770f2611b
MD5 06f384d446fb4f5c588911d9bcac2bee
BLAKE2b-256 f305fec94451206b2bcfd10061bcb1cb1ee9c3461a1ca8b6041495ac64fe387e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 619177a742168b3b61decf5cdf4a98913ca9603a08369543073165921d76ba32
MD5 b2631d7bfb7103b7bbe429b7e033f7a3
BLAKE2b-256 b887cb983ac13cb12f20e7c227c4bd1502aef6a2cde8be7bd2c74250bbb4801f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 bb6a47ddc853f85828831b36ef9f841ae55297b2898fba1c44578da18d358594
MD5 ed0e5e546c1c1a4d437cba016e3c4cc2
BLAKE2b-256 187ff7bbbc99664386e58b5bbc4c25b76dc61b1626be4cc5f77a0694dddd9edb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp311-cp311-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 85377570f96c343fa4cbfdf0cfa14c1a98f3eb09061e52d4eebf95a86f2bebd9
MD5 c66d26ae8681c453a89062041821cf40
BLAKE2b-256 553209aa4295cba72a57350261689b572c4b1ef1b3f0af3123329816d708d03c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5ba9865030004bb11468d7db5d6c7408b6807df2469491d5deea4a02d37ddbb8
MD5 8d746b4c05298a46735c3bf89f9fd819
BLAKE2b-256 d3f93f858f6fe0cc73f0b2edc21c5691d79092ba604b1ec712de3fd22adf85dd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 60e02d6efd70c577d66dfdec5eadd04e78b960fa3f29f0f6fd6093d505a85e3f
MD5 9646ad957295fb5b090bf7f8622ea30d
BLAKE2b-256 92d11aec66541566259a812e9ed0b65cfdeb6323f12731544e72c8af26baf052

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 378c60ae41ee0faf415075436566778b6371e7c9e52a63865de52519d8471655
MD5 d5038b309773d3ced24df4c7ebb23d14
BLAKE2b-256 a14a26ac7ac11d6dbe027b79e780b20fc44d5ea2f14dc1dbc46df4cd095f4c7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb8c36c426b19eebacc8fb6dbd421c5e1cf5ffdf13011143ba31189fbc4ad188
MD5 10672209410c91c6fede1a47c4de4480
BLAKE2b-256 a3e247c9ff0ee372ead5ae0b89e51b885fa7b6a737952767af3c7687f1c9fb8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5392f1d479cdf50a38699892e2e1d528448db3bae9be8bb8861cc39035b8edbd
MD5 3d4a8e759a1a034631c62d93de846301
BLAKE2b-256 6cda91c1bdbbab65e0424b399a044ffe85161d0b2c294d047aff09f01221df34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7d6e3882b982265598373d86837e8e512316e8153e388b8592300aa786c5defe
MD5 2f86621765db9937035c1196344e6fb4
BLAKE2b-256 9ed84ae07180a2a5ec3414a6905aa518f81e57d653bba75061951b2350c3c17d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 01e1e2af9c1a16770ccb584b795f4f8a68b326edaa00ae39e216c755954ff6d2
MD5 e41c8e498d28dbd2ca4b3eb7c904d830
BLAKE2b-256 1cb320b842872e367ffa44a95db8c045d93579034c0f1ece3f3510fcb70b95be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f69f942a4cceb430d174fee92e8663b60ab82b332a48df89f1128cdcb730c302
MD5 589db3dde86e71f509576d5be8c42f6a
BLAKE2b-256 1520bfdf5882bc63d6ed4a8fdb3150f82dde2578557a9d2e9e1ea214f0d4cbf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp310-cp310-manylinux_2_28_s390x.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 31d3d8cc4d7b5834f805a932424ed2ba2668e10bf31d22205dffbf5707109673
MD5 4bbe4c0fa08268772b0de46fd7d7eb0d
BLAKE2b-256 ca22d7a37060b9828601362347a3dd333b3764b48af14ed7682799c6d347966c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp310-cp310-manylinux_2_28_ppc64le.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 49ffd9786e686e1f593b002306f4626b1581167d48dac4809e1f23e45eccf7cd
MD5 68f8ecfe5582851e698839bc7484db48
BLAKE2b-256 06c8f05e2407ba543693d153e786248b8c44eba11d164293faa0caf80a64e921

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp310-cp310-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 d7d1ee09dc4b413ccd08dc14f8d1c47089469ae7bd15c986f42725ae115faf89
MD5 49b9031afdeda165ba81e4a8fd3f1e33
BLAKE2b-256 7119d1f538111f04bc58512ed091a22fb6f08d678885a2e0b9e378760da7da84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp310-cp310-manylinux_2_28_armv7l.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 a71e20622f4d5c282959765c445c897257d716be7eba29be932a9de696b87f46
MD5 bedd3aac707f698b19933f2dcdc6844a
BLAKE2b-256 c172b047be5323404683d3cfb573997b97b9007cc86b45525d8e9c15d7a40eb9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-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.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 403443961a038f41bf51f0c5f89358ed5b9f881a7ff0a5e4b37d95849a70d01b
MD5 87a8032b53a39938c3ad9679bd2a99df
BLAKE2b-256 95291b5ef249ad4facd462461762fed17976342d5be97cada850df3d74d9ab7f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4704e86559de3a0ce9e738e266b733cc28899e3ad6ecbb9a05aa577f861a0755
MD5 344918550e62a56b733c033ec09bf886
BLAKE2b-256 0779f2379d957a52eae3e4f0dbfa6af33057011c0dbebdd3a728efff6116bbb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b5-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.30 {"installer":{"name":"uv","version":"0.11.30","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.19b5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 84211e64a7ef584dd80f58e1bebec5c11f0f93a47b38574930c8951f0c221c4c
MD5 fbe8a297fd972b7080b930aa679db81c
BLAKE2b-256 d32222837625c9b95e6d9230d33c94a66ad0b4baef5d76f9488edb628a787220

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