Skip to main content

Python bindings for the Monty sandboxed Python interpreter

Project description

pydantic-monty

Python bindings for the Monty sandboxed Python interpreter.

Installation

pip install pydantic-monty

Usage

Basic Expression Evaluation

import pydantic_monty

# Simple code with no inputs
m = pydantic_monty.Monty('1 + 2')
print(m.run())
#> 3

Using Input Variables

import pydantic_monty

# Create with code that uses input variables
m = pydantic_monty.Monty('x * y', inputs=['x', 'y'])

# Run multiple times with different inputs
print(m.run(inputs={'x': 2, 'y': 3}))
#> 6
print(m.run(inputs={'x': 10, 'y': 5}))
#> 50

Resource Limits

import pydantic_monty

m = pydantic_monty.Monty('x + y', inputs=['x', 'y'])

# With resource limits
limits = pydantic_monty.ResourceLimits(max_duration_secs=1.0)
result = m.run(inputs={'x': 1, 'y': 2}, limits=limits)
assert result == 3

External Functions

import pydantic_monty

# Code that calls an external function
m = pydantic_monty.Monty('double(x)', inputs=['x'], external_functions=['double'])

# Provide the external function implementation at runtime
result = m.run(inputs={'x': 5}, external_functions={'double': lambda x: x * 2})
print(result)
#> 10

Iterative Execution with External Functions

Use start() and resume() to handle external function calls iteratively, giving you control over each call:

import pydantic_monty

code = """
data = fetch(url)
len(data)
"""

m = pydantic_monty.Monty(code, inputs=['url'], external_functions=['fetch'])

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

print(type(result))
#> <class 'pydantic_monty.MontySnapshot'>
print(result.function_name)  # fetch
#> fetch
print(result.args)
#> ('https://example.com',)

# Perform the actual fetch, then resume with the result
result = result.resume(return_value='hello world')

print(type(result))
#> <class 'pydantic_monty.MontyComplete'>
print(result.output)
#> 11

Serialization

Both Monty and MontySnapshot can be serialized to bytes and restored later. This allows caching parsed code or suspending execution across process boundaries:

import pydantic_monty

# Serialize parsed code to avoid re-parsing
m = pydantic_monty.Monty('x + 1', inputs=['x'])
data = m.dump()

# Later, restore and run
m2 = pydantic_monty.Monty.load(data)
print(m2.run(inputs={'x': 41}))
#> 42

Execution state can also be serialized mid-flight:

import pydantic_monty

m = pydantic_monty.Monty('fetch(url)', inputs=['url'], external_functions=['fetch'])
progress = m.start(inputs={'url': 'https://example.com'})

# Serialize the execution state
state = progress.dump()

# Later, restore and resume (e.g., in a different process)
progress2 = pydantic_monty.MontySnapshot.load(state)
result = progress2.resume(return_value='response data')
print(result.output)
#> response data

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

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

pydantic_monty-0.0.1-cp314-cp314-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.14Windows x86-64

