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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6.tar.gz
Algorithm Hash digest
SHA256 7005585ba150944f2110bb192387879b081ae552484122777c9ebf071f9cd212
MD5 c864f88175f2b8e5eb6eccd004f16912
BLAKE2b-256 0eab85c6038dc2bcfc720735b6213845db8473740b2ec3caa30894929fa402d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4e601f6476a145d500ef070f4e49cc3822a71c4d15bc29226269d73b85bdd490
MD5 1fb5325c900903a7f5fc9d245ac75895
BLAKE2b-256 3aa3cf92679610c93b186f5cb44ed3a751467997e6dff4a1b9a9419094888263

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3995f40c4229d2d18b7732127ab2ab5a56d7a42a2a05c8f159c05c56663d345f
MD5 62958253d8c5ce988f96967a97f4bc1e
BLAKE2b-256 09ead56d2c5effa0617ca670c92fd3d272ae23e7ae810615c9fde46ab9ba6a12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eda25feac052427f8c79abec65809c25e042992d5930a26370dc451c5953cf3a
MD5 223911f699670a2bb813217d4c2bf491
BLAKE2b-256 01f9f353fa9a6e272d3824cc1b766d4905452d696a2743e2aed97232045d04fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb888071117ad421170fcdd65a3c5f307421d20c06bc960d9967149dc232ecca
MD5 acc3eeaf5f4d932a6e9ec24fc95241da
BLAKE2b-256 86188542e8dbf34e58d0a738de0efa667b9b54982168d8bdf438d0634ef025f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d64cffc93c2affe5364757b4f0fc518066e7810cdec3b4d3e19c008700dacc49
MD5 a1f279106bdff3cd05b57736166d65b8
BLAKE2b-256 3b44ff88b44722b21fb2ef5cd6c1ec5e39e7b69373195fd921bdc25a80955b07

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 d832ccd6423d902cf27503336b0fd680569d5c66e49c9e6b0d232d510b17b828
MD5 1fd356724d4577fd93eefdab54bd9d33
BLAKE2b-256 9e60b3ad9b7f09383c12d60db6884f0de16ecf22be0e994038ea9c6b7837e523

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 6b78930e8e63d9d455e025115dec356fdecd788a22e40feba55f42c3e4e0ff9a
MD5 14be0480c6d82f56315a9d38a4871cef
BLAKE2b-256 be17fd0b491c6fef5427081abfbc4a5030a895f323157c06bea8bbd6edf4a180

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2c586a5c17bac893b936bf1dded1ead6b32adf9b11daeeed90613bf4a10b127a
MD5 1a65f8267630cde38cd7a30e551b7cb2
BLAKE2b-256 384ecdb113377aef1b1a39526cb0f4192c05098311851975878146865d230211

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 9359bc0c741cbaa1975993bfc623cb2788e8a4c9c9418b5fca4bbcccadb9c1d7
MD5 da5acdef915e2624a05e8094e09ec604
BLAKE2b-256 2ee47d77d03e5963bf536be529e501b3cf4ee0f7bd74be5e7d42c626634822ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d343dca9f17d5c3ffab8d577faad085ee41376f6be2296c8d8550dfb3748dec5
MD5 2f0623f6c13fa6bfda6ca1e4be2eb88d
BLAKE2b-256 a500d19843ae348a17709a9c86171be28bbe1642e0a421e7edfcf179237a060f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2edbc891b9901126edec0f034f4cc9d28e8c55e980a94a29cfb343f3cf81443f
MD5 dd9bc1fe1f441435dceb882581667e54
BLAKE2b-256 684850cc1ab9a4d6f79a553a6b763e3493d906c04260a4dc335ad25c6b74c01f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fccd2d6dcfa5c62221f782fd9bccd0417360f7bb673ea60e519896a33d8aa46e
MD5 9df6cf3a80c762f06780a3a67dedd3a1
BLAKE2b-256 ee51dd650608aef8545c55350e04247c0fb391dbae10b2ff3b25f71f0f9d0e40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d3b53c240d5cb98fb1ad18e6a450205ab003afe5b1b0c030c56e0a2bbaca4c1f
MD5 454db405e7f427678a974ccf2f84df21
BLAKE2b-256 605c3c6c59a09a71743eb133f3a4fa2d473faed53b0af386647d67061fb42e6f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 45f17845bc8cec0ff83d8ab4e8be56d2ba20cf720e7b32d96ec23a3a85f8c1eb
MD5 bb1fb3daec188dc0f0ca86f9cbe45ea2
BLAKE2b-256 752f2e4b2b6e56e36a8f2b37b27feecbdefc5f3fc7e06c4ed8742b709f1e257d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f572b44917a2654124ab772a4ffa7bbb7b799849abc774fc906a8441a20f0382
MD5 a0efa7ad90c50d313d6b1ec7d88a43bc
BLAKE2b-256 8d30c66488c7299173ae6ff840a46e9a1bc3aa8564d1e2b27af3a9130fcae6d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8838bf81d8b7b4eb214fc00fdb352727daa0591e6113b65db98702be61f077bf
MD5 d0444f73ced72588d0ab95c648d5e1f7
BLAKE2b-256 31e17e6896cf4de65c208b252ce2fd44357327e83b1d0496ae226d50fc30031c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5a9826903bdb5368f3c4430d0156a604e2af1608cbd2bedc8f7603045aeb0f0
MD5 fc8df408e26cd86adb13e27cc974a16a
BLAKE2b-256 9e388958e1497f1317fcc1f583479cc73f2e4b8c591ece9adde6ea20af8bf873

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 0ed4a6e95e26bae6abf91e67302b08c5122c19ccd48fc9911d383a5e563ce3ad
MD5 9b8d56dc92676fc0dcf0275d07a07d29
BLAKE2b-256 ac216ac332249cfdcae320039f8ffc909cd09d2d3e7797b5eaa7ecdb4df3fd8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 3c1bc9cfca04573e7f8a7b59a7f817e6f63e6575d7c99354aed12ae5636624d2
MD5 16bffe63ac3db781c928520a36d253c1
BLAKE2b-256 5f5194a0d422c6b2f1a261523fbbdc7ac3711ae27b2e7b9bcbeb21b747106ca5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8eac49d8856c31c56d8ca1dc7275e062b1f4904196297b176724cb87d308b22e
MD5 bc394a15f0a20c64039b621a75432798
BLAKE2b-256 0596e1a0550539e5de62394e57d09ef9f74bf2c89c8ceb483771181f2e977b5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 0a371406be6ce22292a9a67eec05587af1d3442bd3b20294a1fa08e4ce03d30c
MD5 382b1fe7082d3a3d7e0a83350934a134
BLAKE2b-256 7bc6d733bc803feb4c96f3827ca18fe374b7f9b85630096430172823a9d1af23

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b7587fee04072d96ab9da2ea5273bf895d83e3afb62b119b7d9fd685b4be56c
MD5 cfddee586c693f17269114ac63c423c3
BLAKE2b-256 5a602e2293a755d055ba9b3a08e3efa18f0c56fb33ad4af54e22cba58c7354b1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9eeec17c5415de8716632c5e97f16a0a462b10894c0d24f8a7b1bebfcbe4953
MD5 345df9761ea85df36820dadf7ee482cf
BLAKE2b-256 847b4de499864cc0e29a412d1bd3884d0cf2e3fee960d3feb1235d90178ccc87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bcb3bcfbadff3e525a767ede1257cf49aef935d91b64233a53ac3b9d3abb92a3
MD5 a1f7ab26403a560926f0d2f9507f948a
BLAKE2b-256 a9fda52803edf7cdd55cb43e225606d5c9a52e597e76d9a17480582005f256da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e07e3e7acd71ec1a56062600ec753d667725fc764295c5ee9cc68cb06e1805a0
MD5 5bcdf5b007cda0b7f604792eb25d638c
BLAKE2b-256 5827df316c70ad9156818bf066d70bbeadaa15f11a0a7e24997edf8bedc55628

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1d1fe6388835bb77f0788e0046a45307be4e66350c34c057101c26725ca380f0
MD5 23803235ffeca89b6c94b841bc3e9e57
BLAKE2b-256 52e4e29fad1856d3cefa6667fff515fe653bcc8e9322364ccbdf2be37d797eb1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3572c11a5caf68b9a50ae0d134c343a91dc52b25aa4b474abe9dd5a6c0a2536c
MD5 e42d679ae95b729b99052d29f0d0ebdd
BLAKE2b-256 ed63c378b19e8bf457b7536cf5163cf19d3dce2a457068d0acb6c691dfeb25ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f58844deb1a5f34b2454bf154c7f61822ac618757eb799ead64610afec87fdc
MD5 51f62a9622899bed8617ac08b507caca
BLAKE2b-256 d7bd4117b870e28338970b1c8e8631459c2bda2d3d2c3a9f73f3a4439a65d90b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 da7eca5c7e327af7af0a9cbeaa9fef6e668a4811ad04276e93b71bb227fa2ca2
MD5 5f59d3cce13797a8f96f2975bca832e3
BLAKE2b-256 4846576ded8d7f4fe3396c4af1a448b85f1992f2b123c5c2b0414201298b9064

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 fddd0fc57533e45ca07554491b845eb70aaa4a3c5f48a00e9b50f58530faa4d0
MD5 213a4cf89fde1f6a89e8eebe8f513abb
BLAKE2b-256 a3633043fb379b23028dd2deaefe0fb379375354fc4d23a6bf078571a7016d5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 09335ed18fb7bb356d7d56a078cece07b50af03eaf6cea7c24e3095c22b16723
MD5 18905ffa0673613c19e03cd08a86f528
BLAKE2b-256 836171a55fa4ebdc4858bd45321b90b1aa93a7b9becd422d4fab844dc543822f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7c8ec99dfd809db37bd02b8b5beef0340c5457549b0954a5b9ebefe64fbd63f5
MD5 c7528d8cd8bd7f4e79f5a8669bce77bd
BLAKE2b-256 41b45c7c55e6f168fe3758be813c98b85f0d646bcdee76bf66249236814dbe56

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 7c030f0fd98d477c7642da5ba7e45a6984d6104bfa6cc6d41bb8e95d91f78475
MD5 762961240de8c7e2124016fbbcb0d19c
BLAKE2b-256 5f5edbc6ad2953afca433677d97cb7e2b2b4d3e96292a65b3a7fa1886b96e528

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ab4c258e79881e8a4ca115b2bee92a86ad0a6276ad38a834955f7009bc8ef180
MD5 bdca81852330465478a61b5ce3b42312
BLAKE2b-256 927594882c47c5ff9346045f19185db0888768ab0f4a5cca2c56fc49cbba8a7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 df1ac840a1219557bfe2bd5a35d8742909a759a40d0f5fe55d8451eaf8bae4b5
MD5 966e7f7836d987a79a55fb9da2d0a19f
BLAKE2b-256 5aaba60e26e4cddf1f2446e845d3d261caaa293da254169abf60309252c4bba7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ea9b901d889865d4b593f5390cd73839d2acb38c994b0d0af8e6467f9065977
MD5 af3b30ad83052e15987d68656fb9df0a
BLAKE2b-256 7d0acb248c97f571d51bece9630b1c1ef3e25732b384eabe15b04140e9f7ce08

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a5ab727946eada8c938dabf4c95f841bb851a141089b0c34661df7252c8db6f9
MD5 97e11c516bb2a5187fa16326f871e253
BLAKE2b-256 220c5a548f1b978f2c7f7f3b126c20185c1f49d057824fe63a9db4ae7eb45204

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a2f52d46b335b73fee3ed34ec4bf19044f3b9f3fe4a662d8000e93f300c90468
MD5 883ccfa2213d6e6cf15b1de7ab1496bb
BLAKE2b-256 002a002c8e44b7d0727e6b0e69802a390c1ad6f762c9357fdfcbec02e27e5635

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ff564aac15230daf6b3353c26df712ae373221208d358ddbc98db895a045379e
MD5 931019032e378fa452a7f6857b49c8ee
BLAKE2b-256 c2da6d03200047a9f2ae242f9fddd38841a91653beff7f7122665e3d366db623

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1c9934494898721996f0e7a2e9e60595efe17da76e1bd18b6063315407a9686a
MD5 bdd3ae8db14e3276c1d2e2718a799409
BLAKE2b-256 632b9bce9d8a8fa3cc0d4d4446fcd3876d70b58e60001f40e6c1f6e51c8a172f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 db172d886bcf1f1db312b4a76559fb1be7d920a11c5cbe837df2bfe91f7fa7b0
MD5 795508f60b1c2b3eaf4cfc1099314124
BLAKE2b-256 1c207cf19dce4b6d3cc470ecb4c899d63318a2d1910bfc519b4e0a2e34315270

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 4dbbc73e939fe6c097215e5e3401fdc1b278b8b0e830ee0953ea4030adf6465f
MD5 64f73e2f8c76ea4afbc62a66ad669318
BLAKE2b-256 2f371b1825aae04b58cbda4da881e0e6a536a3a4a7d6c8f028b6662c11d765ff

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 eab454eea5941d44748ebe5e047f37e458570f08a57b6250e36b48611a2dfaff
MD5 42a50a10f610094efb8224596e3c9d7a
BLAKE2b-256 87d5a38755c75acfa71232a29db2363e44e1d95aedc4955cba37587b4cd309c8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 7ff8e59d2bdbac3c76a1624e0144b67c0cadd510dd8cc1c2085f8771474c9184
MD5 ac981b4bc20d85cb779542cb532be6de
BLAKE2b-256 36171239f80a0892703bce3def1a508eae66cd79e8172b0c86157903f2993f74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 57b9dc18afdfb02f879b0c8bf14beb970eb8568f763454d1188fce8be7945b20
MD5 f0afa05a86b91aa3e0fe7486d76a6403
BLAKE2b-256 33d54c538b7efaef3391606d82500d1272816027d3e36b56c0412fbe79f87a41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f16189d8c51bedea32b27499539e8b019e1dc0c6f759f1b6aedf95784fdc98da
MD5 f00edf4c9aa98a806c572aa2dbf68a1a
BLAKE2b-256 28b77fc7c0221f5070b331de3b296602c3ced6a0b04bdd6daeb6473808ce742e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcb3f7ebef852d85e25885dca9ae52f5637d71f6ff4b09cde14009193e23f8ea
MD5 915103a08641219be65a7ba7c6e81bbd
BLAKE2b-256 46f8e918aa59778491f587931423fa6b7d4535262d9f41e910f282ad26f8f3f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c57b3ba49eea7b0914e7d6700e432b996d2b47c55c9829f5e3eac94ec49be117
MD5 5cef2f6d0daad6ec95c7549eab13877d
BLAKE2b-256 c1afff3497ae8ac453b4beea4bd6e3215274391798391f129230d777b1ad3de1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 016fc908a529ef030cd85106668c6527e73f3dd26783d4e439d73f3786f2cca4
MD5 a2f3e9c8ed30528f6fa6cca4162a1aa8
BLAKE2b-256 c5a3220d27e0cd1bfaa2b66d79e45b2ae6e4c13da282f23e871b8716d8efafe5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 76c75a1bd2e58c293cd0844932850ad1f1a1345f172f8f54a4a7060c620fdf8f
MD5 3f539f9c8594c2bd25dbce3f914bc187
BLAKE2b-256 4cc7ed39883b7084f4f94bbc850e85cbd5e861f592ba700beddce4e8eab1fa64

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 424903f3ab2c8f2b63e5e4e21f497343e6d15a440eafa7496d85ff245d8b3e4e
MD5 9a14f08fe136d79273dc6af6684e64c3
BLAKE2b-256 187fc95c358d56d152673ee90b8a18f33cd77924aa5e8ace8ee076f38674ba73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7aaabba5a88eff27734f86cbf0456c0730dc3861e325d5ee9b4049576e675079
MD5 af5ef6ad5b3626e1cb971c4e2b522f03
BLAKE2b-256 2cd8259153f5266dae991d4d222c99326c7397117a0a2109a28fababf5c78216

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 815a636801f19e98000136871dff197054a5c61499dba0c54e024ecf7de3fec0
MD5 bf701413f1ba550ddee172a088525911
BLAKE2b-256 b149c6d17e92888743cf8df03c5ef4f87444aebeb52032ec5fdd3a77cd32baaa

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 e9960e810b0e57a5fa8153acd759713258ff65f2653cdca873888958e152bf48
MD5 19be0806ada03a5739608cff24f9bd18
BLAKE2b-256 7eaa106530b31f0bfced0818de9baca1edb9429d4e5876e9cada04eb7eae1226

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 02ab83edd32a43da81fbaf82ef795fc2865b0d88354fb7a037488ff1ca37796c
MD5 881447d1a2b9169d458cfd80d1cacc12
BLAKE2b-256 2a74af2656af7e00407bd1c1aa3dc1324e3bc6a731f38e67678db07a79d92c30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 c4083f53cd7bc0b00ae7aaf04a6ada087683a6194dd07a0477f693a4bcdd451a
MD5 40a35a64e43441ad3b031632270a31c5
BLAKE2b-256 da9e6d7f111132d08f25a4196cad00ff597079675bfa68380b312eb653ae1adb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5cdc37f14a9552ab11a2b9e743a3a13e442f3ada36448e58649e7b7d506a0c88
MD5 1a3a8837e67f932e5144f3100377f0af
BLAKE2b-256 f03f8b89ccee38c81511379659357f82cceefe56c40e02cf971f4861297e43e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 576e99dc2f3943c5df8bc0c04cd5dd58209ddd7d85fcc002386f23d070447b71
MD5 3ac121f2f6b827e745ce486b9a4174f5
BLAKE2b-256 806b9c91f03790dcf9c474b2ebcddabdea382cdb78143a9034946e0d47c56e45

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f8a76eadf2d1911301ee76c48d46287bdfda37e8f99ad9feb1467d579b6be0cc
MD5 b2913f8c255eedbbb436fd2f7ff05485
BLAKE2b-256 26c0d39260f74941c8a364a4e8ffea6d8aa9b551f4432c49ad350daeaf8a68ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b6-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.31 {"installer":{"name":"uv","version":"0.11.31","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.19b6-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a72d5d300e67f6f699f4b42d9ea8ff8dad8396066de5ad649f5ccc34c4e34329
MD5 f89f0e67e55cc71645fe261d5b0d625b
BLAKE2b-256 aff9da055ac7595f1da1236facd343293aaf8d7403b81d9847260c79dd96cc0b

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