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.13.tar.gz (969.1 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.13-cp314-cp314-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.13-cp314-cp314-musllinux_1_1_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.13-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.13-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.13-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.13-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.13-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.13-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl (7.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.13-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.13-cp313-cp313-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.13-cp313-cp313-musllinux_1_1_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.13-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.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.13-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.13-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl (7.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.13-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.13-cp312-cp312-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.13-cp312-cp312-musllinux_1_1_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.13-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.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (7.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.13-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.13-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl (7.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.13-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.13-cp311-cp311-win_amd64.whl (8.0 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.13-cp311-cp311-musllinux_1_1_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.13-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.13-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.13-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl (7.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.13-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.13-cp310-cp310-win_amd64.whl (8.0 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.13-cp310-cp310-musllinux_1_1_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (7.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (8.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (7.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.13-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.13-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.13-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl (7.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.12+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.13-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.13.tar.gz.

File metadata

  • Download URL: pydantic_monty-0.0.13.tar.gz
  • Upload date:
  • Size: 969.1 kB
  • 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.13.tar.gz
Algorithm Hash digest
SHA256 e155813b2bb55f0d6774625621db4c1946e739698718876fab0f4d0aeacc464f
MD5 0daabf47469dcdc625cbc5789e0780c5
BLAKE2b-256 b2bfe03b1807c14c4c5593a24e27397208a5f21b45373423f78897307e7c2da9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 7.9 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.13-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 51a6d6bb86c10b7ae69e5f3f5d69c832f93010256ada7b5a65e0c8e327988117
MD5 b10eec706a83ee9adc389c50cd92edb5
BLAKE2b-256 23a92570a801741fe44a88da96915b3ec32bdfe532087e7ba5689b9f3caf290b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0615f48bbf9e2d7d8fb71cb5d79cb125ef00e3cb3855ad002ac810b636792ffd
MD5 3a8d0bf05876beff896aac693f98350e
BLAKE2b-256 4c389146c57067e0b3d288d116b91a038b722ea5aadecc23c6242dd31102e3f2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 7.7 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.13-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 12a62648a7f2385a210865bf67927a6351ac9088539a557ba1a06c6b4e48632e
MD5 5605f359c09c017b854b5bb248229788
BLAKE2b-256 78d2fc74545415d9fe3deaaca8943353a0b052e5d01ccb9841a7df2654ed0f44

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 118b0b6b52c80f6b4167ff963fe8cb3d717e06198c7808253af8b588d57ece0d
MD5 e6dc19953f3e5011052feca2e1590c7f
BLAKE2b-256 adb564f0486436fc6f332785fe7a929b5b4523fbb58c56881f2cd6a11332e5e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 293f230f4638819b1aeae7f2feed4e94bac67346f566fc2023c2cae0070feacd
MD5 9b290b75e927235612959e7223127f45
BLAKE2b-256 a664b6ebd4627f3fe244f7c5d204ac2e701c49920055c7db5ffdcede71015bd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.1 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.13-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9171ec753addccfab7c494f0c3f91e33b6520876ef170be34e0d2b3a43ca0ebc
MD5 978963fe4689eee4a362327b0c622d12
BLAKE2b-256 dfa57c308d36306d64e94ad557a66780ec8f1ae4258d57c4d2dc9dcc6f50c4c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 7.9 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.13-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c232479a85efe075a2aade1b9500ec53389d072735844aff2df47df11133cd6
MD5 37a1eb03af6c06f7298d7bcb47378c4b
BLAKE2b-256 1d57028d3c4c97a8e69c870d5557fb2d69383b6d9683dbd996ecaaf6afa7de1d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 7.4 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.13-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 807a1a8f2cf0ee07d71d424e9f576a86e57b99d17946ee12bafe2f826beb786b
MD5 cf83f6ad2e9f114a79e5ca4e513f4eca
BLAKE2b-256 89d61cea69e0a056e55df8d76ddfc4c2cabb5947eb49d2d1b237d5bdef1cfd65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f7f23bc73f28683527e3b5eb431cd2cede80c26ddc453952d98e36d85dc03e1
MD5 42b4945126aaa55d965607af8f7bc5dd
BLAKE2b-256 bd5f92f369a466d039d97da3eb3838a2143d953fd900ed843ca0c2485b7989b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 7.8 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.13-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a87ec74c0db2d57656a26d7d07346225dbab74d66a2b73c019e3a94a102fac38
MD5 f523b3b273c59cbb48743e16db564a31
BLAKE2b-256 6c46ee0d20525cb48c3ba37043b13b80451ce024c5f3c691d7f4306517b27af4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e269ea1110e627d7cba00dff1dce52552d097055c4b7a4888846f43921db073f
MD5 73fdd4acda4207ece80198ec0bbf6242
BLAKE2b-256 8b92636983b62acad8fdf8d96ca2ddd2d8607ea3717fd8083872a0df18c79a8d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c013a7a6aea5ce2f2f86c401ee466474a9fb1f53edbf43efbdb099d8db718b1f
MD5 f6f77df0abf36f5acba1296e82093deb
BLAKE2b-256 1889d37b62ddd8bc44fc5bb362e5323969e81797fb526589df621f9a954b1858

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 7.9 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.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1ee215b894b40032ec1072240bf042f677712c0a7cefe2cb0efd6b5d0d9bbfb5
MD5 cd8f2dd0f6b0e690664201aa7a990290
BLAKE2b-256 f212a4458fcba205770e41aed635adfd6bc41508b1abb118b31f2f296f1b4f5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 88c3cf8395e481e1fe06af86a405d5194fa449effa18c2d50fc07ed14315cfba
MD5 e43cd3b0ead3371e59b7f9d5d74ba37b
BLAKE2b-256 81fcdbfca95ebc8dc92efff668b03119a87043548ea3d8d2322e71b17a82ec89

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 7.7 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.13-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1a7a8b580865591443d6fbf6c33d7aacadf25735507eb4c49ae6d3be360454c2
MD5 3b395614cbebc832fa6bcd019c9a3784
BLAKE2b-256 b72504b599ec6e12cd2200961dc00601e4b78f00d4f09004aed6424c151de3b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0e798b1584482e2f05fb4a28eb8a3df73d2d1447157378a3568231f7f9f762c2
MD5 cff6fb4fcd3b304e26c291a5cbd27ff0
BLAKE2b-256 5b0dcff099013dad95a5d10902c0cc1b64e71a25c310119f348a823d7463956e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6572ea0c537f14bf11ce6512a15791822807b07dd6292fa83ebfd06de5574bb1
MD5 6f62ca0dc9edbd8e112269e6db13b507
BLAKE2b-256 db3d397977d93aa0fd68f7bb2b817af61bf7081580c2192899437214041126a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.1 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.13-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6d4d349b5e5b36f334b1184391e42a96434ac363076ef23753196cbafc4a381
MD5 7919b02faca3ed2da3b5d519627c18d8
BLAKE2b-256 bb67b08269757360780afd35cd6f49fdc8ea7ee22b5e5d6da894c701342b4ae2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 7.9 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.13-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3cdb4a9be901927ed30a610b871633998301a5eb97570d988957c4f67daa47fd
MD5 90e9c58dcc22d462a07a47921f68947f
BLAKE2b-256 b2ee91432fd0741ed67a3f986a4a50ecb5460b466621c523402581cd57899670

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 7.4 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.13-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d68d9291a90bfaefce67c11aebdad69ad14df0055c58896505e4c6f3bb0e1d4
MD5 af5524043d837bae1580e0c66b0deab3
BLAKE2b-256 be6704e9c39f432dcd908ee16f1cce659271679ca15f36d1effbca16f7303ff9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 283359b71aa5787d99ce084d3cc32bf08420e1cfc96a2a48a9d973743d8779d1
MD5 a609486147b1a9f832739a38c259f879
BLAKE2b-256 1feb1db0b47347b19240a65afbc2feb4e21b113d0df583857ce8761108e2bdf4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 7.8 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.13-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 83770577082fab8006e43cbdd4d7f212313be57b31982392af21d7fb87d4977a
MD5 8925a050b4c2fdca3bf5e9ff264126c3
BLAKE2b-256 d843bb0ee362ae9e9a2181452b76b3972349cc2e3162cace7be52e6bbdf4dd48

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 68e47f550df6494b5a0ff014d011d4ba190da0ea41f77b27611e15fcf49dbb22
MD5 86be8188ab3774226783d0e0a4580e2b
BLAKE2b-256 4746a0be9d10c66aeb30472652ad2eb27d6ec54b4074904a19976045defe4198

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1972dac14f1a41337f123497412df38066ecdc0ef687a5f0400e4ef0bcb85432
MD5 eafe8bd65d2bd9d0725057c5fc2b706b
BLAKE2b-256 1612108a7f028abe83b92f768c4512d31feebde2acf6221c9750e288687bd35e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 7.9 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.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8be5c75448f52fa4ee76fc6ab2d6216d0d9badee545fb03f07920ca7507a43fb
MD5 b585fcc2ca55a9e8b13c39a4dddb696b
BLAKE2b-256 32c8e4dc69fa7012062e3a208b2a089c7305785a6d1579afe91b40a90ad518ea

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6c741e01bdaa636eb6323a39681b1f42b50e3dc5dd67ea4ef4f58635f5f1c4fd
MD5 5fa6b5875aeec17fa0dddbac848fd397
BLAKE2b-256 94cbcff8be036ef3239c9eda5882da5c4a161e30d4fd7cc3d87a748368d1f70f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 7.7 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.13-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 53f710ae306052f5c580585d067d504a2952c8e7f43ddc4a57df62332da18015
MD5 0bcaa358d27fd7e47fedb9d8d541a6a4
BLAKE2b-256 6375ccf43f712e10c190fa323f62bb37a951ec6adf461a9c0eae195c8125a752

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea36f0d032c37953d207b3d5d0ed1c6364bce1c968724378f7b8db288c232cb3
MD5 f4d3e71539b093e517f73fc98a8c5c36
BLAKE2b-256 5a8dfb6beb100c403457ed6d7b95859efded0f31e3fab82b40a3ed2b2d8e849c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0293fda5feb355a1ec84a43942e3b38f3a2187522596fcbb3c79dd167900d7e
MD5 43746913eec6c8e98210057c3f6f7bfb
BLAKE2b-256 2bc25ac94b7b6c14693517a4553e05ebc3724a4d329ee0dc8c534fe9319a36b3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.1 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.13-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3afb5771f3c2a4b57d2bce57fd8b50b35e57bf09524883afeaf7693189c6e19e
MD5 3860010b0c80ef51360629612a3ec9b4
BLAKE2b-256 cd796ab31e403cb4133aac8cd1c96d6b4a5c3e9598131f523911a69571d7ef78

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 7.9 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.13-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b473bc13d9858b4432b1d2e3e56d7ab32afd619c4d81e0f9d81f3cc1a026eed3
MD5 a63845dd61eb8632c1fbee5d69f6e7e6
BLAKE2b-256 66727efdb492f32dcffe55e7d4b973d895442a6af654d62b7450c0fc53c65589

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 7.4 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.13-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4cd561339525e52104873aaf4690c45df2e649cd5f430a6edea4916350daa024
MD5 ea7201006d26cd8811ebc2b7ecf96b60
BLAKE2b-256 7a7124a4405934382f366474bcf508c8610ad2cc52ab2191cb20e2e871b42b36

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a4fb83cb80ac95d5bd3c426bc6283b8ae193d6f6536c145ff8ef6177a07562d
MD5 4ec4e2abb477b076de7d82b8d5c0cf19
BLAKE2b-256 4e116c9750e94b6a5c049928b1da002944d7b6700fbd98306365630f4fd08e62

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 7.8 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.13-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 45b00be564aa557854a41591d18bc519cd20ab3e29d576581e73f09739d14e63
MD5 8f1528848973eb018486f6f9303121a3
BLAKE2b-256 8e70fc61a121231d7291c0ac17da861642e33584eb5398ac45d11b8af2566950

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea4ff8e9ea4f72d7dc174c9d30b10de232d960293e9cdc940ae4f1078b941030
MD5 82fa5d7f2c3091628e9a8affb24681e8
BLAKE2b-256 0c5fd1d8e6909dbe435544e5186530e2e690581551b124f937d1e556f6737900

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80bd59f79b41e48fd94bbafd6d76a2b572b013235f9fe49f1c2905639fadb939
MD5 33de018933fa7690c7201453f281b974
BLAKE2b-256 0a66034f7295164b33b6a5e0203ad5c2e06901869cfdfd1e26c360804136e827

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 8.0 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.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fee512282cf0fc0172bc4acf96fa89ffef260578a93f560a67b7a6d0373b296b
MD5 027faffc5ba943a9a1a3b5b2321c5959
BLAKE2b-256 793ab739f47af346dc67e0ed41347ea8f10004e8804608908195185f77d588b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 462d5d130bcde168352ee957ac3425ed70f35eb1f51fdd2d9a86adb196fceced
MD5 f87a70cd6c41886bbdb3dd81caed6594
BLAKE2b-256 fb9e713702e0727e2d0d54534f90aed49743b916798f8ab28c13f7729e503ea6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 7.7 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.13-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b87ea143a65ce933659128bd8e3481c721658fcf52f6dd3f6dd913b6d2cd4b1c
MD5 7a422b9084e806ab9616eeee7e3bb5fd
BLAKE2b-256 b5644a5d2346606e70a782debf327c586f77eda573f849147d5df2febd84a412

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 20189fb0392b635c346944c6a1bf98805c03c6ebfe3f4d928d5a9c8a450ace37
MD5 18fe78c80030793b0a89b71fb9ed6c38
BLAKE2b-256 4a3235324ac3e5aa3be18b5da1b21535f7c555b70fe12e979f0fff19ef450e34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 7.7 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.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2efacd7b21f6925b7c4ec0975b0e86f4d34cea6cd1a30939e5cf1f581b9b63d
MD5 c8fdd7266a3e5d2bde3cac384588ade5
BLAKE2b-256 1d397613e6706b0f3cd0a9599b404caf728772c76da147c840da0dafd5b1e97c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.1 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.13-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a68dfeece65016d2f02efac4dbae37ff9e3fcc204a314200504a0b38a14d0cba
MD5 884b2d97a26128275298ff6b57f1f095
BLAKE2b-256 53287c87413902a981bf768d461ea975f94496ec99ba11f5ff56547a2deaa4f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 7.9 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.13-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b91714a37576ae2b3cc824815d6c97969448106fe3ad5c3aa466cbe482d5a21d
MD5 8e760f7d2be0613bc762986967894fe6
BLAKE2b-256 73b1ced36a632a2d3459dab6eda7bcbaa97ccac0e3bf0c16008c11f813b1ad60

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b6692e8dcf9bc66b4549cb8d77428d74539608cdc42dca8e539b3a26a054413
MD5 d34e665a21ba069ab8d4c7b3a8f90b65
BLAKE2b-256 e4bab545194889d613c13754e755e58ed19022aaa5316146aa88b6454593db8e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31538fcbf1e7039b51247b3c92248794e99f80d282c4f754180a9fbcb6e40c11
MD5 287cc3b7e920d383d10f411476b6de26
BLAKE2b-256 35d914ecf503c786a463b77aeee5a4354347505f2f9594bdcaf40b9fe9a97e34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 7.8 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.13-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 fad67294ee7d7a654a6513d91f897c27d63bd57096ff799990de555e64caca27
MD5 7790eaae8759256606dab9cf643439f9
BLAKE2b-256 a55a5fa929d510a5d38dd616e60f33adb6e3fc741b02d9f15c81aa6258b1b685

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 22a60a43842d10ceef511e0ae47ff7eb575112aa256482e5a0ef6ccbc1aba2b5
MD5 8aac9ce3ede994c4842d7138c1d4bf3e
BLAKE2b-256 668b6584cdb8ec6eb806bfec5cff157e5afa204c7e5d2246133c39b50bde7884

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a4c2f3830dc5438a2af541610f561ece2b2dc808f5ff824052a05ce301346c84
MD5 6efc555c4945320609fcfdfe57883173
BLAKE2b-256 2b216f88706f0bc6c703c6cf40f6c3993282b4f72f08368b3c9e90dd31782312

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 8.0 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.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 88498c7eea3c7a20735b6cf816912d2c90ae531d16ddaa72dacf45bd2f28f590
MD5 d6780cb4f9697437e88f7d0b1bc607c8
BLAKE2b-256 67702b75010826872b6ef025cf6a0bec9e317107da24b036aac23213be6ce947

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 42f7f9f1152ce429d7e204c62e4c646843bf6ec5ac837c000a43bfe8f3505fc0
MD5 2dec34c6ae3f60357bdf7e95510c4756
BLAKE2b-256 0151ad5322a1b762c3a9235871193500ec42aa1632267537dcc65c160f660847

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 7.7 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.13-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f00a56d82cc0fd005670b1132be28bacb6b05eab6bc5288c0a8b118731992ce6
MD5 c84fe8566dba37dcacecfbc2b6bfd5cb
BLAKE2b-256 0cc5175b2e502028e8bb0a6c3f78ae56e87e1bec8a777671157aaf9847e7ef28

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1552bda38bb5512528fc00be79e050e0ea1dc7904a18bc8c45d0d6853f6728e4
MD5 1d0ac1e2f360f8307d4e3e038bea4a6b
BLAKE2b-256 4647382709b480e12db5bee7f9cff4cba2f2666dccd310f47db1394680f7abf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 7.7 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.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e0e8cc700a775b3852d323bbedfa0d3bc04b7245943d647ee16e07fbebca75f
MD5 8557340766df6e55d8ec2d786646e23d
BLAKE2b-256 c487412651d12b74783d5cff598d72c1ef005af33c6af2178ee7df1f9cb37a04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 8.1 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.13-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 88f460a94b33c6f344389a9794ad31fc9dd321bb11bc58ce90bc79387957068a
MD5 9e2b34010ab2a4171dc31a2e2d7d15f3
BLAKE2b-256 b3f3d07609bcc4cce61a9cf275fea377eda50569106ece7bdacd597aa7be4041

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 7.9 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.13-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 980a37601e0b1f564c92c18f8da1757f335f39676efeebd7fe67abe0f17a0ea7
MD5 3de16434e0dd504e8303d053535e98c5
BLAKE2b-256 6bfa4173ddf2b444ced10416a5c98b32df988a3de37547bfac028ff3b17cd5b0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd281e0403a7ced1004b1ae429c99079d2c2ee75bc137fa13838c8011246750e
MD5 f3bb216c0aac422b81c5bb9893cac5a0
BLAKE2b-256 b91b2db0d388695185b6e2591831ce7c8b345e32a9922d7d07cddb204a50de8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e217f819733812b6c38be9d437b1910d15eb925a5b1bb1df7dbc7dedf4f8fbc
MD5 49cb7cc8a4e15084a097e79f1e84d7b9
BLAKE2b-256 42ec3badb42e796d88dc790e7bd26685d7133b24b92c29c2f5afe2218ea6b3db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
  • Upload date:
  • Size: 7.8 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.13-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a2d108ea9d687d3c750da432b1e5191043583bf6a9fc2c1d591057ca0bad38ca
MD5 4af0cd89e168fcab17eaa7cc38383aad
BLAKE2b-256 cfde514fd38a671fb973c2e8d85bba266d7b138d5094609110ab8293239ca74d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53cf28166d20dac01b0dc357e414035a75e073acf477749ec11f09395e6ffd12
MD5 8190d027abe42337ec34a93f0e993419
BLAKE2b-256 f8d33285b88be3c5f222efe74d4113627aedb598f80e3b01ba6854c0696e0334

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_monty-0.0.13-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.13-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2f43fa2d183f1e22afd24c0e912d0bb9729e501e6dec237114f23a582c6dac2a
MD5 4025caae3b13969159806c0a477a8016
BLAKE2b-256 4757ab563739a9404ad4665a64e06607f1c37354c5d7b91be5e3b669321b663b

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