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.4.tar.gz (657.2 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.4-cp314-cp314-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.4-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.4-cp314-cp314-musllinux_1_1_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.4-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.4-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.4-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.4-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.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_monty-0.0.4-cp314-cp314-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.4-cp314-cp314-macosx_10_12_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.4-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.4-cp313-cp313-musllinux_1_1_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.4-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.4-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.4-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.4-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.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.4-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.4-cp312-cp312-musllinux_1_1_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.4-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.4-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.4-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.4-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.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_monty-0.0.4-cp311-cp311-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.4-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.4-cp311-cp311-musllinux_1_1_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.4-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.4-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.4-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.4-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.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_monty-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_monty-0.0.4-cp310-cp310-win_amd64.whl (6.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.4-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.4-cp310-cp310-musllinux_1_1_aarch64.whl (5.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.4-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.4-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.4-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.4-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.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (5.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_monty-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (5.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.4-cp310-cp310-macosx_10_12_x86_64.whl (5.5 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4.tar.gz
Algorithm Hash digest
SHA256 f78b04f057deff3eb676d8e9c4a4754f3fb5ee353d68c3de0a4531c216918df2
MD5 e1b9bb748a2144c7c0682bf18bb10687
BLAKE2b-256 5e6e7ed116f2545faef034f65a2d85e3d1989d52293ec1ed98db0e70b8b23d61

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 c2d05bd93fb65f6dfd9c072158a9827fd544ca5e44e972dbbf2d6010668c4882
MD5 7772f8f869452e6a131cb1bcbb00bb43
BLAKE2b-256 8a64f5861d2fadfe0dc390f74b59612af056ccaf535ff54dc04f287d192f686b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 9d9fcf9e74b632b916cbc04cd72fba5bfeeda376d4301afdcba20ac603625110
MD5 23061e6dd3d5eb84260a8f49bf2e6dcb
BLAKE2b-256 bc223dc6ce1596cac9bf383889f95f1d5d8026256aced1eba41336ac7134850b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f7128b2f3a15b92402fd6fa268e58f0e92710368aff65e51993b53db12ecc391
MD5 6a2b808dae8d9b35afa419f3d45adddb
BLAKE2b-256 ee5e4a340ba05d83949d711ab200f12441313d4696566f4f18321f9e6d7b66e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 90cfa051d6b9614f4f19bd27c1d169b5da3e1878f989ee30eab0f5cd4f5e1d2a
MD5 d4ad55c46af69bb582ce2571a7ec8685
BLAKE2b-256 ac651c86615f31fc6f000d0e69ec2b609b0b9e7cb91170d565d78defc93cae44

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b7bdf48414576958029bad37b66d407b2b90aa6859a6a32b2191ada10d63f82
MD5 602fb11e4279062710ce9de023f54dcc
BLAKE2b-256 b31e56bc5a1dddd6d2961002c58decb560f87e68a84f4dd0264a769a8430c3b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 06f4db63658a8a8f76e0dc9a94efdf8bba0dac14596d94e35342440d95ae37a3
MD5 ee4e4554e63e553407a939572cae0447
BLAKE2b-256 80f9196fcffd12b705269d0f7fead9298e09ddab8e9d1a38d1db02021db982be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9cf8c4e14c3ffb9d2cc467cfa33c25825e8cc3d690b47d056f28485d6e7a29a2
MD5 d949ec8a92a9ff4f9d414f510cb6b8f7
BLAKE2b-256 5984d8fdf463c2c266ca915708d320a003afcacb9e627d00ab0005b77d158b5c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8922a68e4ce810e08fd6e6228f9c356d7a60f028507cc35c1aa60505ca87bf2
MD5 d856bbf0a29f04e270e834df7d283717
BLAKE2b-256 da8efeff0ada9aa343696bb07571c96f8beb8c1a9013d2abd596849620c66e9a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6534125477f5c562450334d8a94eef40706b2700c54174a106929f86ace1ead7
MD5 c2aa1c18c01bd2f1c7d559781eecaa46
BLAKE2b-256 ec51e569e652a777febab2efa7a134053f62b1a010f454ec31010c511b6e9af8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56c1cfae27ec5af72bf036e59430c2f07d6e2f75666bea1f56904a13aa261f3e
MD5 b5ce6bf4dfade7f15b0de73925ad9d9f
BLAKE2b-256 510ccd6295d1f8b086ced40e8ce5ad31a2654ce772a7a7735ccacb1fa9248998

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15f29cf3d1804ad90a487fffc32d516c800ec567a5b1dec5ae27da1a76218efa
MD5 d6f3e0a29de2fbded60b6485c477c0ca
BLAKE2b-256 7a4b2ba526a09e70fb3c33d02b78e2cf01188f630f0a2d954239a91fb8942df5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8da2fb6e2b6b2db9dd6366266011f98b82ed46a1ba359f67a7372fbc6ace6105
MD5 8a9f75aacaa95a39d60797ec0c9b43a6
BLAKE2b-256 8a7b9ac7775950abf33048949204234a48d5b1bef293fc87e8d1eed52ce2f4e3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2d1a2382a782b5a4f6d73d613ab9e606cfcfdb0c2ff0364da47bc55e8566b2e7
MD5 86c840b1d0839643629a997b549d2b78
BLAKE2b-256 513111dc4c64d64220198cd2f25a70bff9a4b12a5563e500297253a0dad59647

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d78531b7462e9f66b496a330e1f96372561d1bd8b4a3051f7a07b85a41a04b01
MD5 204f1850c3a0937a84ec37fe2f657605
BLAKE2b-256 44d98a8672186f1d1eb8f3dacf852ed4cd59309caa017ec8bd5866f99f750954

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a08e31a1926d9fd6b499bb61fd6b471c6c2083da1ebc2c9665961a9717feb44f
MD5 38619a8556382a91ab4561d7c10fcb2a
BLAKE2b-256 75c3ddb73b3da0d4608c77e3db8ad17e4dc87baf9b0de1c9d69c1d3976eb2e9f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 33d3121aed1286b1f1b67b1101f4d375bbc137c80f59866d45869ffd03b51c52
MD5 6372dfebe8f4a549844e889efcca15ae
BLAKE2b-256 23a832c66964d3c4853917be736b6ffd4013686487d7edc8c7a7460023627570

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e489b3282e44310c49fc0ebdec37242c68d4deabf824457b37e15edf80e7793
MD5 e3818098a08818d94c8baeed355e32ea
BLAKE2b-256 328ea756ef7c712ce4ed2278cc3809a7552ed41d114d7b68411ac8dcfc1819fe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 32ccdfbfeec80f638ab311eb6f28c63103fdf005237e0ecaf9fe349b492d60e1
MD5 00421f6b4a331c3d0c64e157b8219ea3
BLAKE2b-256 4e6f834e83d893718386f3966a2956f603e2a802090e7777d81efdc872219ea7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f54a1df8f1084a83c147139dbefdd753dcf02db7bfdad647ad5f066be0702521
MD5 6976bf31b4a7833659bbd9c6c5d26528
BLAKE2b-256 442c0436ba6480492d6b9b597b3f45771ae18ab13ccb0655878dba523ddd6959

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 09892488f816df82cd9a512fea6c4cd6b489bb67b3417c918092e3b5a2ac286f
MD5 b6575ff5e9af853143be7c75129154d6
BLAKE2b-256 a3043a5d20f8250c1e8b14b9425777f22cb5281068f7c542d4dc65304796b166

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff07c0fd3b624d5907b280ecac22a7a926e4c463b9094ccea26adfd8dc988bae
MD5 44ab71e8f2c96565e2b7646a4d9cc321
BLAKE2b-256 901b70a8e2103353bb3139bb1bb855ae80d9a68e4e797de8100b22915ce76e90

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b86319de9fcf4f305b37862af3842b99fdb17689a9e3385cfcc22c4647a3bbf6
MD5 bbc7302f39807c3c5313319cdd0328c2
BLAKE2b-256 2bd3925805b8ddbc8b17eb0c76cb4e203269246bf6ca7a94fd6a09f455ce823f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 271d0a374db72ba71f641eb93a41d1e857da01e4c6657e48dc5005856660b8d2
MD5 2a37403246fb8c4bcbad2b8b90ebf447
BLAKE2b-256 c3fa9dbe8e4f4d52bed0fdf61ee8ca770ec667701c54c2e60d802fdd48cc0e6f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0a7b1857194e99368f4ade3878a6eb9741ebc7297bdbb21d255bc5608c9e204f
MD5 4a836cadf14bf791093ccc788e235776
BLAKE2b-256 9b675cfa30e247bc5efd312604d0e6fe8f038b277a4d8a39558ee08a69b9f508

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 520f22a2f10b4d1e51857b5641ae78d04dbfef9677077d6c55536527067ce8d0
MD5 2de6d026a893c343a3d0b98ab0386c25
BLAKE2b-256 14d2ed269925e6221bcf7f86eb0d984dc88b7a0f7dec10d68059ebd9930fcea9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 3901097664645da6d49df7f327b503254721cc2c44020fdab781498257f7d2ef
MD5 234222fc203a9481f2d9f3845cc260e4
BLAKE2b-256 c5e29e7c5bcd0b1cf1cc5f6ca7a2037ab5ca85edcd5e938c36649e3b254b1df1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 234e04fd2c4a27a73ab4c4d2927cae938c4465e70b78e95c52237f8e77b78085
MD5 fbe78e26b058fff58500d7a38e4645d4
BLAKE2b-256 60186f9a3c2b4ec28cea189ab0dc324e7c1a70643937a0ee835b15e8d49baeae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 025577bdf8b85ef975b7bbe0ad5c33730bc8606035d1ad31707b723329968604
MD5 7f352daed3bb5f5f4ce0ca951d393c9c
BLAKE2b-256 03c7dec9486dca6a124f2987a56bc167f747a3c82e18e3080b6cce20c6d43c79

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe93b13d798d3acaa9e9b9b423ba4e6cdd6175221e4fbe6699c2cc65a455293a
MD5 6f6cd7b46a38ce5d60e113429e29323e
BLAKE2b-256 e0588b595f78261e444d0c4e9e8eb7334c86974c99feaa31747cae4c23c0a617

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4e6bf8928874055c418ad4cd0dac455adc51793e7a9c86da466fb161e7e5df1
MD5 f5431b2e480b597a6a3019cfb74d1b86
BLAKE2b-256 acb29e65211538cb05e12a8b1391b9fbcb4f33034d62221bc8fd54376a77b5c1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98d4aab379d849a359df7fd5d053c2bba733a1c430df9e3b3e190efeaef345b4
MD5 808f05db2ba4367db4bf4d0259465687
BLAKE2b-256 ff74ef62add8a8b8b30812a5f9d0f14657ab0e696d3a91f8ecc114bcb21b0645

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 59a1eb39783af3c48e5d0947779008c8abebca7b6bc5ddbbf881daf42f095113
MD5 fb5eded51aface508643150b8505b853
BLAKE2b-256 8dad7bf9f4e79cefeb2aa55e542526186b66801c5ccf0d2273ddc0d1f2442f3d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 203176419c2793764e36ca963adc65adb40c17e8a10c010e578b5a6484a5e864
MD5 f094af396c137122721c003c24a8ada6
BLAKE2b-256 680e50003e8626a62ea54a8831872826b2a6311886ba9390927a0da8b71d0791

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4862b22f4b6a8ed9edfb358fe77844066a09f0155377f1a0ad227b98968d8e4
MD5 b226c2088e14de7807afd86fbedfa676
BLAKE2b-256 18521e91354dfe7eb335a0574f375a5249a342e9ee87d03eb3b5607060a99339

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6ead7e1a84507e21e30297d0b131db17f5acde5311175c4fd9d505cd6c9862a
MD5 3b22dfe5ca66c2dbeb47918911519a2b
BLAKE2b-256 e6e0968729e98af0613104306a5aa5c460499f48c54d734bdd143bc5e6974f50

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b110a14314a922be1fb3802e1da29b5f7dc7f1fed61da9c919c261d8f61b3ffc
MD5 6ffba4c030559857b69e63b19d6580c9
BLAKE2b-256 1ddaa0f77b7bc223fd3e4bc6c5ff36d5d7dd416080e73acb3d5990f9c3fc0403

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e159f0fc84f89d6c281ac706f47a5185ae9e3617d807f4d8f8083db01a2755d5
MD5 b2e1af365253acf05b2a974713ac64f2
BLAKE2b-256 69c9d3521421568e72abbcfd47432f1438866a0881abf7611af34ea4439616b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 195d0814e7088b4cfd48fa61ba034ba16a5289fe04789a6628658ed2336e17c8
MD5 485ded0129a426aa373c55eb9e75f125
BLAKE2b-256 a8f350cec8af1ca02da45f1f990f2fd653cd84f660d2465d75011bcab0e460e6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 01463f078db28ed70cccee83d6e24ba18093ca64be385da93631a134d5880156
MD5 7f4b3e3e113e6ec3cf017ac8dc10f1d5
BLAKE2b-256 80160e4b6853da1f7626a316528175842de9850b2e5bbd2e92fc34a36a2109fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 11ea96ffb50ccd761c7446022d4b9ccf4aae2baa831da5873252ab920d071dcc
MD5 e96b758a9e71832dff2461a236639c98
BLAKE2b-256 187dd34eb7e971bb3f27189b874e539312b7f815d312a1247dc5d4e20c7b4163

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 568d1c1ee1f5dd866777fce72b2137d571d57b2c207da7bd87a1d63904d0f8f5
MD5 6987057464b74063ccf71cfc8fa44d93
BLAKE2b-256 958c8107882b6331d3b6f1734c364e8f3a97309f21f561de0935db2fd6e46ec9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 74cc63650d03c9585f944ff00cd9890cdd06185513ed0a0d3bcba33248131f82
MD5 2a84a6610490f437cbe66f4cac8c6082
BLAKE2b-256 0908277ad24f8d52cfd74355e28f5681e32ca4375d9bbde538d05ad9a4b96a44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b3889cd7bff16222cd28892fe968153893ecf95b75e9d25935cd6d36b2f3703
MD5 29196bc028527b08afdb20c8c8ca3797
BLAKE2b-256 9aba9f569a1fda0d643a8ca4ca40d7d808fcad3ddc482ae067a2d0cdc9f18e68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62c25627382335292b0769eaa0a13c42800b2d211519d1d389f4203f8b19f5f9
MD5 c4eace692f67faacae6065a463c397e0
BLAKE2b-256 ddae067e6e5b6ae29536c82d85811b3b984bfc416cf9f0b59f3049926e839973

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61ecfe3be3a4b4c7d9737b1412faff91794536af3d9ec67270d59c058f817a95
MD5 deee4514eecd9f61a57b467563f73b67
BLAKE2b-256 cb0d85f7902bd7c5cc696b3a583425e19c9656d3f661c51409cefd8db06e6404

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd065bd3e9f114308574c17b42c8485a2d1eb8280ef9cc1bd304e0165d47315a
MD5 0405c4dcc0b9d5f23f588d0cfb394c8e
BLAKE2b-256 7d506614c6196d872cd1f0508d49f7630c6438f7ca43c65e31e836d166735c75

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9beff5046a4c59e8b3f3a1816988158c13a35dff20f27f50d6a58e0702e7bc29
MD5 ec24096a1f38b14d072d4f3d03031984
BLAKE2b-256 55d7527fb81440aaec76516b5fc1ae0c8cbef52c20367da853a82de590ae09f2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0bbfa7963fbb219a6a3fde206d5f01a7197c7375666d1559728269a2706f9526
MD5 21d681a548734d17a469ecff221dfe7e
BLAKE2b-256 81cf53816f33283f979ba231267963e0df3637a434d51367b62f71c0dd6d568a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b89e10e87bd38e4cdfb3f8893ab69de0ccab8c57de5cca262c9a55b3f6dc1b9e
MD5 cca79deffa863fcfec32cdf6db8343ff
BLAKE2b-256 9795722f3f3c27cce2f418ed7cb170a6bd81b86b480180c1ae4d05440f328351

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 f7609364ca87e0e4a696590b55bf3b4b3ae6e714420d128e72df9cbcaa4167ad
MD5 e2dfa41c2ab337ddb04e28c2229c97f1
BLAKE2b-256 18a870e2c566415374eae76509acc9bf3d4a98a0c9adf04faf5da75db3e709f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0b4224dc71dd4b1ffd0d36dc55a80354664e351f3eabc2ed7da2d5cadace09b9
MD5 b956c3e836343e7df81f5345c8a881e3
BLAKE2b-256 f5734d859fd75a3b04d325ee63e313236a82a7d2d166537a1989d0476c333f79

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 62bdbf79938da55a0d502a9b6f559790ee8a626e69aa8dfe2cb151422f99dc79
MD5 4467b18f48b7ff7df80d5541ad75e2b4
BLAKE2b-256 c39503cb65b849ee8fe3cc95f6091c68f3d0e56676b7bc2f2d68b04051bbabd5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26a851eeb0f1a32e62dc4c83f80a6bc188d10de39e3df66e9881913510c1a033
MD5 61446e106d5b2e1ff0872b075228afbb
BLAKE2b-256 ce575aa987d9d4064bbda23aa388ebc016884a0d65bfc4e5366150296180d3e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a7aeadad8bfc515decd8fe5e51f230b6ecaa84ff476154b52cd6c474134d2ae
MD5 13bdc1f4b42cac67d58fa645e363f4a2
BLAKE2b-256 ed52a651f42d08d5bb77dc9235e5a3d2a180b8278cd3d93b0136f835ffcae629

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 820bd3a0f9e818c6849e0369789aa51b1ea7fd6035954db4e7676f1519b5f0d3
MD5 5d5dd5d0b60d0e68f3ce7e240234a005
BLAKE2b-256 d43d02f8840f48a1e537c54c568ac7c7a1804b9db801b125a00fffbebce2a4f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.4-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.10.0 {"installer":{"name":"uv","version":"0.10.0","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8e07fee524224b7ee90c7c5bc21aef750dbcbd694154daac8589e7b6e92ca01
MD5 53799de875e2ddebf9e8bea3f1ef3b6e
BLAKE2b-256 f2b70616adc6b29d71ac50772b52308fb20c831c51ca026b4152873efac8e1d6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c63771a2cc98a3696fcd5843c42a57b703cdbcac8bd1ddc8a07baf3bdb60875
MD5 6ee819a72e7bb7d9138c877c9a5e8a0f
BLAKE2b-256 d70fa117da6bfefa67260e4a43af91e3e803145b538503f90fac2783484dc96a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc23ac7f4e6cc802815b39663404db338d670a6c6af2f9b369eb8bfe57d74549
MD5 0147ff759e2f385d7cf43fa65201e37c
BLAKE2b-256 b1e112ca9b922ffd6fcc24fc9facd23be54f7598a3c51cc60df2182259045638

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e6362ca04de5ab9e21076e8d08a27be35769af62b7d6351ac33f004f8cf6605
MD5 3dd98205c64c3cd0679927343ac336d7
BLAKE2b-256 65e73fa06a0088b31df476906d1ddfd8f86fd74d2371b7232f0a153ccdaab9b3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 061d2dc0493c24d4db3ddcb02fe009198e47596e9325ca9b5d99557ca21420aa
MD5 2d352410c1e1f57bc1f77c60cf157f01
BLAKE2b-256 c4343339632f1220c353e716dd2ef9c3e306d3b31f5a91e841b2abea9b7644d0

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