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.17.tar.gz (1.0 MB view details)

Uploaded Source

Built Distributions

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

pydantic_monty-0.0.17-cp314-cp314-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.14Windows x86-64

pydantic_monty-0.0.17-cp314-cp314-win32.whl (7.2 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.17-cp314-cp314-musllinux_1_1_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.17-cp314-cp314-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.17-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (7.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

pydantic_monty-0.0.17-cp314-cp314-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.17-cp314-cp314-macosx_10_12_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_monty-0.0.17-cp313-cp313-win_amd64.whl (8.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_monty-0.0.17-cp313-cp313-win32.whl (7.2 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.17-cp313-cp313-musllinux_1_1_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.17-cp313-cp313-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.17-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (7.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

pydantic_monty-0.0.17-cp313-cp313-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.17-cp313-cp313-macosx_10_12_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_monty-0.0.17-cp312-cp312-win_amd64.whl (8.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_monty-0.0.17-cp312-cp312-win32.whl (7.2 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.17-cp312-cp312-musllinux_1_1_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.17-cp312-cp312-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.17-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (7.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

pydantic_monty-0.0.17-cp312-cp312-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.17-cp312-cp312-macosx_10_12_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_monty-0.0.17-cp311-cp311-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_monty-0.0.17-cp311-cp311-win32.whl (7.2 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.17-cp311-cp311-musllinux_1_1_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.17-cp311-cp311-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.17-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (7.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

pydantic_monty-0.0.17-cp311-cp311-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.17-cp311-cp311-macosx_10_12_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_monty-0.0.17-cp310-cp310-win_amd64.whl (8.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_monty-0.0.17-cp310-cp310-win32.whl (7.2 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.17-cp310-cp310-musllinux_1_1_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.17-cp310-cp310-musllinux_1_1_aarch64.whl (7.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (8.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (7.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.17-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (7.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

pydantic_monty-0.0.17-cp310-cp310-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.17-cp310-cp310-macosx_10_12_x86_64.whl (7.3 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17.tar.gz
Algorithm Hash digest
SHA256 9c4904a8fbc63282793f3afd2d180124494c7fc371783f365e5691c9586360af
MD5 fdc72ab7811f444ad691d009eef00fbb
BLAKE2b-256 f4f8431ba0b79d02922811392c4e3d283d6508f7052ceaa1936cc34878703ecc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 36a8090a628e8cf91df8f66c721a71050ac8f48473d4992b9afbd9585941a647
MD5 6c7c05d34ae756bdca7a6accf39ebfb9
BLAKE2b-256 5c20b8f552f2a863778f49ebb708f18aaf0bfb275480a48965786e06efacf1c4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4dd3e6e80a415e7272f7a7583a4f8e045096653f6074e181117eb61fc8fe3b45
MD5 69b68571e4f8fcb0f1665a3bb1db7957
BLAKE2b-256 f07c500a002f1a52f17c8b8a989875da3e1590c18ce95c89856aa967e2348a36

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5fcdcca45439844bee268686f37226dbf5803ec7a5945f5536c41419f151dac
MD5 a55636e0f3d3a97e6dba33e22a6527ac
BLAKE2b-256 88495de8bb7f8b82c3ebb8f2485e0b7a40055b072193039d95dcb5d35fcba72c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5476e6c08b86b0bea554b97ce9b142aac1177447f2d3c5751864b27991fd1b1
MD5 c78248f6f637f73f26945b1e9f76e10e
BLAKE2b-256 9ada8bcd0a78abf13edceca36aaf5c180fad963e4c2e042fd7247b9e96048306

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f804a03a3bbd0cf0ade1d4ce11b50ca6858e9c4440b27c746faf1d3c0a272954
MD5 92a8aee1d508a6cc2b10b39ce35c4784
BLAKE2b-256 2c43358bdaa9c50d21fe4a25a71d43ce9af2d6796616fa47aca84f807433564e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26ea6684555bfd00cbe9d2df3e73caada3d82200c168c63cc475197b55b88401
MD5 e36d9b1c4dc042da4f684c2fd99d779a
BLAKE2b-256 81e3f2be0fb975100b6936ca36a8410098f10fab3b26729c0b0d1de2fac59ff3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00fd1cd28b4200c9ccd02629868486b366af1bfe1f0584d4c9e513b7a941a868
MD5 1f000e1183f9238d63b7761da3f7ada0
BLAKE2b-256 6104cec11fa96a47034da3c21af53e73f43d2270f5ce96cd710809859fe9c0b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e2ab074a65738e9c1b4be9a432e7ca1e9987a6706018dc7a5af6d4ce7cecdf3
MD5 fc20821deae4349f59f4e3ebc7dbff16
BLAKE2b-256 41785419785630511b54b15cfb094871bcb53ec9025ba8d91bd7ab5b22b6c98f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74a778bb5a4dcdbc85b3b9002f9a72a43fb6ffd88635bfdd502e8d3053008337
MD5 29ae821ee200ef66786ccfb9ea6dee7f
BLAKE2b-256 55baec6620c27c8b4cada6ce53378c52c245e238e50a20b968cafdc1b8573c4e

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.17-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f38b9875f7ff56fe69538b60b2ecbdcbe2b8b7780407ceb05fe0ee1414bf8d19
MD5 74f23c6a2af351cda346b8a5897c2baf
BLAKE2b-256 813f8eeb8f652f6cd6e06a737aa9f00de2949e37a669b31756bc51b6182457b4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d82f319e3fd79707a7b81bbb68596509d14ac73502d2f0daf4ab5d281efdfbdc
MD5 415201cecc103585afae65208525b03d
BLAKE2b-256 00acd58221b5e17915421ca00bb08b805ac121b6accb194785d5422da4a2f5fc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a166bd04d1996f0d144fbb5e1391cd1c0fbdacd4fa3b689dd48931388679fe98
MD5 cb2906c7df85a26e880967620a1cdba2
BLAKE2b-256 69c08354baf835e1a04c4b9e11d253f82df7d625a9305e6a23a177fb895b1484

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1886c3590b02f359ae991f1e76691064f167330eda4fbf22762127ce17d0eb48
MD5 b3f2f09de49d56ebbf06319225ab8b81
BLAKE2b-256 86e7d8cd62f537f7ab17714ee19ea221a0e341dab407215376ab1c41d79794c9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1c239ae3e610d3f39cd1609285209a4e2d046b465ac1bfed0d4374c615eed0fa
MD5 72112f58d46a0a1ce700ef45edf5226d
BLAKE2b-256 76b4b6a0bb41f39bac2e11e6a2fd42ca0886893fafa6344fb17c3f0a94e22e83

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a5e9bafd4b5acbc0a8e12ee8403a3ce37281c3b0fa5909d3f412bee76c69003c
MD5 d17bab52401b8f55555b433b7168af9a
BLAKE2b-256 e43b64fe872cd575ab5262e1ba2959554ead198c939cfaa425f7f8e9b1ad2694

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5bf9f07b38dd12747e3c95b169a5afb3e2e9107622e01e548246c84d19a69c99
MD5 2ca3c23d659a193945f78f9500336c94
BLAKE2b-256 110bb765c9ca2ae27def1caa07345aba073ae1239fc2d9cca7a375f3dc2195f7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ed2fb365ef9ca921de9a17786ecfa2efe06e65678e6ca57be51658a2a880f31
MD5 2edf9d28f25c3d9f43f1ee6234940966
BLAKE2b-256 973703edb1fd582b79b2b462afc3fea5e1c8fea73afefc4870dc35fc3c7c492e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c97dc44af25d4392b474902fc40f78f09fe8f44ba791364670334fe12abc077
MD5 20c25ea328d94d4fb327f4a9faf3a9f2
BLAKE2b-256 9264287a42720bc9e975ab5b52625aa9fc6bcef8298dd821022cc45c6ee1808d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b35121ac555ed201405c69d531e4cb916da6984b8cd2e15c8a319117349faf6
MD5 c3cb286dc78a1e4e6091412c1fd36ca7
BLAKE2b-256 3398fa16779021d93edb19807e87cdba56bbec6adfad21f10b41a212572ce513

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0688a1fa5dc045ac7b7e996d7269b94f74f116d7b1e352c7b5bb5ad53d4fe03
MD5 a4807deeb5c7bc7df31fbc681519447b
BLAKE2b-256 0c675d766f9cd304e871a5dfe5f0a85eaa533538ef07e9b2858fdf9f37f83694

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2254d25c34463d67069f5f1567157bde9311654cd5371f8933b8ea9815bfa26a
MD5 c750d74e0a4eb9d01db11d0d42ba4b6e
BLAKE2b-256 58d464c2f8eb708a743b0944ea8f71dfd51bc655285b4be28d55577dafbb29fa

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.17-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 49f252b2fb918686d3e8f76cb30245e782d1560a7fa68dbc0f6940d83c12bd41
MD5 36aeb7d5503771a8a433470a265c7e24
BLAKE2b-256 e7e5e4da6acb408594cbfbfb8dd3c0491b9b2ee54e9183e7ebc5f584baa07af9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37290d6a1c35aba5cfb8b490bb31c0d822e8ddca8f3ca9ea068e30930d80dd1e
MD5 c3caa27c3a013f1858fd08ba489575f7
BLAKE2b-256 e588a0315fa08e62e2d1ef00c03d8202d7bef3f1f71543bebfb916fea265c0a2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e0cdac8c3c16477596bc96ee1cec4f2fbaccd089e2daa1e7b9f227cc89f97cb1
MD5 bff559015d6ac90e11369fc5e5171905
BLAKE2b-256 b5440e106b8b27eb93b66e4f3d279486464e05ba5ee31088848e58b5f506f879

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 7833daed757ec9b09b627cc3577a4a76b114c5148f779531d7cfdb1095bcf0a9
MD5 d8efaadc7cc1a68f620552ead648befd
BLAKE2b-256 d3809be3bef8273817ccc17da25c3ce4ff5d5d45e5629c17eacc90cdef073821

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b2185cc4effbbd6793eed4e0f0bcb6a3dbfbb3289ea4d47888708813f0a3dd47
MD5 3ea15ce0501068037869db8bf52fd3c0
BLAKE2b-256 58ce9ecfbc2f45406cfb247fafdea4f4a8412db3e559a22c4385eb15266ba2c1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5d2cf98afe2fb124f6ade91d9663d54277478cad417164f83df1854a41ef450c
MD5 8effc4204cb1fdff3f39fab28519f4aa
BLAKE2b-256 156367200070cf33325ecfda81d4aee3bf312250ce80bd73058103e04e0f3587

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f9c17663e2c6f07aec5bc54cd7e39a9e20f250a97a9081e1b2b932eb00d0afc5
MD5 cf8d142e38c854366c7748b0a733dea8
BLAKE2b-256 98e5090357d7bc0f0751d1afbb71330695fa26554699c88ba56ecaad91657088

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a7869e3f41a54cc588096c52a8a4de25ecd81e75c867ea4164b14ea1ae1a57f
MD5 4ab2431e4016fcad05587c8be53cb398
BLAKE2b-256 422a36b694ea0c7e202250a81a57faf00f218738da6c5d070c752f2d81cd34ce

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c1829993dd50cf497cbed66ea9f6c8ff7d157d22592a05c7399f92fb8a549e3c
MD5 5000956237447fe5d39c390fd426bbfb
BLAKE2b-256 7b1f23ecd6e268ef24ce6b0fe4a1e76a314990d2e923ac5791e29d657418243d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 683d18089acf14d0de293245b9e37c7f0ec64e6d266f6773144211931aa3ec97
MD5 d2179d57e2b2663b10da14c973614a0e
BLAKE2b-256 1d91af92ef409e1c065345cf1451bbcf19e00f70a250b8372ec65143ca9a9238

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ea00838ef8f37dcd8085defcbdfe89fdd05297a6533f1d3f4cad857d13cedc7b
MD5 d90be0a0d9d8942f97384dba16870412
BLAKE2b-256 9697f1af6acefb7bb38d73934d6853998bbd327de7418b811372519080d9fd84

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dafc8ffe57c257002f623afdb7d0e41f73de850179ebd90b42611e4f2b6f9884
MD5 3c41423d8ad1e8c4f7719c851a53564f
BLAKE2b-256 75829e4d55529bb99d882b9277a721762537a8bc1345ab1d052bb614a88bd15b

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.17-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 39121038405911f59da7bf61164251f59bad3fb1b0cd28f43c42c3949eee2c8a
MD5 db94c18ae757ec5d83c47036d14fd04f
BLAKE2b-256 df96abc9c4972d91a9673435b84e12b99d038e42d1f99648fc9e5f242e09d00e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 445cc471ce6f5a88ef06741b7ebc7002a2253d182f55a2f47094d4adedaaf497
MD5 d576243ac188c6bbd6ed020b42196dc7
BLAKE2b-256 cb67ca9cfc07cd445d22def53e9db86912f9ae3e11ef772ce41c2ff41a47eac5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 27c2254fa7a7b05e969f79578889230d293c62e0b1ee28371ec4f3c54b14426a
MD5 aadfff859faefeb923b78ee60c0b622a
BLAKE2b-256 d13195827babdb35149f076c5d191b6b1e7a7c58f4bc72432f905e02e4e3231e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3293c2f7524bfc7c3d8c794f1c1dc1eb4cf9c65a5e222061e2218ced85f3f6df
MD5 ea2ed31b8e2d4a269e3bcf43132cf5cd
BLAKE2b-256 5e82d3119f59652d04bcf69d671ddbd38464d5775fbc738a258d3c8f7800e29d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ea8b3ae8c42d572cefad841d3bda63cc458d9de2361cb9172914250e6dbe2c75
MD5 8bd647920e30ac9e7621f2a5c4b40135
BLAKE2b-256 999be17fb50d0df5cf9908f8fffa25c5909ed0eb92ca102ded06f7a6d6133e78

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e655b6ddd552c02b751f1d57fc291fbd5654ff8b166a8bd634857879160d0b7
MD5 b007d18145fb4fb62d5559ba10fb1bbf
BLAKE2b-256 6f4dd47ae703d402e45475333c4bf11b117c8068305f00c1363dbaea13d0fd09

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5da5362ef25665a23a3b13024497719f65cafa61d696cac76429f84701bee2e2
MD5 3219fbcd75476dcda9a296ca723ebd0b
BLAKE2b-256 299c8d16e0cc0c36d1444f25d57da68dd22216bf0961c457a482429cec32141b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 61b517776ad13aa4580b1dd89188b18296ceeaf88256423563bbc99e804fd83f
MD5 7d5f75ef619aefa0afcc379fbe9d2ac3
BLAKE2b-256 300b702db7b753b96ebc6713e7cbdfaecdb471df3e3cb0f0f6e828620a743b78

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35b000c52755f25f322ea7c4d079f09aa60635ffe24a6463899e423066a41bf3
MD5 e07b1c22de5afc6a54d6f5e70196358d
BLAKE2b-256 d7ca7c4ff1e3fe2e82a4745decfca67b54a7a61cd306875e32d8e41c5192c69e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35f267a501bc1910178a1515fdd3dd927273fbb44e44b8718cb3b33aee79f41b
MD5 acdd5e9ad6a199a448478e871c434d74
BLAKE2b-256 1692aca140923fad8a2821a135cfeaa2fbb3321063bbadaa760424a016bb1ac6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9563b5b4933f0f08c0e66ec66aaa4f43f2388bcc04b984e58aab2146dacd3829
MD5 bfe9beeb98a80da4027fd0059c874ae5
BLAKE2b-256 bb15835b10cdec3b96b089eef9899df6850b7f84a10225c491698b0ecf8e532a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 54c317611454aba8be7ca96aeeea9429f4702a5c4ba89812bea82bed0d8e34fd
MD5 8537f8cf05e56ada7e605fc701de19fd
BLAKE2b-256 0afe2eb51eb37e9f712cada64fa8d7df4b63b1f5fc635290147ab158ff0e1ef1

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.17-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 bb88264e291cee56770a775f57125538c4713c6d362e89ee63bff506f650a0df
MD5 2b1115b6c17409a57a884ee5c2c66f61
BLAKE2b-256 5177a751a6f73f854aa85fed94cfa5ecab21d7bf218c9fa03c96f9edf470cc4e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f38a69858dfdd2c9474156616d05e25a288e2080aee24152fa40c19ad425f0e
MD5 c39f9fe7a12c6a9d3c2caf98d8753fa4
BLAKE2b-256 56c8cfaf0a56087301d4e88f72cf54ea45a7eebc09c021c85b8864447f1e3755

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af890d691f6055491a4e643dd5bf09e07bd7a20ad70038531aada6415ab8794a
MD5 53179edd63be41fb267dfcf762c585e9
BLAKE2b-256 e742ca8e42d9f3318f5c454cf8b168d814ec97c6f2afc38756d4b1b806184f6d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 50ed9561b6dd1a1863d4cac81e4eaca64cb10ab541aaab92fcb5996739bb8e7f
MD5 a00496ccc62968bb74f1f53ed6a1f351
BLAKE2b-256 1c278c219f619dad466ec25db365acf88e2a50450dd862e0daff0eb281b6176b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d5b3beb6169b59adea10fdefb1e54bfa9a66165404891dfb6fcf16f7749cda3b
MD5 850c166e187cf1132e364f97928f5178
BLAKE2b-256 dc9f5302b784f882ae8a8396f29f8c5ab4c16524c173a3d777b94af33858fdf2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 69136647abd56f804987834e37573adcc5c3b3d05013b8b3a2939f44b3bd5199
MD5 c26f181c331f05c86f67d3ff9a3354b2
BLAKE2b-256 c816737c7a023abbcb21848eb4d58f7167d9f4f8cdc46858ce8ed835cc2c137c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fba71e5cb49f15a1446ecee142c8cc11f4bd6df4fcb4926465c83181474b2fd4
MD5 51011d4aa99913840b2543c8aa381289
BLAKE2b-256 accccb4d1b14b039eab00b33a7274f15f81739c3f272e2dfbeb8fb13c6b0c85d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e252ec54fc4728406045f7be36ca45dbea8e6856df9c6154b1b9821b8952dfa2
MD5 c7a16c3971720d19c41cb917dda51fc6
BLAKE2b-256 51858d0c6e5f127da9ebc0fcda6e411592d12b7606347d67aecd4363df5eed6b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 575ce5aa31db18bbbf6275f00e9b0c005ca393bfb73a2f306a577ad490ec2d98
MD5 71eba727d2dc06fcbf945eeff434cc16
BLAKE2b-256 3e01ac0d4bc1ff00acfac14b7cb2ee322d08778c206cd57f43da8206a2f6ce78

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cdbefc180cc83c8b8415aaf95b9099bb2cb15261f40ebe2c92f13e7d52439a4
MD5 cb44c4ffb1d8b7f7d4c2ac0496b47e93
BLAKE2b-256 1fc5d027170fb33fcbc038febb76dfd2d9047f5194a250ea608e3ed8e5ec28d4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a7fe77a191205becb622eaecb075e8bcbbbe4dac20a916d9c58ce6d59a22a8da
MD5 51e9ccc7ad400b11832ccb0707c846c7
BLAKE2b-256 01cc59cca979bd427d166df8c827fba9e794c4a5c08943e225a22adf9854a78f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64ea7babdcc9fba93089fa52589b6d0549f755e37500f6cf4aeaeb8e56328a3e
MD5 932c5632e05d9e8134225e42fba269da
BLAKE2b-256 099b5a6f006541fd3bdc64b6dfbbaeabfb2244c89a22d7077a1fc92ec497c03e

See more details on using hashes here.

File details

Details for the file pydantic_monty-0.0.17-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 beecc1f7e5b10db40d7b2b24a68166a36514289a2402bfef370a7984e90a2ab8
MD5 d0fca510d3d1ee4d5a83ae46480bfca0
BLAKE2b-256 a5680bf7c0c627a56d8653b42888a3c1fc33cd33d2532ec456d9358275d7c792

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c80b4d34437abd209c042f81f8ecea81a097022fb9b01431ab859b877edfbc4d
MD5 2739b254d090f4c40865e628ef68b550
BLAKE2b-256 6da27281cdb37481c4252292b63bebf737c87d0fd463f3174499608607de0907

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.17-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c3b6c026d8a0437eeb4d6b2d908be75e2715e0555b9a13f076b7e9ba9bbae19
MD5 80b4ae2ed2ed745e5721d601aba8a9ba
BLAKE2b-256 5e198105bc0b3acb42f6cb48a29669a5e21316bc05e3e9b6fab64cf94b483712

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