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.5.tar.gz (656.6 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.5-cp314-cp314-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.14Windows x86-64

pydantic_monty-0.0.5-cp314-cp314-win32.whl (6.2 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.5-cp314-cp314-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.5-cp314-cp314-musllinux_1_1_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (6.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_monty-0.0.5-cp314-cp314-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.5-cp314-cp314-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_monty-0.0.5-cp313-cp313-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_monty-0.0.5-cp313-cp313-win32.whl (6.2 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.5-cp313-cp313-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.5-cp313-cp313-musllinux_1_1_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (6.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_monty-0.0.5-cp313-cp313-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.5-cp313-cp313-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_monty-0.0.5-cp312-cp312-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_monty-0.0.5-cp312-cp312-win32.whl (6.2 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.5-cp312-cp312-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.5-cp312-cp312-musllinux_1_1_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (6.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_monty-0.0.5-cp312-cp312-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.5-cp312-cp312-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_monty-0.0.5-cp311-cp311-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_monty-0.0.5-cp311-cp311-win32.whl (6.2 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.5-cp311-cp311-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.5-cp311-cp311-musllinux_1_1_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (6.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_monty-0.0.5-cp311-cp311-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.5-cp311-cp311-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_monty-0.0.5-cp310-cp310-win_amd64.whl (6.7 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_monty-0.0.5-cp310-cp310-win32.whl (6.2 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.5-cp310-cp310-musllinux_1_1_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (6.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (6.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_monty-0.0.5-cp310-cp310-macosx_11_0_arm64.whl (6.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.5-cp310-cp310-macosx_10_12_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5.tar.gz
Algorithm Hash digest
SHA256 beee3917387921b386f1d962b97df83d439f6f62e9ffaf7c548ea0b533fe751a
MD5 222644f911f013851f47dd30ce9f9db5
BLAKE2b-256 6b947e3784b65a2057634b69b8bed6b0b9f6ce74f0c1f6e9d81be30064643764

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0f0a8932ba3d32c68d1b5c0c67f57623dc4b57a88a73749784c5070d7936beca
MD5 67d6867bac4f17e4c2b2325187bb7f98
BLAKE2b-256 1e346ecfdea9503bcbae22a4d53aeb2c3cd94570b24cbfe97417c13a8fd5f3a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5224fa04a42201659789786d3d24ff99a0a7755dd5e011be6cb65e7d7b0515e7
MD5 20796b88f84de34c222ab04b7b1c4de9
BLAKE2b-256 a0833330b42d372e9eb0f898b361a32ac8d501cfe11dd949fa6244cc4ad04548

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 caa016c56cde3e0e9094df45d06c23c81c81dae6f0876cd392081451c7fb8ff8
MD5 529d0cd8dc0a4aaee78e992e589c1e18
BLAKE2b-256 3e2919f77c24c8110a044b328237371a56ce21fee31bbcb87807d1d35354c8dd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 351e6ebf6b403e794ca62a9121bbe7c05ae1a09050f128d9deae05561665d04a
MD5 698c2c260b416c577697789d428fc6a7
BLAKE2b-256 1fe084dd487cdcf75a4604b760eabe4b5d53ed2d09d35cf9e93173a34be88ebc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0db21fbce19b7765cf104ec745e690c87ceddcf33d2441347cd296703f27263c
MD5 51d18924147afa400f0001ae17b7a327
BLAKE2b-256 ec903319cb335d8a2025b57652c07bbada8e33f3bd48dd826184c9e2d3f7e114

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8895b9f19901893d38e7d9c8255f4fd36bf5537af2c0f2182a504e397a2fdaf
MD5 339d32ca150640057c7e03b8a53ca2fa
BLAKE2b-256 175979ea2cff97ab1482de8f4c0ae29930a0f3248a0ad5b9fe629dca333e4e7f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8bf9e9698e854c5b7cdf4057362adad6290adfff5036c5389d756c46c37fd76
MD5 399535194c2523197b2ec9f4fbdd7ee7
BLAKE2b-256 675017fb98f2e1eb6576b448f4cba179164005d6caf4bd8b662ff9979ba4787d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6338b1a45e8f24f75b86ef87119b6667326fa955a36cbde27b125edf632f098a
MD5 e67df47ab12a0f3de2c18e1a3ba1b393
BLAKE2b-256 8aa2497ceb6539744cff2c81c23eadc237cc1c8e07717a6f2a792ab39c7a80a5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d89dde1378202ab2b31bc291e5b3d82259e87819858e93fe2106c78a76ac6f3
MD5 4c888c8e374953ac8ec01566d0e8ea26
BLAKE2b-256 3514eafd7114ca02144983412641a98d7f98c12053153268fdff649e5ab9bc52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03f7790926088e9359248d0994b5a9ce73788cd467ecef50281d0bc7863ed563
MD5 9589377d76e016fbb5900bd40a5f1b65
BLAKE2b-256 fe481443c6f2eb6dd4ca9946dc2828d39da9b91720f0365f32b89aa9528b6b30

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dddcc0899b6e31cd7b119d13eae636882117c78f4c1901cbce18c98447dcd96c
MD5 2ff83ffec47e4387e03e0909044329d7
BLAKE2b-256 a9560252ab56359ac9ea9d757e3be8de87010aef70c945e28501d195a42b894d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3aef445aea99ca0db5470f488528489beddcc75ea4f357b2c56ecf73063e0f88
MD5 eb2407dfab0b0cf4d3d52a9d01fe2732
BLAKE2b-256 c12d26d77ac265881b93b8984b72060364df0c614b2d11a33cd2b81b446338fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8b7bedcc9e0c86322aa01d69ff7e2a792fdf012d14aa86907f82c387e55ab455
MD5 0bf2c1c34ae83f059adf288f3f367f01
BLAKE2b-256 4fa845e1ea2a9ca5fce29230d2b4eae43d92cf29855594ac0663a6fe669b9b1c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c6a73e9737d9195187fe1bfb82912c5a4a6bae3c6451eedb62494be404a3af63
MD5 5b2840f52280bc2d9bc8fe32e4bee19e
BLAKE2b-256 9132c9891ea15cad96d3a9aadcee9e573680de588115d09fccfc890717f8d8f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0ff379a702145e6fc1a0dc6426fe763fa7cb6a4e7561b9ddb3e5cfb569305fd4
MD5 d74733c7f6348cf04d104deffbcc0876
BLAKE2b-256 2048dcf30762e7ee6aacbc3b6496b5677e78c00e158470b01506a2882c374c12

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8e8646bd0c1439123601238ed7beae7962f182988e7a599e9eff44538a1c8622
MD5 056b2b1c3e63ad45e0b4dc3d9e58dc7c
BLAKE2b-256 f457bbc21df673c57c78533050dc933c8197e9176e923eb97a92091da08f4509

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d11705083c49bfee3ab8bb5130d9844e12130fcca0aa395a5d87d25ab03801c6
MD5 84fbeea4065611de9364958dd39754b0
BLAKE2b-256 7a39911f5f2692f9c9f3792b0e9268e3b3e27a1857c8d466d169a903db511342

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36e7da1b3fa9999494e19d3554a8d4153506e6bab338fe1e789b9855bafc8bbc
MD5 fc59a42647e7b136436e65acfb097153
BLAKE2b-256 f8bb204f7258d6a1470268d794d21263f0fa130a0d4ab4bd94df1abf347de185

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4f20b3f3945612d340ff1401b0111775e48efbb9bd4da618c4ae35978793b9c
MD5 cdd0efbf7718c6c2cc31ac9cc1c0d706
BLAKE2b-256 fbd27e5ac5bc51696ea1bfc981d372b6b3503f638341ab22400e61cbea8dec04

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 076aa4c7974305b61dd690112bdab8585aa3a09149ec789eef2d284192d415f4
MD5 d1f884cd375ea9e367071ab9ebff590b
BLAKE2b-256 5eac355d2dc296f432591065bb593c4b20844a60e5bf00489491c80c9285a81a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aebc25d5974d1b5347ba7e3896162b0db03e7df9eb1266d8cf2ba5a7115e9c43
MD5 8a6e39d43f2f2012f2825a7b89a8bb8a
BLAKE2b-256 0fc838448c6d0f47fde0167074ff0b2e9595a9bab41b68eefabb07b27c37ea93

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3186646a47986b9c21a1c4b279c705efdbc3886899324ae390450d4f52089914
MD5 57a59b1fd91bdda4dd128ce268f56d32
BLAKE2b-256 549f1353e910c8555da73fe9f36387cec2dffee964474c4dec9a49c212cefda3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8d6877582770b7b02bbd13bbfa68e0fd8f4d5cc2fcf0319b248544461389606
MD5 9d88ae38388c07c446eecd89653727b0
BLAKE2b-256 33cfec2509908a3d789bc39318c9b5960aab534327561f0b779f3d65bf3c03b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f28f4386c047c8324304e912ee5e0ccecef0f78e6b967be3a6e34ef71a3c764f
MD5 43ecdfdcacf2533d32eb0de95b04a99b
BLAKE2b-256 68d5cc5727b44463e49c2be30c80f76cbfda1ef43645b9f8218684082ff13742

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d7fc321f5891baa5f265b29dc83cbbbcbb173ac7d91aa671f878a98d4c80de85
MD5 4a908b098408dd129869b978fbc85b5b
BLAKE2b-256 164ab209944bdd914ea1c17e1ea416fcff6acd145c8b12a83f4cbf4e323a4470

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0ef7dcd2979871203377b10f965a0737b2707dcfa72e7b5f75943bceb69aad70
MD5 7f87014226053ca8eb1fd978dedeaf45
BLAKE2b-256 08141da77e6cdb444401d37b93e029910e5be7ccabcf55e97329a866bdb0f2dc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8b8161cfd5174f0199213ad0963153c2bacb4220eac38e13c05960195b74f094
MD5 5809b2b8f3d53abb1ae4e48c4ad8cadd
BLAKE2b-256 abfefc3b0515205c936a9b12b953fed47407b32c30870e3ae9889b7f16777ddb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 74c29f979099392af67adc7e4e2953ace671003d15e2d9fcf4a323ac0f4e7fbc
MD5 281bac88ec10ff98a9d56f1095d064e6
BLAKE2b-256 935bb6b0fed05fdbc7c1ed9cf9d3e709c5f7b4b554ee2415f62b76ecbc53ac65

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26888202ce18dfc6252ce60e9e83b8a0f9abe88c9a82667020e5e3780f0539ce
MD5 64821559e7bf82eb01ef9f88c57a764a
BLAKE2b-256 a7fd2231b3fd321199c91fbf7eee057e69a853e1ae2fa4b4cd85d8a5fc51cef1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5835f6c3dae192ca134011d47f18266144a5ca41d738f559e043c2081d218bcf
MD5 8b27fc9c869406484a0d91995309af49
BLAKE2b-256 d87b0f633438adabf8baa1ba26e8294de5971d8a2e737d2adb7d4a6c43f3ce88

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6557fc2f1d527416b21fed958b94790dded0b5876b8e57bd5a296438456f698b
MD5 2303891ca28d7546017908c8a5f44382
BLAKE2b-256 5daf029de79c0cd8ebc7b54ad59c9501322a4c53d65e48ca8db5f68ec62efeae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12a5db91dbc8a70cdf0d1072e82ff113fe757fbcccbb7d48b54bdcf88326e504
MD5 a6f0707e07461d5e58e720b652e86c56
BLAKE2b-256 307147809e455a488c3cbdcc572306d666104e4d897d138b0270957f8c9c262b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84f18b6a38f070d449942e9ef688f38d1749a7ccd0453a0a5ea35e669641080d
MD5 85c311ea841b42001e1dc2e9337c4f6e
BLAKE2b-256 327ed09d6aaec08729e7ae4fce6a9a140d8457fb264de5305f53fa04bf1164d5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 943e0d3f8a2a5eccc0332cff3c218f0d22610efc99be3e4f1b3c1d8e3864be34
MD5 9696b4b2d3841186b95694b33c31e1db
BLAKE2b-256 14e32d63385486edc060872270edd18a3138c73a29f443c7b9c9ae33d0dbb7f7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b129e4ac1d530749f9323dc0d4bf21fc75f149fef6f47346598a7865d12359bc
MD5 a4604de8e5addd31854e66409f09e9c5
BLAKE2b-256 0a3fdc3dbe4001ccfe00bef1a2d0736d358425c53e62e5abf3fb0e80129d9bb9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f415350b4b617335f88bfe237b0163f611ed7c82b1c7daec27654dc465b050f3
MD5 8d07efe990974097f51c73da9e728a3c
BLAKE2b-256 d82111bed63362450e8c3c794dc4a70a01f45ffea4e59d2d7e7c21b277010883

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2a6a3adcb530e4db8bb0c8f06ac034a8ba524a40893f3aa4275d7e17161bfc70
MD5 66a5533f9df5b5a941c102b95b464331
BLAKE2b-256 605887e2a3f9e29f53ef1513ed7bdd22055bd9ad8787b6e10001c15e05ea31e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c9930a008b770dbc2a0d4b0d3f952b537cf3c205cf732e4e45fb0d37f3bcd9b2
MD5 c879278abb44a23fbef31cae1ee6a41b
BLAKE2b-256 d0c0f9b03a7c895832aede27f484316b95a16f567bf5adec4abcffae5acc807b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c5922aac26b58511dcc020c4c678738d4da4aa03c0376c394fd328481b760b25
MD5 a173e1786ac3837db9b8ea46d962a3de
BLAKE2b-256 a86260686e6436fd1923bdfb91d5cf7d4105c99ad43d4f25b21e56b42e11c568

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1faca880609d6cc0805e1b16b5bf18e9d4a37d10f97b64c26523ee7fc21181de
MD5 d1a1d83233575a327631a7eb52fb4ed0
BLAKE2b-256 603473eb018ed2523b6c9a66547c44a4916609b9fecfc25ba3ea6b466281de39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1f433e0f96d6be55ec703a8e39e872c9145a1666abc93e2496c28b136f0d92c
MD5 63ff54c667806a6b0361d68d3a027357
BLAKE2b-256 ed11bb486c95cc40b6aeda75ed1ebfa7793ad0c21d1a268f6de574190f947600

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84f3adf1c83f2b05e0a64848b4c8e504306314a8744990593589fc77121b5943
MD5 a1358a5ccf5df31ee6b507a0ed3615a6
BLAKE2b-256 446e754586cdffd8d5baefc8ecbef901331256ddac26d25da9256486af674941

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c9a3072b8847e321ea0c1b78e529161095415d60f861cf8983347f2308a8b90d
MD5 431455fdfb71a9f7a0b0cd5459212177
BLAKE2b-256 47d9dcd86bc2b892a7755df4dcb24c22399586674628adc3a99513417abed3e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c303f2a4b404e00ed8dc1efd181b2c3146b08f5e7ec4c77af696e65fec0f513
MD5 c882f0c14764678bb25c97e28ea0f3ef
BLAKE2b-256 13a79832dcd1fedd1c5a9a1c5a4929a2417cf4c9d5e2222be31581d95476ebe7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55a900eb3facce4dab9b81885cd5fae36d4c300c855b973b1f12c57a03aa856d
MD5 9bcd44e1bd852703ebbc8042afc4ecb2
BLAKE2b-256 c86f1383a086321c03d58d50feac33d972d2cfbd10de8091ee6e754dc0a63711

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b46c10465374d7665fb7dd35c5f95d817aedb927640247d735d0b742c9b7348
MD5 43c5ecabc3a881657991082947c4abf9
BLAKE2b-256 72edea7209e6829fc7a691312539fd2dc322c100fb2e7c96902d026b16949566

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e053fec307e948f21339a5217123ce5fd0f0b59e3d390ab3f012f079006f5068
MD5 832e2a398d23c7b4a5e38b87cf299923
BLAKE2b-256 1e74d8125de9993a231e18060dffd47b51952ac332fad365c0cd8a0e4bce2792

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53bf329de56b526d897f7c5c10b0fdd27e9bc53380d8846cfd01ec9534b3ecb9
MD5 f5f5719275e198291bb0edb5098b11f6
BLAKE2b-256 c7ca3f66b8fb9865a8a5831dafe92095d58237c3e69ccf099f9c0017dcb03901

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c040c592f3efa11140c9d4dd91d2799dec139917f6010c013a4e3b54a7ecb614
MD5 2b419f2431611510cde2098ce9a0e26d
BLAKE2b-256 fe7614a0424c3f5b0910691db505ff763b4842817c99f4bb51583a113bb32203

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ce40df4f6e97b8e84e701f78a9cf03a346648b43ea1329b423f7a6c497b7d35f
MD5 1372f59146e2bbb894b758a2bfe5c82a
BLAKE2b-256 266f13ea1601dd9ea1f4888c0a54f05d0b58410322e21d3d56c82ab6ffcad715

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f4b677431925638eec1d747e7c5b36bc597a40f1b16f59f3145d3a2dc21fd54
MD5 165f3ef53eb08fb5e509d0f1cfd985b2
BLAKE2b-256 6461ae39dc23542bdd13bb378dfe4079fb2bbf9f0f292d7782372a1fdc43e76b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 32e24924978ceb1b67b5143968566141bcb76833a67adb587e535cc0954e475c
MD5 19320af8a6f052c4a3fed89f6419b2e1
BLAKE2b-256 d228abe24edbcbce22b8e2c42da549a6ddb0b71268d3c09ac17d0153e481271e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c88eeaf25d52a2081175a448456e75124cd59169ae340fd3868b133094f1b6bc
MD5 81587a0ba9418d067c391f5ccca3dc64
BLAKE2b-256 85db4a57e8171287ea5a39a3aa96743bd38418e8361ab699cf44561723539cfc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63f871197c133e772d37a2c76150cb466784b0bf2388dd52e77dd514549bacb9
MD5 e0bf28db7f51790b12793d343be757c0
BLAKE2b-256 9c3b9490397fd36ff8badc3be874b1d8a799500d0f322daab22e31299ff094ec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e166f061e07bd6416919234e23756e8a2b5f5ffd81b0463e5f05b26b73cde555
MD5 93a0caddadbd15c7ff3da2b98863a229
BLAKE2b-256 fb89d7018b9e498302a9ce0e9addb1f2a7326995c13672ab6b357e73873bbb7c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 af174e35a50121934b98e58f3f2f47680dc2ff004c6c32f3ac8b9b122e277820
MD5 8c87a9d1853f2de8a5381349a1ec4a54
BLAKE2b-256 48fdd03f292cfb1a797ca8a948d0f71ae3370223366b1429558144e1f10c9310

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb7d46069ecddac5b70de09bce7a2a377113bdf98f821d8770656ec77d1b84a6
MD5 49c54237c99f62b68cd0ec5ff2e8415a
BLAKE2b-256 762dd9d44111a0f2902878b14db9f17f6fd4e74555f6cb4232cbbf3dac10679d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d63c354ede71da31fc5f8a5bfef85de103fc96ff5378c72dd905f199fa78353
MD5 ea58666980b83ca4c064c6736c2aa661
BLAKE2b-256 3321747e89344855af33d68cc5d5563bfe32ec08ff0f12dff076e312b14b11c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26363ae184eef5dd82d9052da438d48338817a6a096202fbb3a7d71786c563ad
MD5 6c6bf44c31a2ddad1ed6ff7365d8095a
BLAKE2b-256 bce7ea3a6fa670f9c11ea1abf7840083805d7c8932767f33bf5da9f04ef3bf21

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.5-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc8d4e982a35b822e6fa3f8b2d71369a8708ed95955a03e9c3254d812aa3808b
MD5 10b47b45391d58e7dc939312a55bcd62
BLAKE2b-256 05deca7675067473cd864e09885cfaf237047ea4bdd1099c26fd0fe70818bb79

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