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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.12-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.12-cp314-cp314-musllinux_1_1_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.12-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.12-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.12-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.12-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.12-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.12-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.12-cp314-cp314-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.12-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.12-cp313-cp313-musllinux_1_1_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.12-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.12-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.12-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.12-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.12-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.12-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.12-cp313-cp313-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.12-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.12-cp312-cp312-musllinux_1_1_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.12-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.12-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.12-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.12-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.12-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.12-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.12-cp312-cp312-macosx_11_0_arm64.whl (7.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.12-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.12-cp311-cp311-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.12-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.12-cp311-cp311-musllinux_1_1_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.12-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.12-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.12-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.12-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.12-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.12-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.12-cp311-cp311-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.12-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.12-cp310-cp310-win_amd64.whl (7.9 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.12-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.12-cp310-cp310-musllinux_1_1_aarch64.whl (7.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.12-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.12-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.12-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.12-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.12-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.12-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.12-cp310-cp310-macosx_11_0_arm64.whl (7.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.12-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.12.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12.tar.gz
Algorithm Hash digest
SHA256 3641ba8197bf3b3fd8129ca9d88f2906ecd00358ac7f1d9ec09fbe282b8c302a
MD5 bf790bff5a7a37e7c3917b3cf4b6da28
BLAKE2b-256 41d0d68c91d30fa67de12e13612bffa274991c5f2ff7b6018a625b48aaf1bb7b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 6e3c51ef89f1f44b135c1fff81faffaec4172e76f42e2bea41e2f4eae2de5104
MD5 8a954186e78e7ed28677848c4a351b70
BLAKE2b-256 e2d93a35f4fdfc80dbaf5097b3dd9913298e0140af54c0ae0687b99bc6a87287

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7338cfebaa86cb12641776722e481a1a52c2365feb7b3b91ad5bb64ebacc8c27
MD5 4a5fdc42d0d97686fb764f729e0aa777
BLAKE2b-256 15f0efaf1b6657a7d5041d0227e80c121fd5ebb2649bef845be34e6c7e993f5c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 57837c7abebd9a4e9291cf9438e1ed16267e04033cb18bb08967b1c307412a34
MD5 7e891cc3675373221eae649fd9ec6d19
BLAKE2b-256 b9d76277dbf8d514c5a5312fe653155bdd4c2752e4b05a4274cd81b24c6b0125

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a54cc04222bb79b35318ae9e606ba81080be33038bd72a4a106ba556c4bd083
MD5 3b63e1680937c05a643476ae73d988bf
BLAKE2b-256 e864f6c634a66f495355bd3a838d5cf287502eac09cd41c9bc96aa488eb735f1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f02f0403613214a17efc4243c6545f5456a020b3a104093a2c3d8259efe6ab8
MD5 7f0d56a157326af2150c4a8eda3df747
BLAKE2b-256 56191843c1d740e6d1e99e37816f9d459325a3f33a435fcd9dfe6d325dbbb2e8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ca775007f55b98731881ff0d1589226e668edf1e48c3c0b6d12f387780299f6
MD5 bde3bc4adf87fc4c2e0665357dc39221
BLAKE2b-256 52d5fc346b5a11a9dced12b179c94632ffc14f62a2da43ee078db409992e8723

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0624f251240d8d1098942532ee03cfcc8d09a9c1065332970e059515e7dbbe9
MD5 38dc9f13ca7a2aa66f23937f1e5d26c0
BLAKE2b-256 9c4bf29b72590e421274c4c3ba25b5137e8321d846d00831f0a3a139d4dc12b3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 92000cb570bea9debb62e41c9d0e4029b766e9fdb14fdf351a72809f16795e22
MD5 13592308048b7607f477dd37dbe9fd50
BLAKE2b-256 109a37190dba2e8c09a2a58d47e5591733350a11a71806a43775c55d36a8c957

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb0540368b2cca071b18de2568a14e216c63747c7bdc457a06545e5d277a6dbb
MD5 e627e9090514c8152aa9f4f1e9d89c10
BLAKE2b-256 7086f3e72463b803ac961f673d9b0007cbc02be427b8077d74a8eeba59403239

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 2d593638d2fd054d5e235e55c44d3ee17ac295289cb98fd8f6cccf52617f61ff
MD5 b473a6f39343eed9d02dbc0c62afb976
BLAKE2b-256 bee59fd342a6f750af5a0748fe6907f28a644a09a0c5fe306804fa37db091f47

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d99462813f411b40f3a75cbcd4fcd77ae2fb27d61d122ce3b9b60d3f3448bcfd
MD5 5dd8c459a9b21e110ac27aecf420b84a
BLAKE2b-256 13857cda0d4f1e4a2170bccf0d06d5e6e5dadb93bc7e87be637985ec08ae8542

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 998e21b24cc469e7e36ce3a6c418afe23425c4632e7f23f59259080ea0c932a3
MD5 035cb9bb5d66d0440cfa049b9f5726b0
BLAKE2b-256 6da8a19bf726130cb1fce0d671c5f9c16b4bd3a3ef2d822c9cf03bda7abfb7f6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7963b2c0e64d13342ebdf3b777d964885788eae66b7d653590392d4cac8f0e57
MD5 5f6b6d14a93353a1076725e4c4a958d8
BLAKE2b-256 615cfaefd91d47716d3d0bf83d0a38d9287fdeb106b9f998181ff3dd14818a52

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e98e9e1b138e95f0880fed5341d4db48f19577fd55c6afbb3427d3736ac5e634
MD5 397cf2f04d08ac33ad4ad60e870644f7
BLAKE2b-256 96cccf1a976ff8d06e5db0e3d50ba715b11355dd00effea498174af462a44e86

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 454319cfe0bab6cd9ba2f00b4a6febf8945a1c2df44c62e3595bbd2b203fef39
MD5 10a1785b2384828b1eb94aeb56e0b9ea
BLAKE2b-256 f7c1f958dd07369cd78d303f6984876caa27234af98a6cca9e5eb5f6ee9ab006

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 80df3a345b57ee3d30dfd99f6b9e61b5fa38c98f3b0e95053b306ae8e4b0081b
MD5 33a9bf1f835982314de3867c0edab98a
BLAKE2b-256 96df0271588926be81681f61c23b9b51a9e99e23c6c0a41378243d4365b1b736

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e391d956d2b5d5e7069aad96013f1b462feca3e813884a650d95af6d10210bae
MD5 6327c5b23e1d13112effa79ef15d3757
BLAKE2b-256 1f8b671d7f998b40abb19ae8271f2093d6e70ced0682bae620e940e379afd325

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6def8412ad091ec7206104e085b8f6a485c35a959cd46d0fd2ce9027ed12fc9
MD5 d3f662772fff7fe093f99d2cef531e18
BLAKE2b-256 0a06ce8a344d16e7e32bb327b21e0d0d68f6a27bd031afa72ba5f96e255455dc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 483f84aaefd37b885c671314b606f25ec7831d27fb53e69cabb750c79a2db341
MD5 707538e4768f4e9831e19b728d19e930
BLAKE2b-256 da7715651a06564732d419f29dee54bab211eb8b0181d9ae8f5c2b60351aa794

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d573ffc4340e647a95dfd8037c297368c86566473325ea7c36b717fca1b9db3
MD5 772c57e28dcdb1da4ed238ffe2796890
BLAKE2b-256 49ca98598aa486c956bccd5b461f8d750991ec1d2da3f8dbc790f4ff1342d756

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b0540f0529350bc552d5e03b1a30058cc5c89ad5de6b68568f85d84f015021f
MD5 0540498e6d2475509ad3094cce08fbda
BLAKE2b-256 81a89d782d4599e94cf5989d374c803eff3b6b35b2330941c925cf9d8b2f90a1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 0d341b911bf90927a64ee5aaa0433b5b4a0fc9cbf4bbd4f491ff09b041a833fe
MD5 94a7bcc05cbc8cfa24eaaad34d58f07e
BLAKE2b-256 7399440ec4d24b723d66f897c4cd8ebbe1c042c2c688fdcd690b031eec4ee712

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ae3d8d46d204485b95dcc29b3708f361ae8a6c7a0b2b9a0bb28c09b074924f2d
MD5 7deffea35a2286c91a3baf2157d23133
BLAKE2b-256 83428cb9b5b755513a67871df11b885a613e043f537ea4cb5b55dfed26a6276a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a328aac4b705a1c3ac9e2fceb049105225d835ec349f62fe5be1bed784f6adc6
MD5 f95943da105ca95a9f95fefbc129fd55
BLAKE2b-256 942f66fd04c4c06ff2079dbbe05335fcffe606ff8ebddc582a5749dd118361c9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 798d9ba17d8f9c6f41a92e4f91b9772198da26076c6ee8ec595a0f604100e067
MD5 d194f113c916d2611d6ca7a2e5cc2c36
BLAKE2b-256 84cd21b912a489ce7fd3aab6b2e4ef17c9eacb2df7ecb2e5e112ad446809953f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1616dd0f9274e4deb27e8c4e9ba33c9f1f86b7d139e8816902ccb160c2d27d53
MD5 13407b19485200805d18d2f382c2d7b6
BLAKE2b-256 dc18df9cc12698dcf0be84bea0d83220fb28cd3735bc7d8a4141be43b6aa615c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8be821e3a7d98f3a331ed0d8f2e0b8bd230257646a268b5f5802fe1a02b233e9
MD5 e98570cc6965c5f70ed7efb9c01257de
BLAKE2b-256 ab7b4a20b619ecd2945ca38fb318c9c8dc51dff005bc2c9c257af5e18f3b96d2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aaa0c3cbd26ed08139b8d5300a0fc85016e22f7baf7ea739eebe04abe4120b3d
MD5 15b68bdebd65983ed77f5eb38d7ac8cd
BLAKE2b-256 05224f1df23f1455c71e507550cd9b470dc43567035f0cb07e143bc92e5e73f2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fea505cda5cf5b55a015ccf6047a9071fb55a15c89d6980fe787977e7450458e
MD5 69ca458fa052d2dc6744c3977159377f
BLAKE2b-256 c2ae33978e1c656379236690a8442671aa964f349b11ea80a095fa7e291f9756

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f0c80ad8ca4f1cb1fd0e1a6a427291449393887832308b701a97ef20fe7f360
MD5 d56c572a1dabcb6989ce1ff01513d001
BLAKE2b-256 5733aea4275c74c712e5e8c79c338dfa9f842b42da9aa99c9c725803a76ede97

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f801c69679994bbf57b2207d50a09196ab9ce3d6e308745b328966bf607fd78
MD5 7ffa00728d11ced327ae9af75644ad98
BLAKE2b-256 35df99cabbaec8447794c30d23162fd8b3bdc072a5e3a03318945274b1754c9d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cb9d4834bb54f2e99d4441062900fed6acc9c6dd37bcb9b1a986353e2c6d8c44
MD5 8158024ef42042d73e43d29ff341abf2
BLAKE2b-256 5d86af3daf529cdd16da96626c109235d9c2a78eb85cdf48aa6f8b341e8dd127

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f88faf22e7ad34e696f2916c7bb07ae0612c51d36fe3acb055d515f2343a38dd
MD5 73b5477d8e529f5ec53a5657282583aa
BLAKE2b-256 3a3e856e9eaf5a6d3bce7e6bcde0000335eda53c977f518fe31d0c839559a465

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 8c96ead072953b69f2500a594e369863ed72492eba399553c92211a49043d557
MD5 4fa1352b542c734e7d22f0e9e1d9b55a
BLAKE2b-256 90e359d0a54693c18d02e03fb6ab2d1505e0978b5623bc1ef413c881db7b0b10

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 57b7f42ac685d46a11d057ca7649868f32af611fc39ca7ba3dcf46aa386f3cbd
MD5 78d26ca784ad9407b2e224cdc6bab09d
BLAKE2b-256 915907f3763b07a475271fb9f3a65da5d7f3646aad7925134e0d1104cc7bca54

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ecf443c234c88ae458725a3455a67344a8cb080ce60fa35f9d085a352921984
MD5 8a6466eccb26bb7eac720f6728ad35a8
BLAKE2b-256 7f2b62d77bf4066a57b0a9bb2c3ac7516aab479bd4888691d099a48edfa8e9e9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f4d222deb40cd5d4be223fd3b09f960db6193ab9097468e6eb94ffd49ddf4aec
MD5 9d908353398d5b951d5ec8b09c258063
BLAKE2b-256 dbe90a831382f8a4da6a568a36fca2874f784bb96ec045210405aa232958ab9d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 082cc1dcc868c8252064ab53a8854379824648ee7f8338be42ce429c92e87549
MD5 aae09501719b2ceae502d7e160cad782
BLAKE2b-256 02a97c756671c6aa5b03fe71eaf137929dadc8bc03201f25d8e70350f8b10a36

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4933a2e23b797e6edaeaca6b9c9919031b5e13b3db161a130948dba748b08a25
MD5 48aff3a19c6111f9c058d73684dbb8ae
BLAKE2b-256 56e7d4ba056dae83bc5e3afe04c9b5bfe6c5802b6f187eeb7e4305996f4f677d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a68c55c0d33ddc897602c1cc89bd997d5299658accba1b063d410489dbdd42f7
MD5 a23efed86167d1514fbc6d09815a126d
BLAKE2b-256 ae16a8ca40400cb104369a57749f3a18a72d2c9cffdecb05e9eb723d124e0276

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 df683d01f7d1c92ee1cee9c379ebe8f7ddff19669a50d884b5a651015038bd4a
MD5 20728a62c3e308c12d92a8e5ce76ec4c
BLAKE2b-256 ced0bf9af68e68ea85c4711fe172e58b712033606c997e2e22fadf46c9e59bba

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3724d74cf0608e208079722f371721b86610347fca5c56a8397ba41aec791e2b
MD5 dff360ca2b2823ac9916aa834c8b54e7
BLAKE2b-256 46b6a5b02d9b6d990134c92aa042cbd0353378c63473750f7e420a952ee290b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 110e76ab38344c60097810172f217b021e70e2671ef5b595d7a6ee1b9781565a
MD5 d020146f976aa04efcd954f8ed4f3944
BLAKE2b-256 c26a894b4d15ce470a3156adb61bf334a36d0a746cdbe80a445a033c109cd850

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2aebf054265c949845ec972369f8e09ddb1d5aee4dcf5243d8659cc03c7cfa99
MD5 e571eadf0a72991a37e3a203c4f211fd
BLAKE2b-256 33fb1194cc72cd976c97910896c3bce0007190e933a068c3efe5ec78c298ec64

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d374434e7f9022e52faaeca347b86e6418534dd29758f4b4d561cebcda277233
MD5 a3cb61c37d77b8e1f9cecfa05badac00
BLAKE2b-256 70f67fbd36f6cdad9abb364fa1da1a6e2b85a3ccf2d680a477fd9cc7620a595b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 5c870abfc36c73642d54096a91b07864c8b805670e3d191dfe328e26b3f82e5c
MD5 93152e5c4b9a3c6f6669b218e6f3928b
BLAKE2b-256 db510ffee7f64c79af9ce0f4d31bde5efa1ca12c3c3487d2bcda9e458928050f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3998980d2841fab0ca86710e548b17883b55e7e0ad32cbad192b7f5bcadc3f92
MD5 834c8804fa00c4e935b82bc873abed9c
BLAKE2b-256 9490035bf62d5f0f8d18a4d93e5b2768c387615d0bdfefb62727d5b6a4c0e313

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 843ddebe10db212efecf59b29011b79c58eeda61cf6ac3b63c44baa1a5af4ecc
MD5 afd679e1b8963340ef3b0ac2031c7982
BLAKE2b-256 e8ac3a62565ddc700457cda4722ffebe4fc053899c2c8ad23d9fb62445fcfb25

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2ededf174d8b4ac4d04bbff2435b174b090be9db213068b1af2ccb99db6baf3b
MD5 738ef023bc4986740df35943754ea220
BLAKE2b-256 1b5a6ba38f447dbbffa64e8b77d1f9f7cae98773afd9b048fd28e94be057f609

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 61e4db3a8825905870af9b9332508db662b340231742bead180c0d5c81ae85c3
MD5 c4ba0ddecb01703693964e197efeab5e
BLAKE2b-256 f8f0986954faf75566d7ef2ea72d990634b073dadb3ec0e861616ea0bca8ac8c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fbe0d442e3d9cb358143d42b1b58e0defcf8c9188b03e8262db069e647a4cb2c
MD5 2a11bf17f6d515e0c2532ab99d4430a5
BLAKE2b-256 e92bfb738988975b4decb3b57f2276e229914ef8e920e7f0457cba3f6041fe81

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 64cb68dd83b41701baf68595d3743adb944a3fd444f664dfaea5981e25ea681c
MD5 d99ac4f382e3409259cddff3dd311ebe
BLAKE2b-256 ebdf375a0e662dd125899c7ed302f68c8bb51a426361b7d7deeb893dada9c257

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ec183e30861b241b06e3d490f5ebbc6563281f6c508b7ce5659d1590b059867
MD5 f39dbc6aacd480caa8584c3d53a921de
BLAKE2b-256 db0a2a706501e0bbd65985fce8ee0f67a77976686a47492fab29636d673cecb7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2193b830413914d16e949caba03496664c2f0f8cdfec9c0be881ba6074dfd6f
MD5 d9fc745724e6b89ca6777da85ce32ed0
BLAKE2b-256 4e4fd9bf31a1c740de911ced1fa1a33a89b5e3ed16f5f1af00cecca644727c6e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc96f060100dc165afe91caca857028174e9395938527c21c2b9e62520fe7baa
MD5 000e817cfef2f100c497c2c236099937
BLAKE2b-256 711377da176c1e3a73ca7218761f10758776dd09af6397aeae3582eb086eea75

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b5e8d185c9f6902bf258acb9e667faffb0380fd63102c79bd5dee47403abfe27
MD5 a766580b7590e36d7e52647728e145d4
BLAKE2b-256 5db67851b3ade31752445d66d3b132dfcca26302f8d502d059c92a4d079794d7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f60028042808abc0a0989d9fdcb670f4a8a97e87f76615edb1dfe9d057ff03f8
MD5 c0ee626ea4301f6ed4d3cf57da01c3c1
BLAKE2b-256 e01d564e47161de62b68de7ffdd1ff9b5d3637852b10e2609041bb34997bc977

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f28779971b4599da3b9a8ceadce428dbb265b68bb139dd377dec04a2013acb1b
MD5 9fb3eebdb683b811deedf54593da1423
BLAKE2b-256 24958c624ee13ce50f23a134d187f92ea6554d27d6b89a1f1b786c925160f1d8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26f5128e2593972e90b27e78842b1a4a2982866a2710586d215ab5d0eb072c0b
MD5 b498beda9674d77876cc7e51c8c219ae
BLAKE2b-256 96bf78aef54009ad6d2122d9ce81cac0d7f975246c8ade996e93746ec272df43

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.12-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bf593f58ea4860ae711ddcee8d9851f4ee3d051388c495443c552cbe78453d69
MD5 7efc4321cde099c170120f62d0fc4298
BLAKE2b-256 78edcbaf79841f02db3e1cadd292827e97b9480e2eec6fb86251e391011d87c0

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