Skip to main content
Pre-release

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

pydantic-monty

Python bindings for the Monty sandboxed Python interpreter.

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

Installation

pip install pydantic-monty

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

Usage

Basic execution

from pydantic_monty import Monty

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

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

from pydantic_monty import Monty

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

Async

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

import asyncio

from pydantic_monty import AsyncMonty


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


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


asyncio.run(main())

Input variables and external lookup

from pydantic_monty import Monty

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

Snapshots: pausing and resuming execution

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

from pydantic_monty import FunctionSnapshot, Monty, MontyComplete

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

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

from pydantic_monty import Monty, MontyComplete

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

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

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

from pydantic_monty import FunctionSnapshot, Monty, MontyComplete

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

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

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

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

Resource limits

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

from pydantic_monty import Monty, MontyRuntimeError

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

Type checking

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

from pydantic_monty import Monty, MontyTypingError

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

Crash isolation

from pydantic_monty import Monty, MontyCrashedError

hostile_code = '...'

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

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

Download files

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

Source Distribution

pydantic_monty-0.0.19b2.tar.gz (1.4 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.19b2-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.19b2.tar.gz
Algorithm Hash digest
SHA256 0f36c19fac0aa7ce8698d3463a43ce47c6dc001b11685702c4d6c5af0c7c65b7
MD5 0fa23c78b037d60f28eacd914fdc491b
BLAKE2b-256 9dc117902a027d40bb0e7033596ea9f25ba0f4aa77db157777131e5d5aa6a9a0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 d1a04c27a265b2d485d0ccb670ca502b79bac225fbd72db381a27c5bed7c29b9
MD5 5ad2004aaa8cc7962322338496a85870
BLAKE2b-256 698c18035a93cd264572097938bb8cbae938037fd1944e300acab53794f8fb1e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9a376905504989fdec9048297e98b9f520af76cf5c45e9bc67c64098a1aab4ca
MD5 3678be9024d5cf1b8c4170755bf462ad
BLAKE2b-256 08018db8cb2e1f8ae797579980835b0a91cb3f58a675cb8232c39ed59aff8a95

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eb1636ef872f4288b6286c5d76da2cd831be05f95213ddb8ebe250edf169b587
MD5 bb7b54bc2ceb2dbe1d46eadf6d2154af
BLAKE2b-256 c00f443929d8d7dfa25da17b5fa33ef74569ab42c1c65f5c09b7f14e407316bd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9508c2b7cd9ba7fc37c81cc828b6bf5719c1eda23ea46cee4c08ae870cf58380
MD5 0d11e33ee3268b00034fd562b5dcd3f5
BLAKE2b-256 c01c08322f9c110942f37cb5a62580427597fa1b9f2c0eb8a98b1fa224bb3a52

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f948c588d5f8123c4fe6c0317d436234cf713c11127f9224d9edd911d73329dc
MD5 844438800537fa7dd0c4de444af36c60
BLAKE2b-256 9187cfe9af4913f0edab7a07f2a5ccdc6942161ff7b3bd7c152f3ad4d598fe87

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 58090d2315ff54128dfc290015cd723f51c11d4112a7d9dfd776d0636c688e6f
MD5 0d64e43d565cb13cfd59f8efa51cc43b
BLAKE2b-256 e8d34e6b4395613e66ba361ecc6bacfe2343d9310ae84c2d62a2635263637efe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 4af1f6efe903eeff2619d09c32637b06dbac0be8d463c1db788b082bba794bc3
MD5 9ead05bb57d18cf85491d0e0e3a36bdf
BLAKE2b-256 95a6d6c2ae07f0b9e7d933f1d546e3d403b4cf78a4dc82f0347620657a360d83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 20a0589d6540d63daf045f7ecf752587fe3e6b5194a147f95a8752fb0c0adde0
MD5 d9f74ded647548d1808a7ea640c47ea2
BLAKE2b-256 37d0c9b9226f79c7792fa5a2a413bfa55942a62cbad1ab0efb69b993aa4a3a48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 74481668e451b719a67f464497404498382e5761e967fec49e891ed614a6660e
MD5 1fba69e6648d27c68599dc63eb93e0ff
BLAKE2b-256 74919cfc373fef2700b5fdc395a89d36c34965a0004c1b17afcaa9eec6569f5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77da89db9b5461088bc54fcc5608602c9c76613eec676635552f82419e44dc74
MD5 c8eaa93f9daaa11c4aab1d6d15f715d5
BLAKE2b-256 5aaf2e29c96ea7fc3721a915dc8ab5c9f6f35d96735ff019a179247d1536726b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0dca4f8bb1e53dc786c4551d6c27dd435f7261fee89c547820392d8ebd4f841d
MD5 730773d8478da2375380f4f5b595ecd1
BLAKE2b-256 cd0d9fee3b8cac2b02ac5196e7639017bc23ad65ec7fcf76f4c19053ba7cef5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 48aedbbc57ca5ada524bb177368ee700cf945459242e5cc06bb1d750b1ec83d9
MD5 2015cd6e4ecef01c464195bc63eb4f1a
BLAKE2b-256 0fc49ca72998ba2658bc89dd67f295d810c73568fcbf6923199eeb002ca544c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8b64565a404ac3998e7b359863afaf9deeb0adbe129579e469428f78658da81b
MD5 df618dcd12ea518cc0025c22746f5128
BLAKE2b-256 55ded79551c7b993bcbc770f3c9a3ac01d21cf167d3a6c401956ac8edae0cadc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0d5dbff7e538d79ccb9783d22f65e781a7ed430b7966bbe07773e11949b6a629
MD5 a3ba28395fe62634b6574fcb07d38b9f
BLAKE2b-256 22dd595dc34618d41cf2d8aa3e3836b32e444c4e76eb2c79a3878ee62592d546

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aec424270b8366aab78b7bacbbdf3764a5f248a55621df10af19d29380375d82
MD5 67fddd4c0096b58d53281e2655e3df62
BLAKE2b-256 0f66db606824cab0e7c7b4623f7d7471a16793917281fd6754ad3de383ea7cdb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2f463a5e0cae948fbfc6ebbcb9b454fb91ae967a2d5f3e80e30618dac9ae4aa4
MD5 52c6fdec90fafc9585958a7902ecffe2
BLAKE2b-256 32ee9c677fd13a0d3437addc534e1b8b8b3bb34ead47bff7f21fc5c228faefc2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 561ef5e33fb47457df8c6c7dff6dd900bfaf6756061e9e75472ea2aeede1373f
MD5 248ec0c759ffe6bada09cf26cbc62c32
BLAKE2b-256 8ba6b4981720efb85da265b6484110fa87f004dc7b6d168b52e79ab36cf1a1c0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 27e5107db60f4a22491fa03d59ab45414c7bcc170ebfc3ab862eba834366fc9e
MD5 a945f6fe5ef2317b9215af2a99d80859
BLAKE2b-256 ec332fbe70472d22f194991fdbd53a10c50f2ec51e24a36384f15a6993c3adc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 63a7335417e021af9ded4234a762f6e83fd4039f0fe2eb81c13634db3d5eaa53
MD5 ca306ac421eef45bbe20e5532a8043e2
BLAKE2b-256 7c1d1d58572d2f85c63e8a5ad9a56f5272af1c8366a2c3cb9a94ea745b38f34d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9e2c051c71183cd58ff23472d3317c57135bb03df58598859a7f497d85d014e0
MD5 b447a6d4ce6206ded34e641e77c2ba0f
BLAKE2b-256 b258bffb00f4072d1e850c3f47a34bcdd91774783ba2a43fa1e75a808ffe5cfd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 eea6ca83d905522c3003416faf661ba6164d65169a8cc3d15c6708dfdbb9f0c7
MD5 ca5cfc77de6dffca370af34a488c29b2
BLAKE2b-256 b472150316c42508f2ee35b84ea08dc5858055c69af38dbecf6cf217c6cb972d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bf4aabb16f89d2a100a4820deac575f8c611a9391be69720ae614a8fa556586e
MD5 8f6da5dace34a02e8d87b3840f78a2c4
BLAKE2b-256 3a93f5033aa368303de528d7af80213cf0ccf5ff1c8417310d36495a773196f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 734927ff274db0073851dd14c572d7a8e65345db5f4a9a6dbd3d66d1a712ca2b
MD5 1c63c8ecbc05e6ed5e4eca8cc98e3930
BLAKE2b-256 4f5d1485c9c57ff707b6e5dd98dc53c435b6dcdcf88cf80ade78352fbfadb6c6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 702526503fe46005a8d22384583a673254c0923b2d99873f3d562d9d4b78640d
MD5 4ee7ddaf19a5812fdaccf525bffc4429
BLAKE2b-256 75e5635c965c17f97982f46f712594586f0857a47c656b0234b28dc1fe466417

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 39e1c2b67cdc5ba80cf98f1893dfbf97a2ff1f8c523a3ee7e8ef205113c26bef
MD5 613d7a74443c5a2870d2140ffc077587
BLAKE2b-256 98c044b44a5f314f0a07cac68b313a03ab8a77cbc0b34cc47fb2fd3989b51ba5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 39441c4959951688d23a4af3a426b4b0549ebcf54754ec529f544443f437250b
MD5 9cde3cf2ddaa46ac8b308a773b1e3eea
BLAKE2b-256 32fe0272badbc0275a3f6d270dc67d9ec02dc05cd364b0083a4551f73791d1ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fbd7bc5343e00b2b92fd617c6407e6745e070391fdb83a85f1d105d23198655a
MD5 915e612865e9d3627aefd6a816e53c38
BLAKE2b-256 78e204dd2ea63dfbe143486a0ec85554c5576df0677567537ba43b42640082c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 57301dfaa7591215d9f24cbe0ad5ae9153eee2429aac12c909ed8414d9eabbb8
MD5 abbdab848b15789d88ebe489359d4782
BLAKE2b-256 daac56fc0711ed12f4f18ef16d72717f1a4d30adf3a3de04a3eec72b91e2d0e7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd24565d8f2106850f385f0c2a8d8ec01a33b0680089312f5111b22b8cdb452d
MD5 980c0074c2b70360cc1b35f51636c46a
BLAKE2b-256 f6c10a1e00e7c105ace3a0db97582a8f801ad828cb43348540f02abbcf4dc612

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 792562e680e955a1cb4cb0a78c7da880fd3af81b6ae9b9d9b2e95357d4c7253a
MD5 95dbf1bd90928397570764dd0c614fdc
BLAKE2b-256 8f03de45a49801b005338fe1765f9428234c49226031ef5c274782ea07750cae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 02a206fdc8f2e63e8338f652afb4ef06e350e21167608b9a6b456beb2d471365
MD5 d589460356751aadcb9695fe28500054
BLAKE2b-256 f43b354098c6ce56dddd3a2a34a41144a7993f822a7b6e4b888a2345cce00661

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e83289c06b1141c27cddd924225685e1dba3da3bcfa1477c85372ef7d9f6da84
MD5 250225ebd33f0676c17eba9fb788c41a
BLAKE2b-256 50d72b9819d1e1a28556e693802606d11bafafc4a7685394f40acc463a1a0355

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 5d5807af31318c511b7f6f228111836d68f4b08aaff7a1e90e2255566a6ad717
MD5 bee469a604fa43eb785f7162363deb1c
BLAKE2b-256 10b33e17bb8015b72166529aecfc635eaf3c31625ee2b96b03071c539b88e01b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b3825070ee41dd22b81794f3ce08d3658b8e03b49f9ed86b3b453ef2afde135
MD5 550c2d30367cb49f81c579a717acf5a4
BLAKE2b-256 7e5ab5b9fda2fd279252e13321561191ee9c2e83f98f72cb654f823eabf9ad92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac37b5938ea787880beb44340ee144f2e27ee116c9806e111a816590c0f8e6ba
MD5 84dad35ac8d4c1166edce2911757f462
BLAKE2b-256 af740c88e635eef2c44c83dd25a12d9004e05ff7be90f91b5610c7027f911b40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8a9f49c791242e56fe81ebe4f3f852eddce055cd4b6acba450f540de24d70876
MD5 fdfd7fcbe9c60469cc6484a4943e52c1
BLAKE2b-256 b8d8ca448516069356145a5bb7a5e336e242ae561efb4362d297e3a2c241fc66

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5cc1717e54b067b661b9a82b7b60d88c437678782531cf478294f65ee82be73d
MD5 c3244d898a8ffd7f9202142393b5f781
BLAKE2b-256 afb55fcf742b9c6656f36b5940e5682f7f4db85e1d82247c17ec96f0c38a2f5d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0be428276c0cf1f2643a2ccfe7fb43152fe1b909812e1f6e674cb8ace0871051
MD5 bb8ddd2165f15ec8cb95b02b03322416
BLAKE2b-256 03dc688a1ded7916e8ecb6b67d2bd82b781c54a9e11e67badc5f88361d96d8af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d9951b610a22fd13d6a79ec8a91fe3cc29f58b2741b434a923dc285a3b3d15f6
MD5 3f77d6756243932e339e21578d75eeab
BLAKE2b-256 91299d4f348c6af59435f59d87e59d52cb245de727019da3090ea09d43fe1e72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0d29696386b07d7d65c2e90f3bd0f7a8d8b34a4cd5fad55bf720435126dcd080
MD5 dcd469be3995810c918226ac64aa0b51
BLAKE2b-256 04e1965f585f59303a1b7a40341e164dd68ab7a2741ee04346f7870a83c635ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 97257256b2d5e43a3d7ede65579b999408de075ccdb627d92fabad8a5e63ed1c
MD5 8919c291bdf2398c9b35cd74c99fa58f
BLAKE2b-256 62bb8b0627a2449689dc2079c00a7fabfeade9686cda037998cee49baeaa96cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 576b8c84754b448f8df4378c93f8f77a26bf29c0de4baf264c2bf8258998bc6c
MD5 c72dd56a87ece78d42eb030760ac5858
BLAKE2b-256 cfeddb40a8d8274b288479e4662b12dc99a0556f0ab6e21a2e944acb7aa4dc9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 5ab13f04475c00f63309122f69ee5c3bde8cb33c5ff48b318946f94f2a0a92f3
MD5 98dae0aa7d42d1c580ef8f8e84152ef3
BLAKE2b-256 742337515cfbd406514f3ca34e6216d14084cc31ded685d29254f9be9c09ac24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e5bb210ac64a9fdb4d5d0b50ae6d57112a90db475f313bceffc64012f0f97c35
MD5 5f279e822d676cdf3c42b23e02c7e19b
BLAKE2b-256 c5c51e69161b243c82d818775bb691695af91a25d18fcfebb44e47c722aa4d41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c490cfe8b08c82ee820d063e0c333062dd1689ea268bb9adcbdc1e9dbbfbe559
MD5 a2b5109551d987a686632ac8a86a8c8b
BLAKE2b-256 4bb22d6ec748a8f77ef8aa9cc24fc14aaefff440e1fa845f62eb2876285b7680

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 453ecce961d3d8a4c1f53ebff05a2fd464a80a9430f96f898d44ce284a8d2529
MD5 6f3544fbc3470ec2c16c3a296d094c36
BLAKE2b-256 1e104693e87a377561645551a0c4b8e3dc8ea34b0b9503db974ae5419f3f110d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7e1d64289a1626462cb8ff22e9db09d767f8c59603914ec72638fe150645e6f
MD5 a6e6fbe065ca66b70ee86f1fc646d999
BLAKE2b-256 8736d9ddb9fe15262627c678c50b44e73f8cfb0486eb561eb40c1a74bd8e7c5f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 759e5931db639691093ee8289dbc0964d5284cec1cf50b7d31bbd0bdc55ac215
MD5 961d2319b9015b104aa52dc544e514c3
BLAKE2b-256 2daf82527cb35cd2917916b34e407c4b61eebc56a50c3c9461dff790ddde5f9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a386be65a5ce4117a2a954ba1d13906a770e4895f9ba6c82b327a670a80b589c
MD5 6110ee9c1ef123362c54c4786ddb80e2
BLAKE2b-256 307e0007056559cd0fa69e9d371f3c99f2c04f9a7a4bc73ef584a54c0cb0dc71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e9abab59a591ab1d6234c1513a0bbd49fa1ab7f6bd9e633719f967c5d0e2830d
MD5 7eb798def775ef5addc376e19a38e149
BLAKE2b-256 90ac427aea75ee5d0dc190242a2aa1ff332d4af977c2116dde02508db63b0e9d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 86c54a02f64ec491c253d9e20e0c662e75974476ea45e027369d8ee2ac989f54
MD5 7117c64d7db0534e2b012ebcd1f8312b
BLAKE2b-256 0410a3fe8b3551066124c5c450dcddeea6dcfc03d5390081ed4c340e5fd317f0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b0f93a56d10457e70e3bcd7dea6f1c7a5d4a7ee082434c0b4a8b92d8ea7ea971
MD5 1ccdfbbdb25fc99354d4a36b15dc54c5
BLAKE2b-256 7b330c37a9b95210210cf646ebee68fa7f0fc4d2f62b018a9265edce3fcd7e33

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aaef867981d08209b16025ce0c8de6e0d4b94116b6aa61765c13592962ddef22
MD5 d679b2f15b3a17cb1ad9bb438da0654c
BLAKE2b-256 9f1639eeefa65767621b9e15eadd29a5911a467e35fd54d962a721f08bf2c474

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 c8721dc1cf0d5412c2da91e33a4c55457f956c6072b8a83f5d8aacdba2b8b82c
MD5 469f3dbaa80821d0fd5f13986398202a
BLAKE2b-256 88443eeaa1861f93ed37b808caaa569aabe76f9c63a400466ccb97e93b12ff29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 f78e9df4778543f4bedee3615d3e735c8cdeb38bf78bc83d238ad52a4471901d
MD5 51575f4b54637cad88ffaf14f34c8bad
BLAKE2b-256 50285a49e94f0168ada65a6695765bd310998e95643ac577fa544f0da43a95ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2cde06950eb3240b9f7b51426f396554f7954a55b31e1e5db2570d71e1177b63
MD5 2d84131c1a6f27c576a17ab533eb55a5
BLAKE2b-256 3f18d6db3e4c58d724799e7df926c4d7eff8c30a9bb117adbcd2b376ac19e932

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 707ed9f72ee08a8e0b9a163b431af1e189e5c70127487ffb8eae8de913cbac52
MD5 bd86f371a49c3e5eb2d7f20f1e7130b1
BLAKE2b-256 8cc182993978ddc1f88b5b6dc6bf08248800054ac9531e20d73c71064e0531ae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0f680675d3e7cecdb1773887976f91bdf5979c5644a0c9e368fd7f0724a6b385
MD5 31eaff2c84298b8e6552c84926a9e4e8
BLAKE2b-256 cc4c340777c5cc40f1ecd5fc17df2a2aa4cdda14b0bf8cf62e834630e15780c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a41b3087610a97c21152e86dc1bbdce017d2cac93cf635af23607c859a50205a
MD5 17d2aa8137611910d817e79063488854
BLAKE2b-256 746c8531579c9dd113ea5a77aea29650f2ba59c98967c8a898460464f82222dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b2-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.19b2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04c586223bfa1148ff18125c1d0170949ecdb7e9d0da97a3e04060e66c68d4da
MD5 d661ba8ea993d1b1f4ee6ad9183a81ec
BLAKE2b-256 61d54fc9214d43e9b47b7765c0fca3547e5128b4b7cd621d8495f1f0f823ca50

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