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'])

# 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'])

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

print(type(result))
#> <class 'pydantic_monty.FunctionSnapshot'>
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 FunctionSnapshot 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'])
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.load_snapshot(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.8.tar.gz (802.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.8-cp314-cp314-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.14Windows x86-64

pydantic_monty-0.0.8-cp314-cp314-win32.whl (6.6 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.8-cp314-cp314-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.8-cp314-cp314-musllinux_1_1_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.8-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_monty-0.0.8-cp314-cp314-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.8-cp314-cp314-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_monty-0.0.8-cp313-cp313-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_monty-0.0.8-cp313-cp313-win32.whl (6.6 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.8-cp313-cp313-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.8-cp313-cp313-musllinux_1_1_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_monty-0.0.8-cp313-cp313-macosx_11_0_arm64.whl (6.7 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.8-cp313-cp313-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_monty-0.0.8-cp312-cp312-win_amd64.whl (7.3 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_monty-0.0.8-cp312-cp312-win32.whl (6.6 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.8-cp312-cp312-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.8-cp312-cp312-musllinux_1_1_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_monty-0.0.8-cp312-cp312-macosx_11_0_arm64.whl (6.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.8-cp312-cp312-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_monty-0.0.8-cp311-cp311-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_monty-0.0.8-cp311-cp311-win32.whl (6.6 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.8-cp311-cp311-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.8-cp311-cp311-musllinux_1_1_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_monty-0.0.8-cp311-cp311-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_monty-0.0.8-cp310-cp310-win_amd64.whl (7.4 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_monty-0.0.8-cp310-cp310-win32.whl (6.6 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.8-cp310-cp310-musllinux_1_1_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.8-cp310-cp310-musllinux_1_1_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (7.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (6.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (7.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_monty-0.0.8-cp310-cp310-macosx_11_0_arm64.whl (6.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.8-cp310-cp310-macosx_10_12_x86_64.whl (6.7 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8.tar.gz
Algorithm Hash digest
SHA256 8135e781a184f971825c1d2eb6d621598103e900f6e0d34291ff0bf35df6142f
MD5 b50b1bece5a6d16c0aad42daa75c8ff2
BLAKE2b-256 47bfe9794b562c207406d8fda0cf4fea810943a5e8a85fe69e5505046179df16

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f4bc9185bb5f37f3220a978889b4bc6f822a41ee4d5523c17eef4d869aca66e8
MD5 dfa7213a3d98e0b5cbf18b934bc3f91a
BLAKE2b-256 7180bfda690914fa15c68f8be9e824e62c4054118a9a72304735221446a89014

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 b143bba29c274e15424a097af6ae85a1e81e6c2fb7184ee7a93fbf10997dbbd3
MD5 8ce9aa287ea03e4bb2777780333c4d3b
BLAKE2b-256 d838baf5a66ed72b931de7ce92251822d6ffb752582389ff4f4c853742cee029

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b005f10798a1b58a12b5643f69a7b54208bd4965d16ca2bd21d13fca4d1a4f67
MD5 7299b1590af9e8cdbfa6a8431a3459ac
BLAKE2b-256 0c5188152b89f5288e9d3cd28e71f79a6567421e20d8f00b0514b7819a29a8bb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 48b8c9cb9a96a5f28b03669771368a444c8b50c758b6a5bd0d148fa02db3f65b
MD5 62e87acd89f539f215e4861cd935fb99
BLAKE2b-256 7b3f3243277e2c6bf4c3e4684fbc78c316a8965dbbb012b573b38978d8628bfc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a94fc87b2a9b1b66a09f35b819b1c7e7da7702b21c923cdca21fa13129486b45
MD5 cf22cc359c51e898a25a970667264278
BLAKE2b-256 da114e1524d94e33427990cffd74eaf94a023724c872f11d42ac90eebd74ccc0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c2e5b3b11b794f82504bb6929f4101f0db84933986aee9b46ce7561add152e9
MD5 99188ee7f8153eaaf4df93aceecdf4da
BLAKE2b-256 aa44b64b6e2857519d5fdc66f74998019e585e5c3bf2cf8deb7b77419d29db2a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e39104684eda1ae3c290e3a4369bef9d00f9b637be8515802bc1523fecb5160d
MD5 6682f343ee6e2fa2ac1125e114ba6875
BLAKE2b-256 25cbbd6bef8fa2cfe807dd5ef36ab8ce6d094ecdad0050cf57dec4c8a438d413

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 badaa22749fa7a22ee2cb88f6deb48fc191cb2f41237dd630593259ed9f30b67
MD5 f72ce3978d09d9d25d4d038779858e59
BLAKE2b-256 9d79dbb0875ad2b565d7ef1981feda4438ab743130f4031107aaadc9212488dd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 76c4ffd8275d520628732d82e7410e5f1f69ef5af274d676f1f2f9221fd85a34
MD5 110688576864b10a4a6dc8b18c59152f
BLAKE2b-256 f3b8eaa4a4f0b3a1c343773317027bb5d1e11a1b0c1ad01d3f0921a7f547d346

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70b7479e7bd47d274fbd6278a625289e71b1a4aad400f40c7a4a89fe9a50952c
MD5 84070d0102bce45a6b7ce914fa2eeba3
BLAKE2b-256 2c7d7e667c72c9742a6725b04d21faf50e8f552a0e23da9ca1cbeba891961c9a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9534f6236b3ebdd09f0f7d71e508e68736733d24cdda2a6c0a758914261c75e5
MD5 ea2c598f7710be6d64fb352d71d08dbb
BLAKE2b-256 bf3506aaa9c766a83e7e95219bfb6cb88bd0a87803f85eb3f596b82da0cb3009

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 47990770ed74af1e8e2160a7dd925aa1e4fd1bf4ae9658ffd1cdc32eb5c8c6e8
MD5 20d9d85faab0d0e9985051870289248d
BLAKE2b-256 a5695bedc7ad67fdd9e4f04007477f5c414b54c51d47c5dfdd7abad4c78663aa

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 dbf8c7cfaff2b345f8c1bfba98fdc282e790fef5c601f37c8d5355ccd45073de
MD5 1fff498658e25da49a5b6cd153d94557
BLAKE2b-256 b02acf156df19a1612ca5ddcbd982645e54c5485e83215d9532cc9aff791f854

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ef0db454757cb92974890b11c7b0969d8c0d95944c821f6fc6cd23846d1d2aa4
MD5 c110e11eb91b61ac866da6d2faa83848
BLAKE2b-256 81c146dc300f87314aef883a57ae5a35ba45a463c09f64d3d9c9f0b620672734

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 782d686d217b537e6fa9047aa3444d67b3b7cc69bf6faf34078c992ceaeb1e9e
MD5 158dd5836459cb7844710adf6a5c6889
BLAKE2b-256 400a066e53d4693b680e39080d3af4f234c1ff9976f7621b8a49dd2a41710431

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ab3c558a648942d4d31e7f668d60d2a2e129751a3e8e9dc27b1e6d635e9e627
MD5 8dadeb0e50bfa01487adfe100ab12de0
BLAKE2b-256 09422eea55906fee8bef7c1024bf2d35e2c301b15b562934731bdae25db448cb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00b5dee7bef619e7661f77bef765f483605bcd2a79c6b8bf5c910afa1c93fc40
MD5 fda1e2815f6b4e6225424184518fe3b8
BLAKE2b-256 07e772f250ffd005520ad8cdffb387241a9dd92fc70bcbdd769720918bd34495

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bdef70921b408378f9bc38bce4952d3c176b3f7833aa782068b310390901c516
MD5 3d4c2305692b98834a4e5bbb734cc17e
BLAKE2b-256 39a07f026ece228cc990e58aa27f2ce5af26d042baaa0186cb451f3e04ff0abe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99951afb4d722212c2ce85c303b5e87d50756adaff46817ad0e60e95eb1e5141
MD5 254fa88d4d3f79f8162ebf4709fb77ce
BLAKE2b-256 f89d7ab11be8eff998bf9283c7bf444254cff5212f87fe3f2a9a2f7436cce6d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2432ef62140554f5970991b7df41e064824741a807515658f91283c75669086
MD5 db61b22e580d20dee4be0beb54242d94
BLAKE2b-256 0a82d3e9aa9bd9ac69b3584216166a189e11370913ffcbd2a57a5cac6ce2d4ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 90f6da093164e99012b49b39ba1e64c166ccd126128d114f9e2c66df6fb695c4
MD5 3802a6c83b89c6b7d467a5e738e31c8a
BLAKE2b-256 7babe3dfe057af472e4065297d69aea0cf30616d01366a29e02d0a2739f22b93

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f4c6f6fb2ebae0bc80520af71e1057055413ca96fd33f13f3c612a085e50fb8
MD5 b81953f9ec0764a949bd5a71804ee202
BLAKE2b-256 b87c97c87c2a315ba4376bfb83197586365003005e01d6547df7f6d77b80d13f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8cc698da6f7f11743df7c48b959eea000e8e30511c7e1318b67543e25985062
MD5 c79317d0d47b824e36041613a4af37dc
BLAKE2b-256 f42228d6b7f8f7a1e0881c449310a6f2c8ee0cf85dc4434ae0f7e633dfcf5bcf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f303f1d979213dcb365c69de3912daa70a32af019bb5ee86e086f584638974f2
MD5 2cd65ac5395ff44f462b0e3356e56e23
BLAKE2b-256 27463268001a639052515d5a55ea2f1e087ae1e5f7aa9d7bc62c4808d731fff1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 45bf11e3b795cc470a91cbd7cfeb9d96f7a60387e8da146a11bf952b4371aba7
MD5 e4561179312ef49f7c9a464169dcf621
BLAKE2b-256 250f55a16faf379139263ad852421734cb096390777d299ef7f185ec10404656

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 4cb59e1e7b1a3d573247a871a87c88506ce9fb68bbd7648598e171cf2f04747e
MD5 e87c1aca52d94346b2d9e9c54a49696e
BLAKE2b-256 fd2453d06af74b82043be9c4960c38bbc255eeb3de9f2a4d450f942912630bb3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ce7222d923676900827e3951e65f854d65f50b65ed8c7a84011d3472773d51bf
MD5 47896888c136154f65b323cc47c895c0
BLAKE2b-256 1e028e8396b83d19ec70a09c24b0245177a595c2b7d6d092c6f6c7d3310b191c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ff7fb7ff3f4e830ef9b28a76e634219195b552c0dfed3471fb4910708db56221
MD5 44c59414c89d69a45af5907e8dfbf511
BLAKE2b-256 5b45778bc260195ddb892f284c3cb8ab8cbcb0542e6a18f11b7e50a592b507ba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1aabd56af5db51c4af512142fe7ffc866b6a20dcd039a4aad5245ef42768f21
MD5 39edde01a57fd51f86fa30520ecb8fb0
BLAKE2b-256 316344b5bb5798323f7f735f5855a0d3f478d6852d9d1774427d77e31b5dbffb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 97fa5deef4d8cdcf60a4d8a4e7a34099deae1ad4b33acc1c33ac2e1cc348a1c2
MD5 f9e06723302cd4721f8689ee91242431
BLAKE2b-256 116a2855c6149f6ba3138c7bfb009c07d528e2df12802e3216928b1289bbf233

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b05b17fc2b8875e0efea047416fc0cd28a8018c040b25387454996b98540ccfc
MD5 64de065178448210545a05a227e9208c
BLAKE2b-256 747685268f6305bc5b153be7c0860e69ce3b9ba916daa4a419f53d8a777e9a39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b99bb030ff8e95b160c11702b9a6823705b7dcc1a49a2c1dccc43c2538bfe27
MD5 cecaec06cbe60a6d4ffc8e3428fe9aa7
BLAKE2b-256 5fa9286f7eb6c95d7877f6f8b9bcbe26e2d988fa142cd77509e48e67302478bf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b58149d6a8998ffed80f626c10bf0de7e65964aae1dfad80db8ecb00968fb1a
MD5 e31e247c23f7559fa98bbb3c2f8b666a
BLAKE2b-256 550de6cb1e9e1c2e51501d8f7848c18803780164948e338350ab94769690f207

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9782e58da29176a3fb0ce8ec808571d0be99c1e2ad167637225246e594e85f13
MD5 8d297231b4dbabbf2f189bf972dba091
BLAKE2b-256 4b68ce82eb571e45afbe3c0b9544fe3ebf93f841ec895fea0d39c9604a0a421f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 76846d77ebda3414beb8c9e5da9eaef722e06606dc0307613186d888e775dc51
MD5 e8b5aea98d5f16dc655dbc84eb0abe9f
BLAKE2b-256 c035074daa5fd92e4a5c1e49c8fae06036e194139feef9a51b4db82d0fee7e54

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 025b380c0ed728bdf88e3ed60d5977498d4bb9da61cd81d9cabdaecce16f5755
MD5 b20d9fa66d4ae41d9caae9b61eda3198
BLAKE2b-256 f44f7d7c7531be850469bccfbbf3cfede9e95d92b1d8e7b245d9dc77a599d6e4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 85cdec430afb4bbe1860aadf910c1b00832037ce08a2fb64e6012927a58ea14f
MD5 f2914b0ad0dac3d46777d3e8289057d3
BLAKE2b-256 87d6b2665d7590849969da9dbde08fdc1810f8ded7891d8fff3488ceb557eda2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 d7e16a25b0066e34a2694dac157fc93971f80c67c4f1b47ad6e5049423141e6a
MD5 bb5b240a93512177c65d7bcb62de08da
BLAKE2b-256 63464b487728ed5a97341a21fd54a32ec11552757e843bb69983f72eae0caa41

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8aad6b5eee8d8c1dda9b63b6ea3b7c524b64b8c06ad49ba9cc015740c4f86c78
MD5 052141c78d8d1551206e68aa1e2c4f20
BLAKE2b-256 316882374a2e8a832f72c65a4a26d20fdb756c089cbce0984d7153f70fbb05fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f0344a975c59f5f35ca6c0c2b332d7d8d7c681449c5ce8849181ed05025b18c4
MD5 de9460be443ed32257868358ac593a27
BLAKE2b-256 ebbe28f86c4c7679359c9a2fcd17392d7716550e87b8a4d381cf865bc1014a31

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70fa4aba236678a1d0b04e07300d404f2504351922b6aecec7aa4b4d84785d3e
MD5 0cc568524cf34aca9adabc8ca659e43b
BLAKE2b-256 f856b981e8e29e316d3f327142fc206c4d727ecaa1b875057110b3e754c1fc52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 94644e34771e4255772d41e31c30c9ab1f9df06860507cb5f47152760a15767d
MD5 a1644038e43f5659393d0d6f7614fbe4
BLAKE2b-256 b1fecf2c8556589d11f85ab82ff1cc2ead3f1e70a1bdbc03e6b0648bf66186c7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c44c7464c9286a8c39ee58bf45d0a477e2f281c49ce99796210874f58bbe52f7
MD5 9de7716e849dd0c79db3bed219a5f253
BLAKE2b-256 52589a89b514b2953f85cc089149bcbc1ed4a79d9ee90cd6448ce85d71d04ece

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5a904d8d489bb6494458364874af31a8a933f7b316234fd69b25edf6b0567b9
MD5 270b49047f62f04e67a1ac54e2c0ce9a
BLAKE2b-256 d858ebda094d5ac8fbdd74dfc2041d7a04289fd13a9ad19accdf22841ef00d79

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f7840f0e0d3933dc3c2f64402275d9176877ecbe565008dee657305f5c6e40f
MD5 5742be5229b9f95a99dc74ca09192a09
BLAKE2b-256 779ac0d387b8b3ad6255645044afc8ac3f1cece7f8d91e819aaefeb738251634

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8df1d1fa0deed81de60e43e3ab8c4a82f63998b6e04e535e681633b4eaff98b6
MD5 7b49554bce1d31fb27c36fc15d94fc36
BLAKE2b-256 f34e8b41a6e1461e52478d8ca3ef19db6e271c4b7f27e0073337b3f98e35d3a4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82adee95051eab2b04d11e4a11e852eafa2d00d8adacf62176ec25bd0d3f6a7b
MD5 b7f482220413483daf1aca0656eaded4
BLAKE2b-256 a70b042f23c8211cc74b508eb7a648f7dd3ce6b39ef6fb72ebd8f1f6c060f29b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b36cd5b8e380d9624a6929203a35e8e0d6e11b2bdb840553f0079000c1acf84e
MD5 03b6252f6191843013da2242c69578c4
BLAKE2b-256 3132ac657c9e517665cc74bf47c326a2b9585b1ed0a9ebba5d624c8ad3cf3892

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 85a0378ae97dbc56aecfbe9e097c5bb8b3d402f44ecf4de63016711751f9b9bb
MD5 cf9b13f6d28dce52adbb65210d6110c8
BLAKE2b-256 215953af269e465828a48b544a5d42bb3278a4ba1bf657169358ba4575713d54

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 643b6285fc921b5a73e23dcd71315a38eebf33bd75ba10deb3736c8bf8171d2d
MD5 cd7fda95930aa93dcfc2158e3b5a158e
BLAKE2b-256 e9d7b7d94ab8e74f2431ed315c554d00f919674c650a0d03c2f22f91f3f62d53

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 199c8135a1ac4ce4eee477d529aaff1986558542109cf207bf2071cf400006da
MD5 5c087723b6d292b459fa573866657a60
BLAKE2b-256 60f3031c7277082f60e43dd14490f9e50262ba6298df2793872df5f55da6ec97

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aae593b5fd001f7ba026b6fe780028a0fc951c54f39e3dd1c232c225243be17d
MD5 e1d196376de3505ca4fb3d103efd63cc
BLAKE2b-256 23d2eaad2d0c35451ce1697b8afc3d3bcab263a5bbaf71d1bee91a35a48a9a5d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d515ff3a284757016ee741bb337072a228c9ac8ebe63ff31263f337651eaf3c
MD5 bcffe43c74eebafc1f3a584a66314613
BLAKE2b-256 3921c783a54695d76673e1fe7285edd99b241f0743e00dd99f3645d7ddea6585

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0133ee9335f18e049bc0c9d40e81b995b30c6ac2da0dde8549d883599f0b3791
MD5 16e1c79b72e2e0599d034a29efaa286c
BLAKE2b-256 21dc1f578581e1a09dff04df303327aac2a23160da7906d9b7898ed462980f43

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2e1a3b4150756e6e16ea6f57c2da18839d4754b1ef564acf8750156783b8631
MD5 30bc1ecd4df443e8d7fb11c055206427
BLAKE2b-256 b58055bf6c7b76786142c14cd6dc8aa350e8cfd0e04ee256bd7b267caf105060

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1a7341af27a08112e78ad7879549b1c2684b6405d14891bf972a0c51b845b2a4
MD5 57329973141e5ba0fcdc55c8aac36b5b
BLAKE2b-256 d3a82edc58fe3453941f75a2933e7bffa08f30a448d3e28f81679950fafec681

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e036bcf26fa7ac0bc8d370b7786faef9e89e4dd9e690d2e02abb96cb534f1382
MD5 46845e772b5388351e64d4937dce2e93
BLAKE2b-256 8d7c5ee596f92977dae7f9d677432da7883483be512efa0432b416d67f42155e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 687bce9965b2be994cc72c6e3d6f9debf578beba7b33ce26160db209d41aed3f
MD5 8225cfd42f462905f5293163b474cc80
BLAKE2b-256 ca3836838e08baac3a675c382f4f27d651e4aa79a77d08b5f5efb45bc95a43a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6785dd86af61e0898b6dd6162db57b1fa5d971572ec30b0b60eb79f9034f0e1d
MD5 d571e8ff5ca64b8624c21a19bd1afdd2
BLAKE2b-256 9262171af2737950fabbf25cdcf7dd8b05dbe1bc6fc30fb4d40e1b4da013cc06

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.8-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a15033d8479adf4566fa52f9067640a83e3478340757f480c9924032386a9a3
MD5 abe7426401b2ef2cfec36b118731dacf
BLAKE2b-256 325a1d80f5b27717cb5842d9140b8f4033c61340a0f24588cdd06e8c1d71ec57

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