Skip to main content

Python bindings for the Monty sandboxed Python interpreter

Project description

pydantic-monty

Python bindings for the Monty sandboxed Python interpreter.

Installation

pip install pydantic-monty

Usage

Basic Expression Evaluation

import pydantic_monty

# Simple code with no inputs
m = pydantic_monty.Monty('1 + 2')
print(m.run())
#> 3

Using Input Variables

import pydantic_monty

# Create with code that uses input variables
m = pydantic_monty.Monty('x * y', inputs=['x', 'y'])

# Run multiple times with different inputs
print(m.run(inputs={'x': 2, 'y': 3}))
#> 6
print(m.run(inputs={'x': 10, 'y': 5}))
#> 50

Resource Limits

import pydantic_monty

m = pydantic_monty.Monty('x + y', inputs=['x', 'y'])

# With resource limits
limits = pydantic_monty.ResourceLimits(max_duration_secs=1.0)
result = m.run(inputs={'x': 1, 'y': 2}, limits=limits)
assert result == 3

External Functions

import pydantic_monty

# Code that calls an external function
m = pydantic_monty.Monty('double(x)', inputs=['x'], external_functions=['double'])

# Provide the external function implementation at runtime
result = m.run(inputs={'x': 5}, external_functions={'double': lambda x: x * 2})
print(result)
#> 10

Iterative Execution with External Functions

Use start() and resume() to handle external function calls iteratively, giving you control over each call:

import pydantic_monty

code = """
data = fetch(url)
len(data)
"""

m = pydantic_monty.Monty(code, inputs=['url'], external_functions=['fetch'])

# Start execution - pauses when fetch() is called
result = m.start(inputs={'url': 'https://example.com'})

print(type(result))
#> <class 'pydantic_monty.MontySnapshot'>
print(result.function_name)  # fetch
#> fetch
print(result.args)
#> ('https://example.com',)

# Perform the actual fetch, then resume with the result
result = result.resume(return_value='hello world')

print(type(result))
#> <class 'pydantic_monty.MontyComplete'>
print(result.output)
#> 11

Serialization

Both Monty and MontySnapshot can be serialized to bytes and restored later. This allows caching parsed code or suspending execution across process boundaries:

import pydantic_monty

# Serialize parsed code to avoid re-parsing
m = pydantic_monty.Monty('x + 1', inputs=['x'])
data = m.dump()

# Later, restore and run
m2 = pydantic_monty.Monty.load(data)
print(m2.run(inputs={'x': 41}))
#> 42

Execution state can also be serialized mid-flight:

import pydantic_monty

m = pydantic_monty.Monty('fetch(url)', inputs=['url'], external_functions=['fetch'])
progress = m.start(inputs={'url': 'https://example.com'})

# Serialize the execution state
state = progress.dump()

# Later, restore and resume (e.g., in a different process)
progress2 = pydantic_monty.MontySnapshot.load(state)
result = progress2.resume(return_value='response data')
print(result.output)
#> response data