pydantic_monty-0.0.1-cp314-cp314-win32.whl (5.3 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_monty-0.0.1-cp314-cp314-musllinux_1_1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.1-cp314-cp314-musllinux_1_1_aarch64.whl (5.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (5.7 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_monty-0.0.1-cp314-cp314-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_monty-0.0.1-cp314-cp314-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_monty-0.0.1-cp313-cp313-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_monty-0.0.1-cp313-cp313-win32.whl (5.3 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_monty-0.0.1-cp313-cp313-musllinux_1_1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.1-cp313-cp313-musllinux_1_1_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (5.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_monty-0.0.1-cp313-cp313-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_monty-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_monty-0.0.1-cp312-cp312-win_amd64.whl (5.8 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_monty-0.0.1-cp312-cp312-win32.whl (5.3 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_monty-0.0.1-cp312-cp312-musllinux_1_1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.1-cp312-cp312-musllinux_1_1_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (5.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_monty-0.0.1-cp312-cp312-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_monty-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_monty-0.0.1-cp311-cp311-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_monty-0.0.1-cp311-cp311-win32.whl (5.3 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_monty-0.0.1-cp311-cp311-musllinux_1_1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.1-cp311-cp311-musllinux_1_1_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (5.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_monty-0.0.1-cp311-cp311-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_monty-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_monty-0.0.1-cp310-cp310-win_amd64.whl (5.9 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_monty-0.0.1-cp310-cp310-win32.whl (5.3 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_monty-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl (5.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_monty-0.0.1-cp310-cp310-musllinux_1_1_aarch64.whl (5.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (6.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (5.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (5.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (5.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_monty-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (5.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_monty-0.0.1-cp310-cp310-macosx_11_0_arm64.whl (5.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_monty-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl (5.4 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e047d7c1e3d7afbb72681244e60af048183efe45e99caed58fa77d39064f7fe1
MD5 99fc7662622132aab3e225e0146c84d3
BLAKE2b-256 4f9d1a961e5877562f7d084aeca23c7b5e47b27b561ad2fe13927cd9a807c165

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 93e3b7230cbe1acf024a9fcc7d91a2297bb13406bd86804ce1cb9eed61bf24fa
MD5 7af2a376e23ef62f80bbf9d06b81dbc8
BLAKE2b-256 ce8a746d9e59319d0e1527929970700028191499d6aaab2dd28b689982687b93

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 86f013ee6c9f99aceba6c7f6f7ab937f5b7c8f60cab818e55375522fce3c224d
MD5 81cbbc71fe862ee34133b8b45fa4cf95
BLAKE2b-256 e1607de3fb03a9bb416400f1bd318228cd4f12f0a8109e01a74f8a315dfb845e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9fe9922dcca3dbda4bcee4e16f33a553ab5e78565e541eefd0cdc076c5f1f2b0
MD5 2360fb9fe76bde1126e41df7f986d027
BLAKE2b-256 81a75be134ecdb34162c499957e685eeec7f652e0e429a3f201b1da7f1f841b6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8e0f7eb99e239c8bee50880d0091fce42e6a6050fa64074b3949c5dc2a81349
MD5 a4181b2449be1a818dd2780019a20670
BLAKE2b-256 6de7818ea4261d23e45d5dcb72d10818f7b999a9e7df89979268a7106908eb97

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eb5b9476362039dde91e41a0fa9932d0491fae19db394ea27c0bcad0eb621090
MD5 bd88d72456b64c387b1229c58a0a87c9
BLAKE2b-256 7166cde3b423e8f039abccc23f43bdb303bec6d69719e9fe1a391230e894a346

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9f10712b25958ec9fe7433c8c3d9a95d505f4d4444e3f7681950953a9114bed
MD5 3d22fe3efc3e431258dec6f3247c317b
BLAKE2b-256 66663f28a6919459f6e760985a7f280bb30c319a453a1c6c093b17a771fa7f02

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20769e2d9c73ce2e9a2d2cc0b45ead3dc69de8fa946afca03a011df68ff11933
MD5 a269c6c6d2198c3e8334f1402eefbd1c
BLAKE2b-256 1924956ef1eeb540be6a5201ed610fdb23131aab912bfd16bfd959d58c1978f4

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11dd63fc137d0ceb97f143736dd983258a9dd47c421ef5cedb575869b3bc872e
MD5 1f29374b03b1e6eec2d76ed45202190a
BLAKE2b-256 0326527fd03a0ff04d5515551b2679ad2ac62d72922a63f9cc7c96ccb303cfd5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a62dea18a85f651470b2ffe72d138919fc8ee967604190b8b759de4eba969fc
MD5 b2b1fe9586aed603e410ccbd6341b6c1
BLAKE2b-256 5ac75c02f1b703932d358113b59e7ca0b7737ec1f517fa1efd641ee075f3aefc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e41ee97257bf804a3dbfaf0b598e31009d5d07772816e5c0cec0becaf2b1881
MD5 87dd4d5c1d8d7760911fd835e7efce62
BLAKE2b-256 82a3cf383df0a42c86c8fd4f273c26cc1b4d89ac0ace91a75490143679c6b563

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf6301f9d13cb5b2e0b6651bd400f05cdf8f644b1afe2e5e90ddf3661c91257d
MD5 10ac701386dfd746fa51aec461ac837d
BLAKE2b-256 11289c244f9f632ffc7708d40baf20a1cec7a1bd752d51089e6ac0507882457a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61474effde5c2be2dd3c9eaf6f04b3fdf407678354a82ae1485cc7103e1add15
MD5 bcebdbc4bc393112fc9333f2c2ae7611
BLAKE2b-256 86a6bc6d7e5f17412c392b89b87c33b183007a4944410d947677e282a03c02af

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 4deac73b0439b5e19da9532f8ce97a89c8d27ffd8c28cfe0dc894f5cfd28e06a
MD5 5a40b784bfa80730630f708d541df8d5
BLAKE2b-256 a8178f3906730934fb337a1c5f3d46a4b501fff215bd313eb961278ead447944

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f1c390701bce58c6c75dc2112542c666fa574d31f5261561bad7c113142a7e48
MD5 80e9d2327c192c287982ed525d798286
BLAKE2b-256 8fdd8f9708c66fb16613d646f18d8a5a03b8a0d0b0d25baacaa2810dcc248deb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1fc2cfd9a4971c15521110426b1ac24f0bdba4a24956bed9b164d16b42c1f33d
MD5 283a0173fa411547c11c9fc693971a0e
BLAKE2b-256 3e31528a0c70aaaf75f29430e930dec045eb42f9444e5e05774912c1f127939a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a106a9b53b5f7b0afe0ab03e115726f00af19c72616293d93c40421f46a6bf70
MD5 d84e96bf3e00e63875ba70379ae65647
BLAKE2b-256 d1b569cbc3a31c1f016dd4e0b1ea7360496d23fe94680df20ac88183166e5ef5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b55c9ecbc587576fd765999b241a616f67ae8ed7251f7583fc0f8b7ed8689628
MD5 3283a1ede88d22054fba3a01404582f0
BLAKE2b-256 821a19b629b4c9735f12e83193a259d9e666aff72826a3e8f3768c50f75af93e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2103c5d2e4b56ac14f27a5dbc95c97c8903e80e33054316af34e8bd508a59a30
MD5 f93bd024ee1d46a4ffa3ad52e9f05166
BLAKE2b-256 2cbdbc40edf658790540ff85a1954c8d03d484953893de6f190e4bb0443f9b05

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fded9d104a4f36f067dc77fe076718eb52e7c3539f7ed6f0050679514f03dde7
MD5 dce680be1fa82d0459fa7566fbf786c3
BLAKE2b-256 8d520c15fb9804d14a284ddcf5fcbb4696f0d404a2c70b5a03959270ddb613c8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a24c360f9fa345edac74d8eed4805bacfad30fdb230370d4aa24db0fab06999e
MD5 e56c36363069eef5a9b4bb71cbcbad57
BLAKE2b-256 c82b2cb778b560e142474f59623fcfbc3df513a9aa02007d5c2a9210f3595ead

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f603d3a65d703f487dae06c6ca71fe95267eb2aed5db9f20e40c1ffacea9b03
MD5 10a776194be89843ddba158ec80a2018
BLAKE2b-256 9d992bcb452ca28ab519cd12df69024056b710948ece3df53d4b28184028ec38

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0288e676ff31a94b83ff2bd6b4423d183e3646634eae2f19e1aff0e10df6f91e
MD5 67e7293c9466a61d25381f1aa86ee113
BLAKE2b-256 0e4f169f5d1fd40ce30d2c8647dd3c64ff8a4c70de13a2c49373ed7cd67b855d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 282e43ec2b344b8b53353c12e5646b24f290d79b689ae9b51ef1b649172bdc72
MD5 80b396c1de0cae6f6d59357e11b55faf
BLAKE2b-256 7ae5df1aee8d965fbc9132d1e70842aa0d74f1ef3bc8474ccdb8bce0bcbab356

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9f0a46ea4dfa7e94a019f7ede7705a89778245aec9a334bbbc522f442dda30fc
MD5 cd3197698c17810a2a3de3b6b21f3a90
BLAKE2b-256 fb38c4cd7441888ca83476e62b15dbc65d1dd6f5bc8edb132582c69c09f20f1e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 79502111666321e320f86632fe991f5a887732a72d61ed9979d0e0bec32b672b
MD5 234026d2376c9282b99922bbc6dc27be
BLAKE2b-256 f824f6f76ba67418ad283f95db89e5f0893ab7e196abdb1acd78ffc30c20a247

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 78b7575e58977cb68b3057024815fba597bc9a4c2b428518b31025e02423aa69
MD5 5e2f1b1e493888b528298530dad2d6b1
BLAKE2b-256 be38a9d3fedeb06396ef9e6d32e6a69a079f1965261828243b2cd151c5b4588d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bcec47a5d63af1c99eedd7507dd4f65bdf3631ce1af1bd4ecdc3f5a12a9a979e
MD5 ed94c5d3ab54afa61bb54e46f9569516
BLAKE2b-256 022f8729f0a54a2b3fd08779a9eed15aa7e24d0a22987d2e62b2db9eed2dbb59

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b74aeba6f2f7b4b6a719477ab9ed4b73570b993e43e2d968dcba906edcb05cc
MD5 56037d574c8e9072a2e303682498aa9d
BLAKE2b-256 0a6ede5a0b0b8de9c5166124225f4786403f3a1a0540a24031ded1ace39ab4f8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0b56097effa519fad276c1f583b68b02b364be294b6529a403900275faa6dd1
MD5 d0c2a97ad7b80c195f6c6df6b303f280
BLAKE2b-256 8cfa9e40bfed7e4be68ca73fc9c1b3cc742ac9f7fea00a32b4b90e00f14a7844

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e56047a352ae84bf898081185ede3f35a08d17a3492d6bcf5ab9011914d763ab
MD5 b34914df17d58a7e201e3ae6e81d296e
BLAKE2b-256 ce815f786dcc5fa49c5f613fb0183634a5ca5594fb705f52a74c7b3b4b62d198

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5efdcc21c3111d727a7e5290138fe5669567c685948d95a912516a3d3b7cbf43
MD5 38d3f305fd86b2de54fa77ec463d3f7d
BLAKE2b-256 0ccdac392b8028a56a60b9e0f0ea76d3eae53b2d3cb84694e8838b629546edea

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d36841284dd1be55d3e88956a74b9170a3e95fa7b38a36e3fe504a2ad9838a57
MD5 6c41d2ce5eb9ede64b6595b7597c8a45
BLAKE2b-256 60ef1a8cfeda52da66dd65495b6a9ea673656037c2d7fd05a7f35a96013c5906

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f51b469b591cd83fb3f0af37be7e050e3b06f0ad5dbe67000645e3a6a42d4a33
MD5 07c6861844819124097f94c3008b19c3
BLAKE2b-256 eaa7b1dbb8c4b177c0148505ef4872cae7c6f48eafe1ba7815fad22d993caccc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a53d6e41302a20010565f45ef93efcb7d478ffa2cf47e61b22bb03e1f5d1135f
MD5 9e240083577ab9d9cf7a33ffbea69898
BLAKE2b-256 9979956f3f5224cdfc7eaa634042cf9cc89c77b126234abcada7739fbb7da7d0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 51a3766f9ceee6cf404661c8105a47b47befc1f2aa239faa76645a9c343c4076
MD5 320b3c21657e6cd103514882ced0bd08
BLAKE2b-256 761da7f58eeb0e71eb64617097579ce83a688655670555a705eec247ceedf517

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5a928f7d30ed620132508b41fcc7f62c3621336030aed5927c5ce82a02567926
MD5 6d5692330e5a3f1449f62f5bc9351925
BLAKE2b-256 1cb4ec92eda98cba3e11cf2d1e8161e5b367a27458f85aae6bf1588cd4d8ae0a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c0c8ff37ee4f71a1d49f9119235daece71cd2f1d7c9e88f8dcdbfa35e8a03afd
MD5 c56c0f8677fdd9d3efc493c9c46e6626
BLAKE2b-256 3f59fcbc3c94b2e92e63390223bc0844bf31c8e5b92ccd4afd4899781ac88639

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 38edaa4500cad498c0923d7b9e9730f86f687c34d0e6077372cb55808b9917f6
MD5 d395e9b26547662dfb3bad647963a41e
BLAKE2b-256 a5df1e5a1d8997308755528d0adda665504cc0e079e6f6d0ef4d630c4b90c724

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 14a3ec4c6017383747915d551a7928dc9dcc721eb5d0a8f5ee1caad4093ba0e0
MD5 628f194e1c04a58e840b13d4e79d9c01
BLAKE2b-256 9cdc37f511e7b5b526c58382f959be85f16f51fd3772d2e7e285316a391f4ab9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 934f72cf1b9c375f0ffa72994eb2f059e378b1a6d2f0fb6086b5869896bd41f6
MD5 fdf15c8f96278e24df1492bd410f3204
BLAKE2b-256 95a450f76896a51f55ae7d13a377272aaccd389da34d312f87ad2864297e636b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 627b48dcac0a4b71dfaef3f720c3157605670f7dbb7c2fc6b829cf50b3efab18
MD5 50791322bf7852ef308deccd4605ab2d
BLAKE2b-256 963e9a6f148cb695c05882f4805989df214bce43e0cdb7b5bee2f6e2d03d5bab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01d5af0090cdb309484074eb612a816ee5c86012a4f0097dbc257208e150d8d8
MD5 b529a5d1040d851afc81bb6943c66757
BLAKE2b-256 17058860c85aec59ea0ba1be098e63d593447f0b5ff8c639eb00f733a3494908

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c27ef94f2bbb7a22b92ce7c52b6d1523816804b16c3dff60f7fc54591779897
MD5 30c6830496b49b5af24896d2ccdbfaae
BLAKE2b-256 49dadd47f0e2790e5f09a019ca022ff0067d24f20eb0a9ac6d2861b3f1d8305d

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41f7959c634407d9b76533bd3020484f12ec9ec7a6bbf0ec07ca250cf5155c94
MD5 046a31f43f5b1ec2343c82a119751133
BLAKE2b-256 649c2d8ea295eb05fb13b4a78eb50324a6c93ee54d3efa715e024b257613549f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3184541b6f2558b0de879d5126c0f52e2f37df6a87dd7e194b35fe217b3e579f
MD5 ff68e11dd0f495333b425046656a1c1c
BLAKE2b-256 ca6a7d7ddad840a643ef7f13640b928f13e0613758629ad2dd3027552a583b7a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f1742d0328b5a85aa4683e1dcea50dd85ddb39fb3c23724aa3a6859d8fd2c1b
MD5 2062422a4661098a6ee1b672fa050339
BLAKE2b-256 62b531a6042aec5565cb24fb9ebd8e6c536569c9cd1eedfb1773a5b3844b0df7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 110895ae2c3c8ac91db892737fbace5343d0837c731681254e0c7cd26fa435c9
MD5 d0838d9d40d7d574733a5e17949d77e6
BLAKE2b-256 c212278772d14dff919f78454b767cf7634cfb55331119848cabc6120de3eab7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e423ab5b6e5092c4d95b27289bc3f85d46f6d4b6f63d86db01d5bfaca17900a9
MD5 030c4dbc0e958a194e4ce508dde1a469
BLAKE2b-256 9b27ced83693c4d4e007928d1a0558d2b95a070c0c6b78c521387c03c2d25497

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 919a59181f752a7438269c6319973393c62501a6be0c7a429ae962c2c1d94abf
MD5 690d70f67f57b3c0029b87935fe7043b
BLAKE2b-256 a3106be4f77720c0c35a7ad3b099211283f52e90680336a7ce6ad5e15ccbab12

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e681fd09797934270b9a1722d9afcb0cadfb5d8db284d7c9b6e4a0ac0dd32449
MD5 f889c4e552234e1cf2b33fe795886c5e
BLAKE2b-256 0e483e75590a6892a395582795c42c0d1f61f767f62732efa4e11370a9908fcd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 063821b2f60a0dab09d70d9b4f96b6ffc1ed6d6a19fe77d6da3d2d97e836e491
MD5 7417b07a26aa723be128cf02255bcbd3
BLAKE2b-256 03be76671892a788e960902192b8f7988ed48e4e0131af4d81eefc406a9961f0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb6c2c81387d7461358082c02f27344ee3783677675bb01d2bea73d391bc3eee
MD5 912cf7edd2c49ea6afc6c153bc3aba09
BLAKE2b-256 45b06e465d5e2781c6b040ab96b5155b35eed12a7615399912108bb251699a28

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6259f974297692811f7159e95a075b807d79265be9a0ec331a0e00dfb1eb92b3
MD5 4e67269d3c16a1966f5244154c1b1e9a
BLAKE2b-256 3428fa81a13339c7743efae6b568c7a8c73a387bb2457a2ab7d2d76d283dfeb3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e24ff2e072cf6d82e33524c6cfd717eb281f76daa109084a7a252ad5699fb44f
MD5 b68a69a0a2a8d7564a45d077a0108d43
BLAKE2b-256 c9612cccde806c4b614ae0c4b45cec5458c1e6cc796368f1c0484ae654a2138e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 921669da7ad342fc423914466ef51d939666cc9eaa8759a4419ccf6e2e32c5c4
MD5 87ddb0ab966edfc0bbb53b6a81fb7ebf
BLAKE2b-256 5709d11d510fcbc0f8d172944995a80e81dfbc5253e9589b784c44a27d2b6229

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86cdf6832b422d911f8fc7deb05ce325f4c0d519fd150f737bc9b1778d1a1afb
MD5 f59f4ae58d63cc867d03eb5c6b046925
BLAKE2b-256 6f5d38b3d0a87777d4e50dd2852832169445946ac0e2d2b721479adb92115c22

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e294b3f880007be3b705a4680dddae33f6d8074ed8fe96fa9bb07fc6c812a15
MD5 c95d14da3931faab3fad7216000fcd06
BLAKE2b-256 eec834bb59125980a7cbb7f95c11b90bf37e091679451d163263803e1ec3f9f3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 caa5c65e5c937f35d705516e0bfc638d3e44fd131ffe00778e5cf27a8b567532
MD5 1a00e35bad49109d52644e307860691c
BLAKE2b-256 76fecd72aee9a2c80d656af5c84985886a7fa3ae5157afa8f6dc0433827fc732

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_monty-0.0.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5d92fdd0e87586605290720e261e611c29390fd71926b45a810e73ff93fc1a0f
MD5 aa648a16feeb9c8c89d6b2f8b9038abf
BLAKE2b-256 42868f3d01669b38caee369aa2c09670131f2f287cb37f19557e65edfd24b108

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