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.19b4.tar.gz (1.5 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.19b4-cp310-cp310-manylinux_2_28_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.28+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.28+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.28+ i686

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.28+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4.tar.gz
  • Upload date:
  • Size: 1.5 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.19b4.tar.gz
Algorithm Hash digest
SHA256 0b4e82ca335b37550bf45782ca55c8c51a5ccc09841ec71c9146296d7709808f
MD5 c091aeed61616e0f38294e35055fd6f1
BLAKE2b-256 4bbed11265ccd4dd6ab3001854f4a89bba800da9f1f45a50022c1faafbe99c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3128da4f79042a9a080267dc9d545a99f796249e8f3f3c898bd9fff90f4b6f33
MD5 490cf5523f15cf1f92499efd26f04278
BLAKE2b-256 3c27cd50fba81aede4b478bde3949d7df65d6071187490f57e0175a8eaf4f061

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fce3831bdc6df53d208b1e6c4ad57d3be6e4dc5a4ac01290590e1f49ae948c5d
MD5 d2beffb7e463fb3b1d7ac4ecce9f0d8b
BLAKE2b-256 8a190b76115b8a6b28915f50348fc19cd046a0c36ba6ccb76dc97792d4b27786

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bd203689e620a68b5655a192dbe21694144fd998aa9e698c0cfc701bdc883d30
MD5 9c389e43ea70b8ad2d04bb8e2857cb01
BLAKE2b-256 c1f224b1dfcf669761356dc20675f763b30c722c3b4f1c2ff63799d33bbb74d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 64e317d12aff1b5a9a51be8f410bdfebf026b226a7483123c948aa617248a014
MD5 1c3661390feaf3607f842c97508aefa7
BLAKE2b-256 bbf9c8aac68cdefae55224d4223ebb6944b1b67bcf05728a731ff6adc5c7562d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp314-cp314-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b1eaa227ed9a54916e599aba1a1b118d7f1e8b93e1270061d50e7b3251274e34
MD5 7f1b76eba705f68857ca9475dffbbebf
BLAKE2b-256 1b4e1e01b26fdb96419c2cb632d66000436d8f98376eb760b7e4b389ea5707b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp314-cp314-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 922c0fb6e61728e2beebbe03f73dd0419b8fd6653c6523794ddc5de343a9937f
MD5 65ae3c46cfea89b89fdcc6f33908d436
BLAKE2b-256 69a5324a2f2620f251f7b1247ee8b121719860e517d8174b42724b34abda8272

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp314-cp314-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 880c18c331f857d18fc92ecb53a6a283a765471058a3471637bf68f84b784432
MD5 e51bd15096235594d8aa82be958b71ed
BLAKE2b-256 bacaa6ea392cdd62e99bfebb7af1c5052d85351f8b44455f3b083c7681a234b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp314-cp314-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8a2501663ec1199601fcd34172ead3bd11c6fce48284682a5d1f1ebd760fddcd
MD5 da9943f1c6c04a98b3f1e1ceba187e09
BLAKE2b-256 2466b1656cac907ca286f32a618765f110a3820770f6ef31b7aaeaf4e4e01c29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp314-cp314-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 e37869b5759cf5cf501814a124840070bfb35458abf20ebff6fa8254690bb321
MD5 8665ef06295be3393173f3cc2e083cf4
BLAKE2b-256 885bdbd8c33592f54e147c8438c34e4811d43463ee8fb04412dbce308a6fde2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp314-cp314-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp314-cp314-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fd7140a9cd39d8308cd2496316c272a9fd4637bcd064bcdb932cd2dca1b24270
MD5 97af9c4fe61b4d142d1db97ea6835d0c
BLAKE2b-256 4a92c1dfb0deb56fe29cecd2a37c9ec56999ea457beded8ec45517550501ff9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91663216c13f3c71d9dad3e2269768296bfa89a1f43633e617748dd83d85ecd4
MD5 e22e612715df84ee0d5c0abb99e440d0
BLAKE2b-256 0acaff808b3d869d126ac9bc3ddf0f76c55863446c669d9d917eff49875bf793

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d931f42fdc8fa921ddf700ef2bf86eedf2a162823d8cae9afd3c3c53c3f6313
MD5 540bdbb8b51bb7343b54bd5ad80ebd63
BLAKE2b-256 cb09d868e8e3fd3f507dabfd8a28cf9da8911a7684faa4c57c6685c84500460c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c3ab0df93bf97e449c6124159ce842e6b761c3fc4f240d2a79cb5ee33eb0b786
MD5 6bb350501cbc1432ce6049fbbc62304e
BLAKE2b-256 eb62dbfd03175f1a58ca487751bcb3e4bbf5517bd5fffc91872fa8230b59a9af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c0205160ce037ead853b90e21904cc87e595caf03b56b0403ab5f4b0b6c948cc
MD5 f5c15c70fa49f02194f5db1ec99c41e0
BLAKE2b-256 641c4408dcb4288284c98786579010ca8f80404904f411943bc65c6dd875e7a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a75448a4527d0d618f4bae5c83be16e118536be597efbac53d132ff3905d27c
MD5 51a5e020d9958cfe2d1ff1894dd97606
BLAKE2b-256 2ab66b06c7692ec410e455fe294d1fd370df3a272ef0bcdadc57b0fb3ca90d90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4af1c220c786d0b0d39f8a06dbbafad0ba9a43e5554731d6065800fbce7d34b4
MD5 e701cd59035fd7974503dae568006815
BLAKE2b-256 89ecfacc2bac5a37947a2691f39630c0a53af090b533cb20af640fe45949ea1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp313-cp313-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e8477f3b57a887107db883da24ab71bea0c65b3ac3116d2955816875ea1d0b14
MD5 f2e922a09e8bbb60a1605649a3f2df61
BLAKE2b-256 4ebbe5fdd828a50931e72cc231d84b7b299c1f05149402315da596915c3176ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp313-cp313-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 da24f7921ba3691f4c9a4f2af81a738ced1eed00b41c1e218a7576da860e9649
MD5 f358ca7fb2687635fcf432ede59cd496
BLAKE2b-256 30bd91ae61b5cd521eeccec584857421f1f56860cf422ddc247e6f327ca81d90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp313-cp313-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 2154fba36536110055fae591507ed6f076ab4dfef8a5f98f0ab61ad73dc5f80a
MD5 4f9fd501a8b14a6dc72cec544cec6b96
BLAKE2b-256 2471e0857ab97e0b472d4ed5f9210abff6cf5e0c974093b4b2e9d059a10f9e3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp313-cp313-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b54b5a4928a01040fa43f103c7e786ff505b80becbbb7a8fdcf40ab1b9ded1c5
MD5 98ffe33f50d9ba0346835337bbd0948c
BLAKE2b-256 c61e2298483c816c89781a07e8e059e3e0ad768137f64c2d54815075243356ba

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp313-cp313-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d2c1dffe3e09b1fe3c93de07257bee04abd55148496ad75e8099f8250e934d67
MD5 dd3c0fe99b79442cf3159eadf417f972
BLAKE2b-256 cc8e5b80428edd6701538d6d484dbc81996a274bf1cb9f9fed06496fc988b14f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp313-cp313-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp313-cp313-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f051cf9042405ebe7f8fc79cfb6a625eb42227df2ad8345a5753471f917a101f
MD5 6ea1baca662086e794268f86b06e02c2
BLAKE2b-256 53439c85043bdba8b8a97e63509d72ef5ee6e958c80dec39fdf96107f646891a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f70c793045d7f8824b5127c32fe59aa3e2f44864b9dc7c83cfc96e41d259f94
MD5 74959a0c37fdb0462ad41059766e0549
BLAKE2b-256 7e392dc72f09e9c29bafff374337797e9d91ac106e4bb90ae2a08aa1a9bcdf6a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6cc6ed6c8d93b1880d0396902f26e98bfb0b6c5fd5f9b4628f28a9b3cea04170
MD5 413edb9e95e9b5bb46a06b88640a9467
BLAKE2b-256 055be1f36db896adb52e583c84de518e4a5ea18da74498210b494bd6400751ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1bde3e0cf1c4e366585c454c17e07b535fdd48e743e0683939c963dab83bdd55
MD5 99a62110d89feadb7e5ff7b7bb62768d
BLAKE2b-256 1a16a14bbb660115a24393abd33bd458f6649ec043b9476f37bc58a8898ac349

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 7f847c046f4a8cb5f7b48bdee49b1404962bfe712165b8103f3549043b859580
MD5 fb737868d5ac876f8e1a78e7cf33e098
BLAKE2b-256 a9bb2e5bcfe400805ef4ae553c1a4c7c0f96c2fcd69dfeed64a112085cd82264

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a77d498c595b461518b0eb91c5d44ca7a2ca042fe13d0287cb15300f5797163
MD5 ef7a24d99c3ee67edf51c035273949a7
BLAKE2b-256 d276d523225ec19784c5bc7c5237070bb872918c2f72b01f5ebab1f445743d22

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 321a37e5f265315492e9d626ea870a2fe4c19596f19d47e7d21fb7133b5be55c
MD5 6a58a554b8462f792fed0fae68eded3e
BLAKE2b-256 2daf7a6cd9a92b3d459dbcc5eb6876a3a3b5253c6bf071cc1f3e15266bac4b3e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp312-cp312-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 031ff3b100297375dea1226fa5d5f64fec96f3ffe8ab6947f5df936dea201cab
MD5 d184c44f9f58a207b4c5367c17a4c894
BLAKE2b-256 ad8ea31a971e0463f23a1dd8693c1bfa2e09fd10ba01fb0ea5445e5d60abe13c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp312-cp312-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 6399b862b3d0807af76698b41d8e8b917b854f9224a945983fac3f9e3088f426
MD5 0bcf80c179c47dd6362168f3e270bd7a
BLAKE2b-256 6a0f4a6d8ddadc6754f881af01a53285b445abeccec64eab36fded8725ea19e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp312-cp312-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 1c42481eacf254c37d18d04c7f2d2daa31540360860e4bdc1ec29efacaecf1d2
MD5 24d12f3976552201f080716876da0c43
BLAKE2b-256 6bbf1b9a6681dfe3e57a7a0abc4078e4c4112b90cd8d569914d5976024d65ccd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp312-cp312-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 afb239082870a9fb9264f5528e1791b2be54605a166f330f343aaa3c867d20d2
MD5 0887eff4ff3aac1b0ab1f9b064f0da8c
BLAKE2b-256 944b4f3aa9a97191ab64f48e9fd3624dbc3880e76d9ea127570f59601972e257

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp312-cp312-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 8c87524a6792d071ce07743b70cfa173140f3476ae88e9e9e3fa779d33178a92
MD5 af100298196433fc076f9a152a671652
BLAKE2b-256 607f3d010f5eb3d3b6619772dd47a8e7d20cd17a461c2874b2c9ca21fe45d122

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp312-cp312-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp312-cp312-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9d6a980a73d120e1f84290e9c4de253086dba68308d9691204da949638660cd8
MD5 e67c826f46625ffcc234698dbbc56a3c
BLAKE2b-256 ef82ea87bbd141b7edcead830825337dda8af8885bcdfbd4dfeeb691185e1e60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffd9add427239331f396589406140fd3a5881006bbfa94159ebd8ed9638d755c
MD5 fd040d23b4d67e039ca20f64cc569233
BLAKE2b-256 3fdb0aeae1e46562544d3a886fa78b6af9845ea8efeb45656f3dbc07bbd75221

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cc0bed2b831628a87d3e1fabd086d31d9acf6bc71140b1089e444f275c57fcd0
MD5 5d4cfd1fe90eb1715c5509a8f7f5ef8e
BLAKE2b-256 508e1929bfd9fb10f3b8b5707c5b7b382f0b77838188b41dbc9d1421ca14442c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8100cbeafed91d99cad0bf1453978bc64b0492f27d5392882acde818318e0392
MD5 eac3913cf2b05baf11fc6a6b5b8375d5
BLAKE2b-256 da61d1c87891860b726c57bcf6a8ae5b26c2d08d58a67472bf75fcc656301cef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 77bd81a6cb69ddf4a0ae9d02dd22f6bf71a27b967466afc1b5f9692750f3e262
MD5 ed35e25570ee6505e735d4a84dd79b8e
BLAKE2b-256 ade44320ebfce13f2b7807b371e68cd71eb021a41ac62295ce505d79b8af9616

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8bd0318a3d02f763b2f70ba35ccaef430771f38ea7f4542065898893863a1ca3
MD5 11dcbb3daed8c4152a8e999ad17abf3a
BLAKE2b-256 fdebcd2a4a73263719d4559fbf2a472298dd9770749a621a9dd26a29eb68aa92

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e577e6fbc881dee615607c9e3851bba7e473e8ea079788662ea54c9dbbd66874
MD5 9e29e5baee03f5a9a683560053efd605
BLAKE2b-256 6753416c971c3038d5e6743e12bbb7613e9ea3160cc36fa2bc7430f6307c701e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp311-cp311-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3e55d860f81b5547306af30687d225ebe5e6c7645960c078e64d82fda7c9760c
MD5 4a256e1676f0c6e67ea069f1693d7a0d
BLAKE2b-256 abd98bba8ae8f4186d054c284466b4d93df72827005363e7397db7b7e67b6375

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp311-cp311-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 1ac8ebcf58b98fd329e2a384823fd05cb799a7793fe9679184172f511e589ac8
MD5 b9c4a29dd65a46dcb8628c0c0404583b
BLAKE2b-256 c27913371e52cc472800fa582ad9b5fec32de9704f20b48b8be4922b4ca89496

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp311-cp311-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 9c2e21cc8a84892fe09f1f8b8b1facd0d3cf8d640a4d5072a6f37df165d2d404
MD5 1ce83c9754c1a75c133822b3f8ba63c4
BLAKE2b-256 b4bda04ebe4210d0c4d9080989f1325461b661bbaacafe1b96795bcb2a8b6172

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp311-cp311-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f170029e4a5351e27600923842be49b7731f3b3797732c25084b41c26aca72dd
MD5 26db34806caa4639c114ae4391438798
BLAKE2b-256 cfd86df96849d7938ed1066c46becbf6c00143e23b4cb61f33717c7d4e0456e2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp311-cp311-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 d52bf7b527a44653f72daf3407e07dfb937fef6df3aa3d783bff813ab0db1a83
MD5 953d5c2b48b2aa6a993ead15c88e114a
BLAKE2b-256 fc34afae807d58a8ff23a079bacb64136e3880e51086be299dc5a2a3fe9a9b81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp311-cp311-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp311-cp311-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 150c81fe41286259eee6f9e145060cb531d3cce4a30583aebdc9f26705ec7063
MD5 1f1ffd661ec4a34ceb9bc431b44a2f8d
BLAKE2b-256 ba6dc7bc6b253fa9c1dba4457bc829c83a12a62b14b84a124084401c189b0613

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce972dbcc81dfad1fe55a9627d5c9d4ce932f286510959fa9365b418794d2916
MD5 e9ae623bc85a2135acfae3a48652cdf7
BLAKE2b-256 6d2c3762e3724f96a9fb2c242e87df42e93627a997cbccff76adb917b869ab30

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a723d639303e5e7db01b2cb169a77a2d435e4ef699655889bd71fdf78d8a9102
MD5 a2109af8adee123b90407fe355f0a4fa
BLAKE2b-256 961abea2be7762c88520e8acc9d7a576a20d87d4422b6c0a5e86b0b31c395720

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e8949734eeb44f5da97624e2150356fb411e095135de6e991df2cb64cf8b77f9
MD5 2cad695f2e25a7e93bdd8648d8152e35
BLAKE2b-256 8e6b392c46e2de401da696c46e98b95b1add477638b83dd9a397f430ee6272df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 cbd3d57cf0a8e48f0a86c758c46b8883a28673cd422dc59e35bc8d5290546639
MD5 6557f51575dcc8ec8c1eedd724f39a49
BLAKE2b-256 fa83e524560fe303c41d5009911d770008c373906bf5d5cfda2575d287ad77a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 93e7c05085daceac552a5f60eb5e34c465df9d9de629b037496b3b11fc365552
MD5 5a5834d086c613278de221c0c3619b44
BLAKE2b-256 b5f7b6a1d4531501d2cd8355590227a8f02f6499738f0909e65a1ce8a011f3d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 af6084473654722b55a2e5407dc68c113b532c05a9865e64c0dff93b08d5a242
MD5 2c5de8afc5ff7e21d6ceed7c56e73d35
BLAKE2b-256 b205d2a97016bdbe6d4e6ec140e4bdf731eeda7e63a4d1dd87736cf36b0d72d0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp310-cp310-manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp310-cp310-manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 74c4ec84ef536a20d33610d47a37abcc4ab0e7a53421e9975af5b71cefea291f
MD5 9871408b72c503e8980e7c06ea34230e
BLAKE2b-256 ec924cd769ba27c4c22e684b972e6de68dcc2902becbd3d94f994a4c07fba657

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp310-cp310-manylinux_2_28_s390x.whl
Algorithm Hash digest
SHA256 7e3244a0e053784d591154e4b7a1006b15a841e6dc2c0f10902d8eaddc31f1e1
MD5 657ca6d7782b306e2af40c3b37df9d1b
BLAKE2b-256 a978a5dcdda35c463cb8698d79983073ca9b62e8363ff253249080dd1dbdb8f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp310-cp310-manylinux_2_28_ppc64le.whl
Algorithm Hash digest
SHA256 231405d3b83366475fa6c835c0be27ca9ef79083db633a4ce27bb557bac3970b
MD5 fa273bcd91f0715859561dbd2acb7403
BLAKE2b-256 68fb4a0efdea363f682a0b3e2edfe19560ff9b5a829d14de0047054544de766e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp310-cp310-manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 95eced70917091b9df3b8c5e117c1593fdcd34290a2e5332a6f942ab4c0b03b6
MD5 ceaf6bfca5e01bf6ab4d999d199fdd76
BLAKE2b-256 a2995dae31762d1295074e4af7291a514656c41cded56de44a7eaa06bdaf5db1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp310-cp310-manylinux_2_28_armv7l.whl
Algorithm Hash digest
SHA256 c40c95dfae09a5a91ff1b7c1456c79fd9c764e63e7aa3dd336f92c5d6701e3eb
MD5 6e3d9f6879c8fdaf13ede05665d83db4
BLAKE2b-256 a34f883cb7d32c536ec0a29f2e57958cc4db833a44df5add12e85ce0de3a03d9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-cp310-cp310-manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.11.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.19b4-cp310-cp310-manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b332463bb9ece5c3d8dd75b07e6705e13ccd14c296171ceea177465daf4b0c59
MD5 53e91a7e0599d33e52da726281aa1edc
BLAKE2b-256 73b1c4aa4093cff1513ccda746364518c980f67a2df23c861acde36bcc587fed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 162e7bd97ef09902167fb492f2d812a2350726d21d98839d68613ff188799373
MD5 5ff835f3b5fd0727fa5eade2ef040bbe
BLAKE2b-256 68d1fed13d432802ecade3a43524c9806699111965d7d383ed5b38e6d04639b6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.19b4-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.19b4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e66ac84ea512926d351137bf4fa2858625663a927bf97f50895193cba624a37
MD5 00989d0c55c807ee949c767f2e499ffb
BLAKE2b-256 dc0d68b5da30f21c2d88911cee5795f0a9989f6562e0e32003efafa0042c001a

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