Project details


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.3.tar.gz (641.7 kB 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.3-cp314-cp314-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pydantic_monty-0.0.3-cp314-cp314-win32.whl (5.4 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.3-cp314-cp314-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.3-cp314-cp314-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_monty-0.0.3-cp314-cp314-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.3-cp314-cp314-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_monty-0.0.3-cp313-cp313-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_monty-0.0.3-cp313-cp313-win32.whl (5.4 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.3-cp313-cp313-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.3-cp313-cp313-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_monty-0.0.3-cp313-cp313-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_monty-0.0.3-cp312-cp312-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_monty-0.0.3-cp312-cp312-win32.whl (5.4 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.3-cp312-cp312-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.3-cp312-cp312-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_monty-0.0.3-cp312-cp312-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_monty-0.0.3-cp311-cp311-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_monty-0.0.3-cp311-cp311-win32.whl (5.4 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.3-cp311-cp311-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.3-cp311-cp311-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_monty-0.0.3-cp311-cp311-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_monty-0.0.3-cp310-cp310-win_amd64.whl (6.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_monty-0.0.3-cp310-cp310-win32.whl (5.4 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.3-cp310-cp310-musllinux_1_1_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.3-cp310-cp310-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_monty-0.0.3-cp310-cp310-macosx_11_0_arm64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.3-cp310-cp310-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

Details for the file pydantic_monty-0.0.3.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3.tar.gz
Algorithm Hash digest
SHA256 c5a10893b2e4632c250641a2564e303a0672683327281ef73df27c45e33f1112
MD5 7b95b96992ed5244e682973db32f7e15
BLAKE2b-256 e306cf1d7b2f72fab8a7c4ed95cf48b76069f51100332c826790c3caeb568547

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 78dacf2bae6881b88a9c23229019b9733fea502cbb6ae609cb9e6353c7d80655
MD5 e121a0c53d8acb8833f8bce425524dfd
BLAKE2b-256 56d609c785d8d40008722e64094e484dac52e95e8caf5aa0571e3a162c703595

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 60099a86d41c33eda3b4f1a4f1efe4f176e9a4df80813230836773c051359ebc
MD5 2ffcced2fe7157ded70723827e7ee3be
BLAKE2b-256 f3d8ac7e477e5b4ed0f34d385fc211c27bff92f568046c5f6ee12a59fa6babab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c07d58927a8e74e9ce30049ad33f651e8328c3209b2eab09e1abad0307be953
MD5 efbce04a0a58447b2ab0fdf88617959b
BLAKE2b-256 aceac544dd504d0c3c33b53a0fb7b0d6afc8f551cd85c51e637fe007b2fb4ac8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3cb1c20cecf38b82f5194b21fa18ba3368921c99414a9a5105f0a3a989d38456
MD5 06ae506720c0c8d0aa0b818278651ef3
BLAKE2b-256 9e7816d9038612d2ccd17b9d530974497d235aec61d89b22ff942b1b4749e80c

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 99afaaab7ec69b348a04a0bc817089e7250f3dfbe2c058e42bf4cfb733c9929c
MD5 3d26bf973f12e95ac2099c9ad5300567
BLAKE2b-256 73b96cfff19973210238aa64a15dd987fb22d01090655382b5885252d4277221

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e6b290d3721ca3623ed919103fedd1ed026b91f4840240aff9d576bec2daaf9
MD5 a90c15a390f18a6a8cec3e1dbda0b4de
BLAKE2b-256 6f5262f53483c9dc0f7a99ccfd2b37f18e557687f3bb83b2edcef8cfba75c759

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0fbb42802221f5e6a4ec5274508f3e55fd7997b39c861b30315269e38fed2f33
MD5 5cb473e8ff0bdedd99560536ea9ca4a2
BLAKE2b-256 41d2703c392f75bb507506303b871c418a75f176ea9ef06cbfa47c2c318f18cd

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 331f7cbe3caf8da1ad732e8fa06e14388fc7220c733eb370d38a22ecd300290b
MD5 92f358abfe6f9bfea9413dc290c30169
BLAKE2b-256 c7e3e37871a585ac4ccc4e1548e2487376ea9ffc501242f7ad075d43bad9d5aa

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c39074d312e743c029690c85ae686f9cfac9d73374a8705645529d8da1b373cf
MD5 bb5d4803e484abd50fb113302f6a05d4
BLAKE2b-256 f348c76d424f28c68baa538bfb8e6becb593079641f7bf967391ab8d46a5c17e

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 82c50512c7ec1c52615e0bbb8fc23a49b4ef71cb1be32fef14588f829217d7c9
MD5 e8aa933255bfe81e9bec40f951b32172
BLAKE2b-256 68ed72fd2946cc1c696557081475349fae5f18c8e3bd4a6e39c49e35f4140b55

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 053611fa5a4ddf0de3cb2d0e1dc8d48af0cc2bd39c4a20fb4cb5a312f52709dc
MD5 d05284a96f1c5905d1e83b258f589310
BLAKE2b-256 8985ad4a752307c45d7843469c3829fcdb6a8050d14480f312637728841f7474

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c27acb40b8ea0a3c11ed73a0e9424447c9df9c29b6967f4599d103ab4e694f7d
MD5 2bb671109850a78d729c79176c5aa1b2
BLAKE2b-256 0e86e1feb66650bcddc14d23c43057be39ddf764b6d6552ba0aa31bf326dc798

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2244226fd67f7cf4357525c44284503a13fcdee01ba19b506598c137bdd69f6a
MD5 448762950ffb6aea58ead9926abfcfd9
BLAKE2b-256 348cee509efe060d592ae6c3f4f25882db7632396932af24ec8b8f8654b3b6cd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1310e87618101182f31eee41fbca976966d41633f01c5dea08ae8db4f16269d1
MD5 a1ff087a925e062cc488a1a6900e571b
BLAKE2b-256 dcde9a608e2990ce7d066391671fa5a96c4a8db38576ad1630813fb17684a3e1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cb33377a410ce51758e7540403be21976a6e0dd2f0bc48e1651e1b5fd1eed3d0
MD5 0452fb3fdd92a149d756df402dd73ebc
BLAKE2b-256 9d28ce7421b80224b24613abdfa3691f1d1465dbdce26d86d90a474334756a53

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9471b898682e5a50838aa2fd982b8f158db0fd4a72683d53963deda9322760f8
MD5 02ab1035ebc895e74d6380ae1618bbd6
BLAKE2b-256 58ab133242ff9adb84fdc5d2b049f0920b5f56a470957540ff6cb31be65de9d2

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6755897973d085a7e02d667c37540cd619b78a4f477390697512a19a45109c8
MD5 ba62e91dadce9a1461b05c3a38876e07
BLAKE2b-256 0447b67a2a3c59243dd1a97fc123449b3eaaf43f3439fc65978711203dd56765

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a2b446392bf2e6698ed39d05676996cd60994d06c14a757bc7ef71c99afa348
MD5 4fa8962dc98cdb8fff87af7b64a29e8e
BLAKE2b-256 e21628ad55181c8ce5dcab01b7f863e451cce8c0b0d40e25aeb19b223df87639

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 53538ba095fde39f903f842fd873418e6d64f8d7244fcb141c881de1435a8b5d
MD5 d472447be3a6844e77048a69d29c1565
BLAKE2b-256 067ccd156f7dc28880ba96f5823ef4922883c48980aab44d3bbda953041dd732

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6165193c347b766d0093104d2635517873110d942effe527b50e57d422280aab
MD5 ba7316001bfaac62100d427e20161fe7
BLAKE2b-256 7f296d2b45491949a6e610e2e15c421a24ee4329ae1ded77d039e54de77639f7

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c6f781cbd460ac600987710b3ebe395e61eddcccbf48bc383ecbe2b9bf6daaf
MD5 b4c6575f77f19287e9504eb90b9f74e8
BLAKE2b-256 c295510aeb35fa2f74ebe7927a71e926a4eb6ae5ed069ef63124d61701fa8136

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 917dce8f0d7aa4244d9107ac010af8f26614fd338f60d55fe84fd2490c4390e1
MD5 a7f038e4db785269c5b01d116ac208cb
BLAKE2b-256 36f4ac04587819224c2715f72c232cafa7dac03f4d7849710e9062ae0c7b5bd9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c597a33761079ae197424371908b11eeb5491799ff5e8bc7413a1920c2cc56d
MD5 efc19a175cbfdcebfe3daae5bbd7a898
BLAKE2b-256 d4fd90edf50b9d432d799035ab9e56f0a006e0868691bca512a55c61c097e481

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edb55efbf15a17e784ed49fadd32d97f048d70159b30a92705c7e00b6efa5865
MD5 a3994c38e441461304ff92f0e8ff8d21
BLAKE2b-256 2bd4e5197e9ee3f267b566c8c1d1f1d850f4e1fd08f80944e3664e28ad36cb03

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 00857e7ee21260e3e780ae81c5b02e90f0a6e7d4ab2cc0487c905e0f952db387
MD5 abdd2cd3362a18c6a8bc31bb0b2f0c70
BLAKE2b-256 af259b61d75cfdaa5a85c77a9d0dd4492410c8128c19435e439413a7ceb5ce49

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 948e7b55b08c91d0ce490c412c54912ec4f36684d5a72ad9d601f9cdcca8bbf8
MD5 380ae1ceef124735f744dc8d812f291a
BLAKE2b-256 6e185a0aa17230e3ff4093f4f84711c38936abc3b4c05317c26dd777f03a8d1b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0be8363f42eb3c072e06f23f10444334df373c4e361c28ba125f3811285af938
MD5 b8a2fed1380f35884b1fdba1d4125726
BLAKE2b-256 9fa2359128cbbc1c9e3336b79d232a00861344f670ce5d88c54d0fbe6cdc6c3e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c91fb8e51f63df59538d9df5418e70329ac846f32ba61ebd655c1adc55997b05
MD5 3ae734959686da2d0393748cbce2ca07
BLAKE2b-256 accb8402b6151f16ca64afa65eb39b9d4efb7c485c8173fb9fdeb02a1de87ad9

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd512d77c185747a8b57937f0aa832c7cd25bde2d58cce7bdc66d37d260ad1bc
MD5 821c799dbf2227677be3808dfcc2fe62
BLAKE2b-256 062e9b45f720e4c0191878636ee999f91fea08e18695ffc9cd48ec24e398b554

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1614ff022057146364d4d89476a997cbc3f5168d2264cfb50a303601d94bf20b
MD5 e7bd54b9c5f5feef85b8bb17ccdc4288
BLAKE2b-256 34d08f5b9aa2c8df0ace79174516618aad0bd6d005ee9200771a75c74d916b73

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ad8216145f917676f538e8be24a3cc97bb28f5db463fe32d7c96e90b31ca8a0
MD5 6958776a73656c2b88db7e0cfe249ccc
BLAKE2b-256 ef158ebd1e7d8f692d84b3d1013de2dd7395c70a9a66e2b8910a7d50564e40e6

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d0fc7b665b559e002b809a5ede7d43f9cc6ea391384cd9c1590e5daa11cc0a5
MD5 5783adfa165d73c54b2f5513a857037d
BLAKE2b-256 26935a97214ec940d04967cbdf7af06fee41691d9189f02f0c6370191d2d5630

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64a68ccb8542d3d7b1f4cf497b1b059aec3f4748792ef320beb15e6619b3b16e
MD5 c09228d3899e629eb58588781717fbea
BLAKE2b-256 290a5160c6ca6406507621b61fb40ce4c79a7251784b5a23244c6626e28f5f33

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc1bf7127fdada4578e9a8d9761f6ee4727d418eafa8c6d78e00375a8a999e23
MD5 aaf05cef785536e46c1a44be049137fe
BLAKE2b-256 377f219edd02c4b94b68d6173cc05a8dd71bdc76fa7a2d866c748b60cf2848b4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9dcbe2349abda82651b4ddf4b5159c7679adf74a772280d1cb9660aae6c882d0
MD5 98af3c01f03d512c82d1111afdd4b530
BLAKE2b-256 0651b98e7bcb6fa910a8650ace9161362488b43b0c74eb7e607a3863bf122de7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a76fec335ec323be24600e78e983be6e9ca8c8801036c76833c244ab431e4162
MD5 2ce03db01c4685097e9580ab66b914df
BLAKE2b-256 ab3fec44d6c4d582408c80f453f1773aac2ae76371110b4c462ae84d8974b60a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 143f87c839de14fc56c191e61d2fc830ebdca567664c5a84aae0134212700d79
MD5 ab0b375bf2d6b5a1cac9a2e65b78ef4e
BLAKE2b-256 aec06a77fc89dbb83ef30d9f5da1c45408dae78134c1ff9603674e06a88dae11

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ab19326efd5d89ce1ecaccf25763023322fff84bef84c5d11aef36775407ae9f
MD5 0201d1613b4a62295ce75c6319e3f679
BLAKE2b-256 0136fe10d5f533328f17b2a89d90be0cae746621957314c2d31c024e0ebee929

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 06ab6cee0932d50d6c4e27d2edbe3e23a512dabdbedf6038aa5e9b0e390c76a3
MD5 9b13fee2cf04293e005b1985e369a10e
BLAKE2b-256 9f44e5973cd23b5b7c2ff05abd0ebdcf2e02a9f4aeeb75e5f09ee70d06e9e46d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dad2a277d2cd4542d31cb894044a345b86a75b530ab2ed2d7f7f3ff6cf1421ac
MD5 65643bbf327c479541ceedbdc97017b2
BLAKE2b-256 a8b3599d2a6fe4dbc3ae8ee4c397ca6e469283b4b8f38b04747ce0a31b832c37

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f5f9c8a7daa64604be369fa8b1fff72a38269a5e7c28d986e13f14da559edab
MD5 b1d07795155767dba05fa5b7b3424765
BLAKE2b-256 d1711922d8b51a73abfd134c1a65c936e8c6672a2b3fa771d463d86a1296d573

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afd6a6f3414198228ea2c8c3ec8f7b7cff86c2f70ffac4d254be67a33994ae31
MD5 f7758953efea17392b95e16bdc81f940
BLAKE2b-256 0f4b1e215b196381d7591174ef5c674b76de6543aafbef9f9ea1090ab1b76abe

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94260ad0a94af109c27d0df5082c7f6ef051f51e9145b9d4f4c286ba68827bb8
MD5 70624780bb8819be5946967c8219327b
BLAKE2b-256 9eb9b6f58091d282a84eb7eb2d3f1d1c000798c22e834e6643643c1cdec89bbe

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2051cd72f88d858d0ffbf29f7d1d00d4455a694df3dc3d996df2d755dca0ebff
MD5 025e2a68252d76f82af17b50ab7a44c8
BLAKE2b-256 c9e3d139c7d0b477d64e6bcbdfae266349f9dc1d1785d9bf9e2e3374966d13a0

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b6591954883d94e8aa53038dd3e0e96b89098c278518901c3331d0d644219647
MD5 4e7f19c4593be2effd4c69f7808ba88b
BLAKE2b-256 3881aac3894bdc53478f513e8a75c6a9ebeb9ac53aefdc5cf0cd2a946f3bf311

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0e157ff1a927fdf7cbc7480c3d2bccde039cc3cd0db3193ee1a210d51801d4b
MD5 0dbc7803af7ccfeb22c9df9f939d66d2
BLAKE2b-256 b6148a4d3840bef2004531cd92eb549c94719a91f6f11e4ef8178038d48dc01e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e38040fda524eb169fd1e8bae58dbccf6be0bf7f0e86139df743018052ac0be
MD5 d58d01307de4907aae8c6f8a10e02f4a
BLAKE2b-256 d3725a7f1a08add4e1c34035128d845e0b023c91221607089ccdeb51647ebbbd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0d350f1ccc4f9aa9fafa9ebfd30b3a7732148189394db1bb79d8926c200dce2c
MD5 85a7646c05f0b936fc0fd30315d961e2
BLAKE2b-256 4dbcdf61319c73b604620753ef19e9909e14976775c816532621aabf1db9f977

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 202c6263c7a491c39f641297ae43896445dfd5a736ee32b15e2dee015b7e4faf
MD5 92cbe2668416f837e231c29f65fb7754
BLAKE2b-256 918759eb3889d3fdbf1dfa9ad0c0847bf84b602feb0fd3a802bb444f2c17b124

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 71bc63832b5985c116427ba8859cc5e072923f99b43d64fa5d464a5a43e7b59a
MD5 930ef3ce8f788f76002c1b4f1b336931
BLAKE2b-256 8fb3eeaf61e74367841ac3c48c8f3633e2538f64e9cae2d38f5c785efad230e3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 296c72acd28d0646fdfe0a5f756ebe54a635452ce9bcdc73d41e99c7c0df5773
MD5 ffc8c1fea11f9ed611506598de8e0659
BLAKE2b-256 41fc1bfde7f58b5fc6e2c4cd840d49d6209532b90778a0fa22bdfec57fe72f8d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0b51d692fccd59f6507f105a05e574ccaf78267d2ab9dfb6d37bad1353ba504e
MD5 f0680927f8637a36b5e3116893c4e401
BLAKE2b-256 2c4c2b494f799dc4a6d3dc894e08f4914c9f5320228317951ae30b560cfc905f

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5969775a2339211935123cb47dddc3f60707da2d529723b24a96125978ecb3e
MD5 da5043ff2cb1d85cfa6862e93a19b59d
BLAKE2b-256 24dd231872c2de26c71f3902bcd10bdc81db36b8cdf6025bfbe486f72832c923

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6b3a7b96f23265efbd71ef90ad002d54a1f4ab9e2a3b69f48fd1954dbbc5ce2
MD5 3005800a98bbcdc6af5fce1ce627d90d
BLAKE2b-256 0c53389d917c6cc5485841569443b260293e4b0afafa9d1598da6a4a27ac30bb

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 faa3a4cdc0da1e807da8d759de838bed037982290988d9a097a643db180406f6
MD5 95c3ea0e0c5cb50b173e8fe51bb1d2d5
BLAKE2b-256 1b37afab2fdad0288ea8b935844fcabcafe89e365dfc97b86c5cbef20ee860f3

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02ecc6c7e9e1c911ad583a74a6312a89cf656ce18d809a4b4d132a0ae6df13f3
MD5 634b106f7e1a08885a548ea99d133770
BLAKE2b-256 bbe329a8af94f659a6a0a993a4b1a237b4426cf37cbcbc4c2ba55712ebcb765e

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a08b5f2ab7204e83e509d176af92dc6ab3a7ffdcfbc7657630248200418f0a00
MD5 76a5eb091e5be429efbee98c766bbb34
BLAKE2b-256 2fbcf98a03e2e0f3f1914a3bd4dab9e05f07ae217ca828ef75c230b03e591cb2

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f92010095b0f9aaf29bc8a4cf785cd3150d89bfddacbec256c4c350c296df41
MD5 433fab54158e34e66a48cb8fab812eb4
BLAKE2b-256 38e0054c140fd6a33f5383c77df76350938ad2ce3f65cdf5732ce1a1d8071ded

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c251dd86fc2c8876988c619a734c4a71b27754cce2b4cd5213f84a1148f0260
MD5 4d4e02dba643cea1b46ed78d8e71d359
BLAKE2b-256 413515a255195845d339d5e84dfba3d72b0cdb55ce210b4e8b9f6a67ae4a6a29

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91f7d4e9494ebda9a4d2d0cea54e97b5d63ff7222e7ac1e8634a5227a17d5894
MD5 d780443efa2b6544492c8f2f2c630841
BLAKE2b-256 79da6b837e750d5991fbeee8a0db1d60da95ed0ea7f84c377ac6c930e9b757b9

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