Skip to main content

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.19.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.19-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.19-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.19-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.19-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.19-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.19-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.19-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.19-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.19-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.19-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.19.tar.gz.

File metadata

  • Download URL: pydantic_monty-0.0.19.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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.19.tar.gz
Algorithm Hash digest
SHA256 f3f9e256058b4085349dd4ad347795d5203a8310e9eaad9a2bff93890ac5b86d
MD5 dc043cb6b66e118ddb59e34854c48d45
BLAKE2b-256 51f8c04df414086488834d102ab85cf8172c114108f842fb142ac92a490213fd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 14ef37b43c5bf90966ca51bcad0fae892a3c2546cd151fadc039e0a25ca74073
MD5 c215a3f62138dfaccc7509827eed2a37
BLAKE2b-256 cc3e85e1a914f81659ea25c34916fdef27fcda2b00323dafb76cf2a5321f7c11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b68ef6503b39f2f014162e3d8e7f48b9722a43ceb7b6d7199dc6d545f4c37b34
MD5 b85c6027ed06327efd276ea423445adc
BLAKE2b-256 42f092f77cf088f1df72a5dbab109c8c0e82f7ddeb18e65835a8dffcf967bb4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bb1e5ee6762f9494bfb0f4cc316ad3e9a8c7917e3c984a23eb2e2322d401e5cb
MD5 33e32265edb200f140801ab30fce1272
BLAKE2b-256 0b0e7a0e1d5c016848afc9a8605aa4f16e6960d68806e775865b986aacaf8f88

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ffaf950f4284bb193a54f18fa4e3e8c225b5b52265813abffe492074e90c65fb
MD5 2c38d15a2c77a24f83091bc9ce19e7ef
BLAKE2b-256 0dd34367bccdf2c06a977c0d5ddf816190d570a07199f011034df16d51c84723

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0b2a34c320968a3cef3d933737e99c932f13c55667315128f366afdaeea2be04
MD5 1884669810b74a917534ce57c7c4307d
BLAKE2b-256 dff46f031a628d3de72d95bedbb18292ccf998d9a422aff58eedf37347a0b367

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4054610601358943a3dd740a8d59a6812cc682e94d6903cb72baadae1ef5d2ac
MD5 7866071a361b0d8ba3fd1a3c1e921bc6
BLAKE2b-256 db9be6685cf82521e68e0dcb94e0c97a1a20410b1266fbce7008c0caa3484039

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b43c4ffa5651f0eca97458dc673d7952064ae5eb5b836d23967a7d41483bb8f4
MD5 1c8abf579bb7ec29abc2a78b1da86ba2
BLAKE2b-256 2ae5cdb1fa761e992a489b07a17adb80c21bf99eabd1286ca62f9e73acda1f4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8b821cac39deeb1abb2994d5a65f117ce26e55c586d0f570d425ff469ff48e3c
MD5 c5045fb0a18a8060652959c21c248b3f
BLAKE2b-256 93a1d714258eeb2583acaab2035834acc54ac6baa65bac456f897d901bc0c03a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 978788b1c56fa0c49927e0a35151f0a635ef2f8d947d16915541ff864d2112f5
MD5 3ee8ef97e7b9c4e5ec31dd9c2b978c5a
BLAKE2b-256 9005f7791c79c7be2240c43a9287196ed49034f773e3f4158492f028e486ebc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 99f7282213ad6ebf7daf149a88d1517e6328afbf6780180512b9de62f30d292b
MD5 67661ba6d257039546e01a9a1f4e22b7
BLAKE2b-256 a98952848dce3acbb1d58df34496db3c4718814cc39f6db01a5025bfdc12b530

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a4717f829b35c4bc5d9f6f52a52d19b90729bd494bcb69133bd4c0afcab9c76
MD5 9f9088313b921e3c3918a9aecafa2e07
BLAKE2b-256 f5d0d4b44a81c71308109cfa642a24b803057615ca1609530c5e66c376780efe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2692dc4452937cf2200afd257297e9ac3ccff122b80aa7a69935e8275d684193
MD5 4ba880aa4d7f8a7a0a31d7b3e32728bd
BLAKE2b-256 eb11c2aed55502bfc9620837312f0e2fca7a3d4bc959824a66d81b72144d7256

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fd8c195875f8f44d55bc7d1d53c4e43248b184b3ac803d8131c92d4cc05a1aef
MD5 725016b966ce06b6fd4671a07ab3b1cb
BLAKE2b-256 f7d3b90872f017871339ceb03e70fa4915ef8682128a476a66adffedfff874d8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e43da52776796a894f40533a7e5a322e98d9aaf7d8f6fbb7dc21a0de60a93f41
MD5 384ca7a88eb903124922d92a55816ec2
BLAKE2b-256 a828b632fe0e8eeba3f2b4dbec6ebd4c9b569c20e9597007f2d0fbbf04101307

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3102b44307d04f41897ae51d4daeab4fc9b5bf84a78c036781b488876ef998c3
MD5 5564b1068693e9b40d3a33728921e8cc
BLAKE2b-256 485502a7059f20e7198e511ac0b88a3957a2c01b8991326359b7c1bb590a09b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6167c966db7d8d2fe03940f8da596de6dcd184dcf5cf6209f0a1a9af8792550d
MD5 50db0a5a1a1832b58803b114060010e6
BLAKE2b-256 974e239107b83bae3a20e4f5424f6c6f3f88bae1fd1e734603c298167985f8be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13a652f9dffa6d25ea458fec83108f60f29682caf42cecef91955b5b8cb04365
MD5 f86ff77c900362cf79bc2dc0aa383a45
BLAKE2b-256 84ce8c47253c8f3f528f0fa2d87dde85623dc3f211189a372e2d69cb6ad896b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 608994600a839dd863940ac84810c48d378390a4fea8c77e5145feb84037e610
MD5 52425cbafddb87193ee30a28626ab5f2
BLAKE2b-256 6fb4171be42e2ec211bd01fe4be7b6de9ab0c346081edc33830f9f9b781341ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2eb7502f93d8bb568d255fccca95e3b9daca05bb674b9c5323fcba14d088932c
MD5 ef3c9fe3e0f6e624e7da1e5f8cc66935
BLAKE2b-256 9f18559d71fc66a769c22f6b2a8470515aa6e69a141ab617900fe28a806080b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-cp313-cp313-manylinux_2_28_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 48f5ebc048779c854f993834586ba372df3b65500d1ed7f147023abc29aeb2c4
MD5 2c2021a794a734b260812ceaa0c3d6e5
BLAKE2b-256 da88b47670d3e28f99dc2f4c2686dc42233843dce1a607f3d3cc8a387f3b9b74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5a765a36141bbeb074d89b424d5488bed4e358c603c72606cc9d81ee44d83de2
MD5 0843e0f133e6eae0f1cc614ddf6d6a4f
BLAKE2b-256 24ece36ff1c2c97f46420d57680199e7ae2e1eb306d2cfda22be2448e53e7484

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06318e6add780f66259067829ab16062ce7a556dba0884372a881881b4a7c3bf
MD5 0d911c53f9ac6318d53e6a00df9f139d
BLAKE2b-256 5a89fb2ed1677ad2c3e2801aa119fdc280d1c64f3480e1015811e0942c9a7d20

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e97dc97de32410003fb5517b72ab47799b4546a3ab48a75e60260cf73734da76
MD5 8884b8576465f39dc9bd6b86432da07f
BLAKE2b-256 fdbac38f79e24971b4d2205ee156df6e5c6ccdcc720152f54a956cc26e7488b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c01fb1162cf87dbf145b875450eabfde6b35b26f27ed63468398cb4c37732064
MD5 e2ada4049d18fcbb4b765bf53e1cec25
BLAKE2b-256 24170926da051f34ccaa45bf528777dc99e5ea611669cdd7b715be1e086c1fe0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 2c98b1c99994f92ab487a762b107067ab70036f64231e05aa3f6d2b16018688e
MD5 21e43de7be4fd6fbc9ea9ede3f48d48d
BLAKE2b-256 20b71cb54e43113cb69c40fb765cfee3be1c222d81153b432131f50508569aee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 600eb259415e8b2dfef4be38d030c945b3fbb4fb85e727cb97131e7329ab017f
MD5 652c521796786ffd2f4323abbddb4175
BLAKE2b-256 63af58be6fd6ea87e27bd57435013ca1f63d645a0c990c2f23708bcdd048af24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ce15a5326e24cf7045ec9c1456ddb92abd09df91708771c3ae5e72d8e6374c81
MD5 1995d801f8df3bc7d19d640c2a603a17
BLAKE2b-256 ec09eaef87ed6cbffed9c720dd3cb850e748b0aab11f5ec1ecffb56250973f7d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4904785a34f71f59aa1eb6dc081bafd09e4caa2f028cd379aa3aa846b8a1c27d
MD5 78f6892954b01fd42df57557ebe2ce9c
BLAKE2b-256 9bccae4adaaf343de00748fc3598402c1523e48db7094a9c1e0fa26177699440

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d7e1a6cc1977b24e01b5322888a5ba3f05b112a04a1646ba51f2c34c562a3d9
MD5 f2059c1dadb3ab37afe6c4efe9970375
BLAKE2b-256 352d8c1492216632f53e229cb2886c7fd09613d5990f4856f93f7ae0364da9bc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 955d308171ba0260f75d2dede18c46d9732647f94b8f7fba3076bb539f155dc8
MD5 163667dced9e8eddddab862a2573dd1b
BLAKE2b-256 1ab1c9bfb6708bc5d9f6b040db46156c6e3f16de68ab22f07e2de4f25782414b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6fcb4e3a312397432f7c5a0aa04a765670d9f37f4e23f37cb580b3faa2f218b1
MD5 b915abe7e1ea931761b8cd42fbe6e569
BLAKE2b-256 2a974ff5f9170e4865ec28fb152bc6ebaa8bd1873e695ee98af2103607ba42e8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2b0f154ac2e6450befa337a99a8519e2f1195cc59f88bd73d780067ace0c4c97
MD5 b51a4e8b6f9af8ab1b1e93137c0c9cf5
BLAKE2b-256 7bf0ad64f4894334499f689bdce7e5b5dda6b680d98989424092dcbf21666564

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5fb4514d99a10e304237a82baeb6072e934ce8462dcd5fb5c3fea0ee0ef16aeb
MD5 919229262e396559f1f93f37b221c80b
BLAKE2b-256 212cc21e6179361100dd8b9ad410df775d176a29e0b85f2ffc3144fd29840ee9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5b6821c0035ff2c02cf0f37823fb905890f7238ce923bbc3ca937740f9554836
MD5 b529d6d7d1ebbd9564874207beec43a0
BLAKE2b-256 824f31732f4b9c2b6574eb564e420593b9be3f80d92440211970fab23e882bc5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5825ae6c40270166f0f31b6e62d59b0fe47201d12b1be5842efc22d3b7dadcee
MD5 24237a6021bd321a6922dc0bed9f4f40
BLAKE2b-256 46169d37f1bf94c47c593a06ecb918bb64a2c8a38af24d6fa2b0d0e031938edf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b073e64edfd62cca918d792d6fe559512472f981f949e53a7aec673201f5f554
MD5 8cade0e5546521871342d79b2830d98f
BLAKE2b-256 36bf152bbb3315dfa46d4e4aae71779230e50c67a34d859a3470fd75c01b795c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1b3a4db9b7972068dfa80c91f814318f2fd4102a7716420051c79178b56e4ad7
MD5 0ae24c1b7514b6186ce590867bb93b05
BLAKE2b-256 00d8ef1147a176b7ced141f878034ac7ede71b7af519d721c4b80dba830af8b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 49a979b0902eb0965521726e90826ff8d48fac5f51bfeda5e1b131f203c1790f
MD5 c179862e97aecbd8a38d77e39952aca6
BLAKE2b-256 b6b42ded2cc56c3d667fdc116c73e99176a588b212dc5a81aa84d8b9e2d72b23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a0c6e4d78af78b23521d9dc15a6c191217942291d357b4b80ad5234d51633cd2
MD5 a7686a6a4b176b476713340bb34f84cf
BLAKE2b-256 959f8f6107b2ac31b89539317d9054947fccd0a6ab7ff7f4e4110aec53542efc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 77884bf6047e6df2edc02089aa3b5f3fe0030028dd88ed61ff99d75d1b367199
MD5 d196d801deb761732d073ac0de74759e
BLAKE2b-256 89b4af66ca38439b2712faf186b9e0341f179e1dd06ede791f5ae8e0738f5bf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 655b09207e3218a356b5298ac676536e0ed80c96001b4619748d0722c5d4f55a
MD5 9a4eabd2057432911423c229be8c4d62
BLAKE2b-256 b6576129bbfa55daf42175436535984273b199cc0c290de5349bf1781d3f001c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 f6268bed8489cc8ff13c656c4ec7cac0121e58502e1519f1875cf21fa3f29f62
MD5 2c0adc1ff512283438a17116f1215888
BLAKE2b-256 7358c11eb27a42302423cbb9adfab3de4ef83d4d4a8bbdf07c9d7d054ba9d5d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 c96fda04408e01c7becb4a7918f1459a0d9d8d4a41e96f5ed846162d1e9f5c80
MD5 b7af76bbb6e32f68f2a0f6a08f92a8b7
BLAKE2b-256 2bc0b792e1d5348fb1ee4209c81800a0aada5c5d81651fb2c050d1b0bd19dbe1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 87d43fa5831a177513535f022c590561b38f91fadd535aa18f8e45b294d08afc
MD5 ec3f1f7607f766aef661f9eb4087a32d
BLAKE2b-256 92828b3921b23429f15d9dafda8d37a6fafc0b8240c9eedcbbeeac56da01fad1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d51f460ecefb77bc6efbf8a18ba9d63ce08fed7388fe5481d34c01210cf97c5b
MD5 69125bea92f8e1ccc1f9aafb2ce91544
BLAKE2b-256 f0d4893044608c29bc55eaf1001d419729c1ce36e0ba468bc5419c59f3c72706

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0e94031cc2d81a5e7923f38ffaa8e8ec3ae7f001a7fcd4bdbe1cbf99a048bc6d
MD5 893b804eb9501286a82fec43041e3155
BLAKE2b-256 ca146f3b9142345f7d7b23043f2bc2340e6bcdb5206b7e2c3e1e4e2ffb0b7fac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 472d4a775d71a8bfe66bd67c926feb0ea77c0a5ba515c72be21702ab96995106
MD5 379d341414b7f640bc5b1a6bdc5bc1b6
BLAKE2b-256 a17b8fa600ade713a762eabe0fd5915a60d4395eb75fd6d8d1e0e8e4487d67ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 435b0ae337f701ee83adc94eee6f2983378cb336bd8ebffa8282c74ea2b39d6b
MD5 99556ba4399c8e5b8485670958735f12
BLAKE2b-256 3860890a292f96f3a9363419ce01a89cc98be1f95115e6ee04010c8a8a6b6f26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0adcb51fd32e8cd40c5a57ec6019267d6fa63a6cac70688a5a7bee435b9df19f
MD5 c719753dde21ec66b9afc5ffad89ea93
BLAKE2b-256 5bf3f4a8d50a3e2fb9a95de7171036da9caecc700949dd889f019ab237f08146

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f739585b8b30cfe14c10914d9d5407d5e1be407f71b47bac9e7bf648ad469a6a
MD5 8b4c1300b11cf457da286ebfb36a4469
BLAKE2b-256 1622e9e4a5385eae8e843929443d7c7a14ca08a5e6e13aea2f9e90a7df9d9bf2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3516d03ff28b12e8e1312a4e36afb17021300bdf1ee2f1b736aca544af4731b5
MD5 d2ad9e5b3a8de6eadddae5c635201ff8
BLAKE2b-256 b3563f9b9fb4d0fb479ead5728703ebd2944f748e6fda3eb9a4e4f0f562674ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a83449e220075b1f447975dc43ab5b21aa09943158cefc507220a79862a9ba02
MD5 58b1ae8e741f41a4db47effd6585509e
BLAKE2b-256 7da2cc64ca2cb278ddf1edef2af702368d7ad91c2a3774b916dfd34a12b4af2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09e4de15c7b4c4e9e09f99f538fb15a00ac25cdbaa5bc5cb2a9ba03bcf405254
MD5 b28f402ed5211ebb71495fd715783a63
BLAKE2b-256 323a2d0a8d8605d2ab6e6203c8d9a6c648e8090f725b956fb54e5301d96c32ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e7094f92f033288ffca192e214c401e01cdb47d270076e1e0d8507e8426fd3ce
MD5 787db5583e86191fba3f96a93e653879
BLAKE2b-256 d80ea48df8d4f84a59b833da61040d6247c9ad173069d60ffb5ed0e576576f86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 eb40b75ee26204826b3201edbc20776f365a3d81c0824c9c14ad37deab3d8161
MD5 6cbe19f926315ba5b6dff39ca8428ec3
BLAKE2b-256 f12dbb6e35b598847ad5dca191485a4f88ddfee382e4731593a5d8b97bc6d5ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b2872cb5712dc4c5d0e4ced447975c331c8aee4a34247caadda22e9571ee3ff5
MD5 76ade19b452e1d9f815181f0db99ab7b
BLAKE2b-256 cc8b0faa9f1f0bc1598ddae7b67d08e4440f89728bfe4d513e6b99f036a8dd19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 bc3f63f356be4bd2f9dee27782a5c921d12720a407c5a2f51fcc238923745812
MD5 4b264031477a5f60fb9f76c6dc311f90
BLAKE2b-256 25914ecbe4498189e312ceaedf8d63ef244a85eca7e61d4218979a2545fa4532

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e1bda4fc890be717a18a49b35f96ae603da2bca4b91f9af035808387cbb14405
MD5 33124233cbd258678b5e2d3b5ddd62d6
BLAKE2b-256 bebe7536409aef31c0d789c5baa4ec4964546c4443729a88c847578a6df1e372

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2be7262da51c04da8f7229870f43c9ded11e03efff7679642e862d4d4cfe1efe
MD5 a1b6d2812c7329ea1396a211ea9402e4
BLAKE2b-256 1c5582270b373085b63121f97f11f81dc7ee0ee84b325e2e9aab29e263e0cf3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19-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.32 {"installer":{"name":"uv","version":"0.11.32","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.19-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8f8623adf1bf5bd037605d64b1ccb0949b3d25c93e477db625e170a01fe14fc
MD5 f9e049c1f2e471f16a2ed1b8ce3a28f2
BLAKE2b-256 d5daa8d30b24a1eba8bd870d3eac4c7e01945a3b524bfe6dc49811307dd55ac4

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