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-cli dependency (the same way uv and ruff ship their binaries).

Usage

Basic execution

from pydantic_monty import Monty

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

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

from pydantic_monty import Monty

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

Async

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

import asyncio

from pydantic_monty import AsyncMonty


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


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


asyncio.run(main())

Input variables and external lookup

from pydantic_monty import Monty

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

Snapshots: pausing and resuming execution

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

from pydantic_monty import FunctionSnapshot, Monty, MontyComplete

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

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

from pydantic_monty import Monty, MontyComplete

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

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

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

from pydantic_monty import FunctionSnapshot, Monty, MontyComplete

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

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

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

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

Resource limits

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

from pydantic_monty import Monty, MontyRuntimeError

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

Type checking

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

from pydantic_monty import Monty, MontyTypingError

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

Crash isolation

from pydantic_monty import Monty, MontyCrashedError

hostile_code = '...'

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

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

Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 003f720ab54d04048245e96e61fc72033783f46e8e0578b451bb1ab4e93d7db5
MD5 d1ca6e60c620425cce9c5f9ca009215d
BLAKE2b-256 9aa7485f131d5905e21a39fffad6d4aba653304f9729fcb4298803c93379c4af

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 338e420b05692698771087efe59660892cde49a7f03c7cec5df787ce5b98e032
MD5 7c593853121231dbf553444d34d15297
BLAKE2b-256 6ce95c3e2101493c7a6b437749032c669131f22b872aea8cb022f6e469a51a76

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c360e411c90016a4de1a875e45849775eb2be133b2804278e7af32942f2a8fe5
MD5 aaef4bcbe5906b483aa439b1471f2516
BLAKE2b-256 9242d3069ff7bfb6b1de759c228dfa14bd823094e2954f753e209edf91c0950c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e75bc484b614329e670f039317b8ac0f8a14af8255e092f12962606ecee5fed7
MD5 725169c9cab97d16a4e70a88640586a6
BLAKE2b-256 9f7b2b40c35f89ea0c6b189a35cccd6a3e14931d99b083cad7963bca72c4d50c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 00c88fa03de481b14743b2407e1d6fb014bf78a5b9d4ec97b5516b41d8943d6e
MD5 c4097b7a8d27763d81f6318058e705eb
BLAKE2b-256 69c339f7c4386d47056b9c1d2a4e7d24a04a87baacc13ebcf12391ef90fdfd3c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 98d44667b2127e82c313a7857d334e75b190b1c008e7cf68c33e9babb1ad4409
MD5 883455178af8e1f017dc97275373d71d
BLAKE2b-256 4a737eb0d4b112c59f57532d56d78a560acc15c1fc11527148eb050a21e2ce7b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 debb912282cd10fa33bedf654e86b38727651624eddb8104173af280f1123d80
MD5 3b63c9221947f79057e58d45dd57ecea
BLAKE2b-256 6607f214a1763b64f89611ebe50df089865db29bfe5bff802511e304a6ba2b2e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 cb1fc1cc4d44959430e2697fbb3ce36ae0429b9db4bb4f4cb2ae8f0653438795
MD5 5a75996961734d1d16a3e18926539e84
BLAKE2b-256 435448ba66e62bb62cabd09ca97d73b7b97013f7fe035c3bac4e06bb0273f00a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c08ac3de29ddcaff17003770cc3ef13073cd5fe503ee0c3050187539ffc57259
MD5 724b3e35817f477888498cf2c1269256
BLAKE2b-256 cafc0d1ab4f22592cae133bf818c7635f740f80f6ea43212c01167e65a749ac4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dccb8bde75ca31c8afd639c03cfbc346b9379b4aca63ecb9c96212245dc3f0dd
MD5 132fe46c45251a27aa67dc9b28ab1e52
BLAKE2b-256 94f1de192b8f2c871f05d3f32ead473d089899570a535b6fc17fc7e9b278dd2b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7af4de5f638fa926e84654bb756ea7c3f654190c3c326da16855e86de6b861c
MD5 df1acfb70a4aa142c197510d9a34fbff
BLAKE2b-256 ff57fa40602c723787b344b6cbe013fecbe2b66b942ca6fab546366754cb984e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88e73ac0a29422a0d96ee99ceb7eea081acea5a17495b9b566d025a645a556af
MD5 e63aefc95e6b63f97a648ea6fe7f8f84
BLAKE2b-256 5e48472db4df20699b40df074db5ef3182e48192a2b39ec1d5dc2a799c5a4186

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 827d3aeba83c958f65cfc372ec37101b3a5313a9778b09615c1e5d8699cc2f6b
MD5 2da22eb1a68aff0106e8530c89c66e12
BLAKE2b-256 2737ce8dc6d04b0680f46f0bdc396c1c1f116ec780879df6ba412a0565a4122b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6a0f9526b33500fe5896c5e2bae2981ef7a68454c4748742fe6a3082d578feb2
MD5 bbbe16a0e06038466c046ac1285d47de
BLAKE2b-256 03e27228a6bdb82016c1c633703290945f86a7a8f11eb2818d075a648f9b4d93

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 12caab6e79f5f9141053f30e638cd2ae232286032c5a7765ba345f4db03fddf7
MD5 6ba7be397a97909ed9c90885d78ad665
BLAKE2b-256 a3690a89c82c0c867e64d0dd4cac419bb020acb5a9d25657fb0c50ff64635ff6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 83adf95ebabdeadfadcf654266cfd8e3fe8a9d24451f4e3140cc964dca762507
MD5 181025e78a596f0a52bd1ec35d86cbce
BLAKE2b-256 0595076088eeb55b10b06622ecfcba1d9c2facc90a208d72d91e6f1f78d9d0a9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f30119398f45f59b3d20d92e058a23071623689e4f66a1ec77653eff39f1a8a3
MD5 d1c84f302c32fcbc7c505e0ef3dd5d33
BLAKE2b-256 ea11428393a2011a33880f29e78dec96343c8225037d590520bf3252d9114389

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 542525c1491ecc5c94b525dec382ca02341889755ae4fd3dec58113c916e8e92
MD5 74696dee5e6d60877eedad9a50187d35
BLAKE2b-256 4f09112240f02139fe4d1b52ddd50422fa8dd33ea07025560f9b28563975cfbf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9777782a2ae6505d17add7540e4fc6fad859a4df28d28db73cea79bf2fec99b6
MD5 7791e1ec2e998398d12a37eaebe3a8e3
BLAKE2b-256 f103670aeaeffbb57c6d491e9dce2e89dc896576e418431dbad769092fcfc1e0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e6e271287b67c772f73e46f2453356697fa609265ff335e907d8b82a2288ec9a
MD5 29beac0cf6d5403de185aa97515979b4
BLAKE2b-256 00c84424b2a331ca6e3d4ab8646e74d8b4b8b2cb3140aa454faecbfe60d4c65a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 3a8679cb059874e9ac3660a6696a3a989ed2540afb55aecd9e0de28c7e283d8e
MD5 1f4acd317712d5521713ec51af807f34
BLAKE2b-256 1e0aa56f3b089e5ccfdb54122575199ff11181a423c80385c68c916f608972c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cac3477be2b84a0153de66bd326387c04d18c0bf70cd20d06d9d4d73eb7049eb
MD5 454f58064a2be585da8faa4a5a2f759e
BLAKE2b-256 fc274462f69155034136a626ea700d2a6c265a4ed23440d886b99917b9a15ab4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64615255dd44ab7f9610f95c747380bc351badf61db499770bdc3022e397befd
MD5 fa255f828ae4d392bbd734e13929bf0b
BLAKE2b-256 fca27c99f22e7d7b8f4caba720106ce748308e318027d3f39a1f7f1cb37ddfe3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 99195ca05d0b8367d41ab2e7136ad58571ce0d79e3363dbf73b22f35a8d4587e
MD5 a58453c9f401e139f9b99dd9c81386c1
BLAKE2b-256 346d213cc5cf890f68ea55b30eb4b4edfb474d76382c248dd55bb3058c5c917c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fddfda580920f120682b1baf2ba16037770226bac4c245ffd852337ce1694dab
MD5 ef321409e4201e542ba71cb31ca10402
BLAKE2b-256 25da7e24ed0b78de74eb45f58adc25d54e21ed9b402df06ec81e94637dd42c4f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f40ead7abc1a94237c34c9e7c2076cb93b2eb7b863f548e3c9a243d212ea9083
MD5 8405e6be3ba3b00fb332cff46448bd92
BLAKE2b-256 4470e271390c0a5c61732fa054917b34d9c576bb3f83409dced87a3186074f4a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 da0073411f0e20106b872fb1bb8f68de57a0eaf0cbb3130c90ebdf22f11d48a6
MD5 23a6bea2e3181f2f2bbc07eebd1b505a
BLAKE2b-256 742082354cf27ad2973f7f4683771516512894989ff0ed97027890b119f7c4a0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f0dbaac7fcbdb583454e7ae4ba77c9499f286f2e8f792e31c4e6d1ca6888d80e
MD5 0a6a92634e647c45d193fcf3136955f3
BLAKE2b-256 944afaded418a5ea7a49cecc2ef438a50604a64a6f0c94a7b631a2435d2777fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bafdeb055a7136451ba8539c93fdf443b2ec6ea9e5c9e9451585ba4d74256a1d
MD5 3d0c708b120ac427da955544774d02fd
BLAKE2b-256 21b74a23f95d0c8a81246df56bd991a46bd04c75eeec0ac9874b31bad017b264

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 410437bb333efbef2eb42beceea3b279e121b12924c31622e2f7ca708c1d59f3
MD5 404a929d14ed70782c8f43865d377085
BLAKE2b-256 682d7ca65dafe1339b9c1c00073486c796e4d082712de456fa0052be8b7f07d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 713e1a9352e750c7e9b389a257d1f208fd262a31d0dd67bf390cbd9cb280aefd
MD5 ced0e66ed754dd366573c8300f00db51
BLAKE2b-256 001e9be48fefe4f6089b84b58a5bec3da5073844e70f07629b8bf6fac08a2e20

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9baa0c4b74b3cb6d611f431fbd6e8d555aab675d232bf07365f7da916fd1b378
MD5 f5841f1d7be9fb196fbeefc9ac69aee4
BLAKE2b-256 7cd975c4b747001ab11059b1070c039b36a493c7a0b55fd2004d3fa15a952709

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 55d7045e3c78a906e3e9a8c050f85c0e311475f462aba2e3930c531f096732ad
MD5 ba4b373dfeb090c840292068fe98fa17
BLAKE2b-256 e771c72768f7372320ed2a73deea2f288649350a5ff634c20a105a5cb331df62

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fcad804045a800d14b74aabebd769d56eddf119ef88ecf5bdbce31e8f9eb22b
MD5 708393970dc00aac7bd9a5dc676f7204
BLAKE2b-256 e668b5aa9ba6aaf4d988963214a26609f0e0e1f999bda07119c7abd492228287

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1664689f92ebc14251b9499f6a9a61ab3e25dd0dc398156da5bb58da0661215f
MD5 11283b94a7fda1289c32ad5235a3b776
BLAKE2b-256 febff0c261672149cea7dee6c2d402ca3051e31c4143bcae5e6d56bc8eafe831

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46dce3e6a8d3e38a2cd5b0129d01c3aeb4e370af324426a294634ab42387e00b
MD5 f02afd4bfbd7a3b54a5043ebe35aca4e
BLAKE2b-256 c39e577d71ba80e4240b6dd7c9a04e07d838bebf644e7f78cf738210fea6103f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 98152d10fd7b626bc8093c71db46cb61b25d28347e52b6e9ede4719630eee61b
MD5 030fe8a68b00384d824354c402e13f80
BLAKE2b-256 df373bad59b39f9285a7560f13ffc8e4d448054e9dc0e7202691e37c1e5dcdd1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a17e4a3fced404fbdcf3c5c987e66a320e859aec1ece9537e0245f729830818a
MD5 7bbadf24067c30ddbad9d93465769688
BLAKE2b-256 afcfbd404c21790c03aaad46728ce38c620dcfa24715f728fd8e1a7a8a4a8d66

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0a9b2e041108b5d2b13a515ca6a5aeea6af059db9f7308abfd1e9593afb7f53c
MD5 d59f92551041f3c5493fd09abb82672e
BLAKE2b-256 6ac872612a3afac9e1b3f4de19b9740b921286a48210b6b6f78aa0cf6ff7081c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 077a5523195c297f66414a6a31ec316a36197c2eed8774233c5a655f22cef4f4
MD5 a829826c5f3a12ae84b4015c6a922c00
BLAKE2b-256 8c776a623889f3085d37b4dfdf02026db64f08e1a7f13a2d758902b7d53518a3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75c8f1d975abc3df438fb25ff321600412410953180dce81d626a96567abc17c
MD5 dcab09be250bda16976c6cc4384368c6
BLAKE2b-256 bd8208b236563f41ea98a3464df2ddf40cc3eca4a33cd844794a488328d25685

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 b1df054584e2f503ec58ff737e998f523b4e430a72cacb644c4afacd8eb773ea
MD5 2736487925b4f01df8b9be0d836bd5cc
BLAKE2b-256 d1f352eb7c5e5d547907dc84bbaf54ed98685aca90dfc188ebd3885ea1c507b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 b5b2abab73013ff0e0e01a5c602a2a0cb35f61374a609803ffe632effb819243
MD5 a23b080a814042ddcaf66f09a6073421
BLAKE2b-256 90ffbd9e277382cf1b2504da5fe5feaeafe83138a53e811275b71c86f7f4b876

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 426fa413215f771d2a6f465e4ac0b3e830341d8072f7b527dd9130ccb84930c7
MD5 bed4d0a12e1ecfdd9bda182c7a7c01e9
BLAKE2b-256 7c2c1325b82055f659d218820a0eb243129251ede73eef36ec5f64d348cf1b89

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 4b8463a89dbc64a3b8d6937f006e7852444ad0d13fcb080f05dc848b80c618eb
MD5 70729a28a0fd69e446a2c6a1d158c131
BLAKE2b-256 8187dd22076aa1074bb34ae1c247fdd1f76f382b3d37a4c113bb8dbdd35462a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 73e0b0a762e4c02c6b3f8835c69afc366f202254333d8faff647c3b284399a80
MD5 61aa26f12a730d7db1d61670d377bd7e
BLAKE2b-256 7a7458e99b5461729692bc3e5122a883889abd60aa7767361d0f7b1c6aa4469b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b22f7e5aab2deacf514aee1872a85d176adc10a68c71bfdc5a2ec818510ee294
MD5 e6c3883c442c4aa1e2202c9c3de08ad7
BLAKE2b-256 c572c670b8abc32d466bfb2e05cdc16b8634763baea663cd1c7e10eaa0a5b402

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c62c826d1a808c44abee1304b5042b6960abbcf934e7dae41f4864c32aa78c25
MD5 9c86ced4b6e7275412180e8987c1d849
BLAKE2b-256 6b12d0ff6ca97c66e4da8b6b6fee06d1196b70b39a8309036f857dde4c67dc93

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 22bfcddf9721312cb7fd32c4eaad598e87f40a8989443854903aef757e3e8ff3
MD5 08c44751fcf880cbdc80cafdb175d40a
BLAKE2b-256 a1ba06927313fee8218fe8c6343f7581b82fb0329cf7886c969393cc180dbf16

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8c2d52f0633754936146829c6f8defea9bc670f28a05d7e21f7f870bb720cf71
MD5 b853d3a15f4aa3f163df6087b3c057f6
BLAKE2b-256 109c9d48bc1a32b3b79dfabd36e5e6c0ed67ca1ab8b6ad93a9596fc617d89fd1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63100d07d77063c3389dd267722d2827e9ae096d2cd75807f9958fcc81108d52
MD5 27fddf95341739afa7fbe7e3b3d27be9
BLAKE2b-256 0523a05f92297ea8198117b9c58e0b0eafc774cfe871c0e8fec9c9b4df44d818

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 70315751773dea652aaebb9a75774aadbd00a31a91c2c05cf144effe15a286cb
MD5 ba0da1c792a9df140c8b0dee9ad1d4e0
BLAKE2b-256 4603c18b87ef6a3328bda507a5a26eedd0a1c86ae4f1d1ccdff34a25c0933883

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9b500ece275ea10cafb4901a0938f1874360b60d1f3e9524b5f673876f393934
MD5 4a9970cc3a89312691ee28ba90a34e38
BLAKE2b-256 f53994fcf705d39c0e55ce370f42e433158e7479e6cd3983244e0b2c80eb8285

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 97e9a755927c9631235078c35e9b5b79f13311ed2b602204be760aaa24ea1aeb
MD5 c7f0dcfa8bee66d09670259808130294
BLAKE2b-256 460c08abe1bd283acb38d864e81f4581dfc01aa6781638a499e514eca5c30dc1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 51da672e7bd66e064e2fc600297fb09b5b06d11f4e1e0c9c74c386f82ecd6b38
MD5 6a4827cd8ab4dbf670e999b252ba6acb
BLAKE2b-256 0ef88e13863a61f9a97e4e879b19299c065528d937ee4dd12eca5790b3d90645

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 1c6f43824e82714137e37df9d2880771cd8023e1aad0c8e15e71bb796674c570
MD5 8cb95f379fac8b061482129ffddeff66
BLAKE2b-256 26906049014a127ccd8c42691820b5032f27aff790022c4083efee68a65c8d65

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 185765ea08e6f331f9dc8811421ad2f47fb150fe9d9ca6f6a69dd5611ee94a7d
MD5 29e71b34c957617f9ff91eeb0a7cacad
BLAKE2b-256 a65962dfa2f7a9ecf358ec8fe3fc77651ebbf748dbd760cb24c944e4c8e0ad35

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 15f4fd80c8ef275825ab45a360c7967b09f10f2e5f58f46861356e1c5c5d65b2
MD5 3e4b99e5e11fd8072d1fb76403cd2cb2
BLAKE2b-256 936a380b5d651f0a2125057f6b97664c61fcb77fe836c58f5609e1d1dbb314b4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 726665f45c9b51f8331ed2b92ba58490f3aa395c96e38a1718924adcbba213a8
MD5 164001522d0771e89a4f2ed3644acecb
BLAKE2b-256 832f6ca704bb4dbe856098ae9c26ef3607ea21b670a234f3d9e01846b6aefc09

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b078a1e6ad290ea401f66017492fac0ca5eb373a96d25532b70d208e9492a5d0
MD5 2b75739ecafa462c41843703bbfa62ba
BLAKE2b-256 e4d94676ad5d8ba84084e1a1f88b6083f53c415b912adb95f6000e0effb335f2

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