This release is a pre-release and may not be stable for production use.
pydantic-monty-client
Python client for the Monty sandbox.
Most users want pydantic-monty
instead, which pulls in this package plus
pydantic-monty-runtime and
is documented in full on its PyPI page.
Install this package directly to use the websocket client alone,
or if you're installing the monty binary another way.
uv add pydantic-monty-client
# or
pip install pydantic-monty-client
Usage with a remote monty server and websockets
You can use this library alone to connect to a remote monty server via websockets.
from pydantic_monty import AsyncMontyWebsocket
async def main() -> None:
url = '...'
async with AsyncMontyWebsocket(url) as pool:
async with pool.checkout() as session:
output = await session.feed_run('1 + 1')
print('output ->', output)
if __name__ == '__main__':
import asyncio
asyncio.run(main())
Usage with a local monty worker
Host objects and classes cross the boundary through the ClassInstance / ClassType wrappers; see the
pydantic-monty README.
This requires the pydantic-monty-runtime package, which is generally
installed as part of the pydantic-monty meta-package.
from pydantic_monty import Monty
with Monty() as pool:
with pool.checkout(limits={'max_suspensions': 100}) as session:
print(session.feed_run('1 + 2'))
#> 3
max_suspensions limits host-serviced suspensions per checkout (default
1000; it cannot be disabled). Exceeding it
aborts the feed with an uncatchable RuntimeError; the session remains usable,
but its suspension count remains spent.
or in async code:
from pydantic_monty import AsyncMonty
async def main() -> None:
async with AsyncMonty() as pool:
async with pool.checkout() as session:
output = await session.feed_run('1 + 1')
print('output from local worker ->', output)
#> output from local worker -> 2
if __name__ == '__main__':
import asyncio
asyncio.run(main())
Tracing snapshot handlers
All sync and async snapshot types provide snapshot.trace_context() for manual handlers.
It returns a standard OpenTelemetry Context, not a context manager, and requires opentelemetry-api to be installed.
Use OTel's attach / detach to activate it, including across await in the same task:
from opentelemetry import context
from pydantic_monty import FunctionSnapshot, Monty, MontyComplete
with Monty() as pool:
with pool.checkout() as session:
snapshot = session.feed_start('greet(name)', inputs={'name': 'Ada'})
assert isinstance(snapshot, FunctionSnapshot)
token = context.attach(snapshot.trace_context())
try:
greeting = f'hello {snapshot.args[0]}'
finally:
context.detach(token)
result = snapshot.resume({'return_value': greeting})
assert isinstance(result, MontyComplete)
print(result.output)
#> hello Ada
The returned context preserves baggage and other entries captured at feed_start / load_snapshot, with the
suspension's span when Monty tracing is enabled.
Without Monty tracing it returns the captured context unchanged.
Context is not serialized: restoring captures the restoring caller's context instead.
The method does not activate the context or resume execution.
It raises ImportError without opentelemetry-api, or RuntimeError after resume.
Previously returned contexts remain usable but do not keep the suspension span open.
resume_auto() already activates the suspension span around callbacks.
See the snapshot documentation.
Restoring snapshots
session.load_session() and session.load_snapshot() require unmodified snapshots from a trusted, compatible Monty producer.
The caller must establish provenance and integrity before loading; Monty does not authenticate snapshots.
Invalid snapshots have no correctness or availability guarantees.
Successful loading does not establish validity.
See the snapshot security documentation.
Working directory
Pass cwd='/data' to session.feed_run() or session.feed_start() to set the sandbox's virtual working directory.
The async session methods accept the same option.
The path must be absolute and uses POSIX / separators on every host.
On the first feed, omitting cwd selects the first mount's virtual path, or / if no mount is supplied.
The directory then persists across feeds, including successful os.chdir(path=...) calls, until another feed sets cwd.
os.getcwd() and Path.cwd() report it, and relative open(), os, and pathlib requests resolve against it.
Setting cwd does not grant filesystem access; provide mount= or os= to handle filesystem operations.
OSAccess(max_urandom_bytes=...) sets the largest os.urandom() request the default handler serves, 1 MiB by default.
Larger requests raise MemoryError before allocating.
Unseeded random generators request host entropy only under os_policy={'random_start': 'call_host'}.
Otherwise they use worker OS entropy or the configured seed.
By default, date.today(), datetime.now() and the time module's clocks read the worker's clock.
time.process_time() reports 0.0 unless os_policy={'process_time': 'elapsed'} opts into the session's
execution time.
The pool handles time.sleep() and asyncio.sleep(), capped per call by sleep_system_max.
Setting datetime or sleep to 'call_host' in checkout(os_policy=...) routes those calls to os=.
Every time module clock then reaches AbstractOS.time(caller) as the one OS function time.time, with caller
naming the function that asked ('time.monotonic', 'time.localtime', ...).
A subclass that overrides def time(self) without the caller parameter raises TypeError on any clock read.
OSAccess answers from the host process and caps each wait at max_sleep.
A random.Random instance or the random.Random class returned from the sandbox converts to its repr string.
Return the generated values or rng.getstate() instead.
See the pydantic-monty README for
more details.
Release files for pydantic-monty-client 1.0.0b1
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| pydantic_monty_client-1.0.0b1.tar.gz | 2.4 MB | Details |
Built distributions (wheels)
Total release size: 289.1 MB
Release files / pydantic_monty_client-1.0.0b1.tar.gz
| Download URL | pydantic_monty_client-1.0.0b1.tar.gz |
|---|---|
| Size | 2.4 MB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
2e8ac76501537c5346c0d5fd16605e42a4fcb612a5c8fb9d6ecca18836f7cfed
|
|
BLAKE2b-256 checksum How to use checksums |
e047a25e80ceab71392a6c3a231b07770d12251063773ec4eb162e5817b1b6e2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-win_amd64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-win_amd64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-64 |
|
SHA-256 checksum How to use checksums |
22ae1a2acad4734317339ae63bdd8609d0b35d7f0a063f9e417ff0a30b8545e6
|
|
BLAKE2b-256 checksum How to use checksums |
b04ca52e0583c84f403cefffe54f698f31ad2e239f627490904f8d480ec5f43d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-win32.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-win32.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Windows x86-32 |
|
SHA-256 checksum How to use checksums |
63c5cae9346b3011101da173f4e2f2ae8e374fffcc0a72430768804accc825c7
|
|
BLAKE2b-256 checksum How to use checksums |
d81fc29f04acbced94d590368bd0ddbc876d17acb8163f8770b24baa60c98e48
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-musllinux_1_1_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
001b6b49dc6e412c0449ccf2f3669bf70a0b1fb8db7c0732ac19e2d77f3555b7
|
|
BLAKE2b-256 checksum How to use checksums |
0c346e14a83bb14f7ae5759b9df40d0d21aa2884fedf301baa152092cdac24e7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-musllinux_1_1_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
bdbdf86dee179e024a5afb5a53f38c2fbee5d8f6b8e94c9482769ab5cc9f9f53
|
|
BLAKE2b-256 checksum How to use checksums |
1a5839e10c463e6e9e29ccea71a4f34f4ad0a34bcdcc376e3a6517e25f28a6aa
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
621f917170234dfeaaf7f35c26309aed3d71c641a1a24f1130fb991b873f2a3b
|
|
BLAKE2b-256 checksum How to use checksums |
dceedcc25ea8d0493700547c8ed138b40cff52a9bbf8948dd866d1f4ddfd2c05
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_s390x.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_s390x.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
f95f9b8c079325d22770f8129f5ed35159025b29b7baa624912e87f8aaa47dbc
|
|
BLAKE2b-256 checksum How to use checksums |
0f4cbb9e4dbf764c65f00639d06e6fb60b614da1f2c4b6bbc8fd31e0de39ecf5
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_ppc64le.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.1 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
77c7e9284974d48880e6764e28dd79974690de00abc26f4be29a13959f75c409
|
|
BLAKE2b-256 checksum How to use checksums |
90123615a7c5e0cade1c1be23755f9d0154fec64ab58d6904eee60e3d3a11ec9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_i686.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_i686.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32 |
|
SHA-256 checksum How to use checksums |
c89262b1f5b61b630e29f2c19cd1b84d07e34f54d512f674a73db1b5fdbee751
|
|
BLAKE2b-256 checksum How to use checksums |
7e9827f8e99f6254287b76c4a2389cd9574a25cfaf6b732c9ef29551399274af
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_armv7l.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
9530512d0026e883c7b861ee3a138c4f3286de7bc5cb4897b6ece10e26f6511f
|
|
BLAKE2b-256 checksum How to use checksums |
6e2c99121cbd27b9a959a3fd20b60e6fb37bd7ef19a9aa1b1af7a4ded07a86b9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
8f0909c7a7640bd560ab3e404cbe50407e3f72812fb700f2928cc8efb0eb126c
|
|
BLAKE2b-256 checksum How to use checksums |
2809b5f205f43b448e9b3604a775d3596df41f23781dae05c2a475c3ed857f87
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-macosx_11_0_arm64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
4dae69b060309dcd8716ed5c2f528d49eb915a74c706edda1b55a86795a8cb72
|
|
BLAKE2b-256 checksum How to use checksums |
b1f1fc4ad2c6e3108672dbb8309c1357709ec4563c00ac9efdd5b340ab54ce24
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314t-macosx_10_12_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314t-macosx_10_12_x86_64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
d4602b50cf032c2043bf87d8b8e3f522396aa665ace880381614b36672ffa25d
|
|
BLAKE2b-256 checksum How to use checksums |
9517bbfe0a08098a96c03f024755f05b59d4671e78a12c853ea6d44720d2b08a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-win32.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-win32.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.14 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
f8629d3b1c80f30dd322c276b11089aa4bfa3e3ad17067adfe69c7a4795fecf3
|
|
BLAKE2b-256 checksum How to use checksums |
ca1dd9fd84392bcf882ad7bd1a0a6256db7db668d0ab30305b7ed210428b5b08
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-musllinux_1_1_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.14 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
e16617cbf1f0d25c2c304eaf12c18a41bd60d9c0b965a0a6ed7e0592443b1fe5
|
|
BLAKE2b-256 checksum How to use checksums |
acc7cbf0e13341248eae208c221b2b83a400fb24f0d25e2bfe4519c54d848b8a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-musllinux_1_1_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.14 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
d90213b51188847ee44393812e35e14170281f6caf409146fa00e8631c9c2aad
|
|
BLAKE2b-256 checksum How to use checksums |
c6b766355a1430d4a7bc92ac203eeb965e858c79de7e5620b5e0d0c1c21275dc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.14 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
d389a5bbabec03cefb2c9ef65bfecfae82f96483e655e63eaab8dd1d355a1556
|
|
BLAKE2b-256 checksum How to use checksums |
bd7ef1677dabea3f20b4af9c4af7be72baddba1e1c0696b04eea4c59681c3760
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_s390x.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_s390x.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.14 Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
29a84be55b7b00c7ba6de49ffb2f0384851d96f6c7b5ba5b5c512de18957b1a9
|
|
BLAKE2b-256 checksum How to use checksums |
8cef2063620a2561837d38b8d56a344b127b0dfc8057b37e3673f04b7d51603d
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_ppc64le.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.1 MB |
| Tags | CPython 3.14 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
ed18fb8a6df193c4d2f8cbe95081b9c94c9b64f850fe16fe9c36fc67e1d83870
|
|
BLAKE2b-256 checksum How to use checksums |
d75e127b8b6c1bf7b85f98c0b1c9f52e08d84ded77e1b470441339a32fae079a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_i686.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_i686.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.14 Linux glibc 2.28+ x86-32 |
|
SHA-256 checksum How to use checksums |
8cb2685729b9bfab3f510278ff0abaec6cf539ab1fac6e2b132bcc41efd2f9c4
|
|
BLAKE2b-256 checksum How to use checksums |
de41d8f7e3c09ecb95034bd0a2e629f033270190a237d3965fe1c0231505ce3c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_armv7l.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.14 Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
9e1956e54c784b32de4f49edd3138f544015b1e41199e0a44a8401851b9ad947
|
|
BLAKE2b-256 checksum How to use checksums |
343afcb4074d0a2dafbfd3ed208e76e83fbfd4f4f1b70fd8018f7a98c7cb62e0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.14 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
1717677351d4db4a2afbd0a5fec2f9e7b37e8cdb40c7ffff4f9f94c34586f282
|
|
BLAKE2b-256 checksum How to use checksums |
ce1e0d0d753aa317a862ecec976553df85a7d23d6d99e09350663192b7bf5641
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-macosx_11_0_arm64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.14 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
3c5ece7df196bd0abc0ba8c1a226ab5e7094b4e9c51508ed3f37e1f2c087ae37
|
|
BLAKE2b-256 checksum How to use checksums |
fc1d1ecc3237ee4b5819308989826cef1659c94b23070ef99b176d9b304904c2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp314-cp314-macosx_10_12_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp314-cp314-macosx_10_12_x86_64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.14 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
6bb4674b3f7555f433b98beea2f395df390bd92ed6db19a6e2a76296130e2a94
|
|
BLAKE2b-256 checksum How to use checksums |
7591c30cca925f445b706cdd05188fbf8497256998316b83f61ac2e4fc9658a9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-win_amd64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-win_amd64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.13 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
8bcca8822b1f71d45acc8a538da74ba4d0f3fcf2024589456788a6a0deab8e3d
|
|
BLAKE2b-256 checksum How to use checksums |
d9cecd1789b39f87c8acfbb50a4f69a9986042e72d482226fc0f4be0b1102d06
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-win32.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-win32.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.13 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
63d49449dda7ad19a612c0c1a9aeb6a999d566fa7ead7e59fe2c616118fcae18
|
|
BLAKE2b-256 checksum How to use checksums |
6676b3fd769e845bee164eb471607b6e813bcaa5e3c0ed737e6a00fce6c00b6e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-musllinux_1_1_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.13 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
1fac0784b594ce63a79e2a4326db080cc6242ba96c0d871b58dd850f3215dd0f
|
|
BLAKE2b-256 checksum How to use checksums |
f278dd9eb2433f99a85fc7b12db2165e43a03d45350d2cac44e73785eaa0ec01
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-musllinux_1_1_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.13 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
db82b85f19bfabf904edb8535d61593502ca51fbde0f76db17296997501f8267
|
|
BLAKE2b-256 checksum How to use checksums |
840490061f8c965e3b29995b9a71b382d300fec4bc984231c3aeb04281f0adff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.13 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
317f4671c51640dcdfad22a6097fd4fe7eaaa6c82ad449eb26bd9e6f8f9cb36d
|
|
BLAKE2b-256 checksum How to use checksums |
c245e98524fa0c9bb3a1cdad399667a275c95fe70a9afc1cfa6a78a88fda3fa7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_s390x.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_s390x.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.13 Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
47772f7da31a66aa96c1fff3b06dd3d95e909629ccee08d431b112cad96c5232
|
|
BLAKE2b-256 checksum How to use checksums |
3cf6558f1f4263d6510867e34f1db19b54c91a3c013b8b4f4fe017e8e7e4e40e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_ppc64le.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.1 MB |
| Tags | CPython 3.13 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
2ed0f3e2ee1bdf6d1114c94bdbb77d22ae656dd3c45129896c345e13c69aaef8
|
|
BLAKE2b-256 checksum How to use checksums |
1133ed726e4d5a1c6dbd2ab02adb38ede2b42af3981dd5f17de6350b2a2424d0
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_i686.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_i686.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.13 Linux glibc 2.28+ x86-32 |
|
SHA-256 checksum How to use checksums |
d41b2c7ed7a5148228d5389737f31497b09cf2c7fd5cf763883f28b303810fcd
|
|
BLAKE2b-256 checksum How to use checksums |
04094b7b141c2fb41f5f52339a0af01556da004b39d8fe902973cc6365631c47
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_armv7l.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.13 Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
bf708a37e3244ab09f5e0ad777225559bf197360b01fb4916868e134c4e4aa57
|
|
BLAKE2b-256 checksum How to use checksums |
398ff7cc50fe975f12bd84c5856a36924789a59d9873d420da27da86093a38be
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.13 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
ad52b02ba432c282a271e67559d5011e3803135f415a812e553408cdd559e180
|
|
BLAKE2b-256 checksum How to use checksums |
6d6f1040beaf4637b375c9a5ea29483a7e0eec12404e2a0919d563c070050f00
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-macosx_11_0_arm64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.13 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
bc5fd8a52a19f07721eb06058a9f37bea7a80c5a84fc308a9021a8de419092f7
|
|
BLAKE2b-256 checksum How to use checksums |
560e35b0bd518cdb9b14385f7f42ad074e34ceb512c12f0fc34ed9b71cf12081
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp313-cp313-macosx_10_12_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp313-cp313-macosx_10_12_x86_64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.13 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
89acbea1d23938e0d508627db9a5c29ddb8420294aa28ddc34bb730bffd62c03
|
|
BLAKE2b-256 checksum How to use checksums |
ca0edd22fec5b983338d08a082ed63bd00cf7c71860dfe6144a35ab354b82298
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-win_amd64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-win_amd64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.12 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
920cb46b7ff93454038f82683482e5c5fe0e1d308001581490ef33632d05ccc5
|
|
BLAKE2b-256 checksum How to use checksums |
8d777e6e5091da79fc60ee9ff74ee32585be3da99f19d1f4cd52d151e34d8c55
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-win32.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-win32.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.12 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
3d834a3b114e8f7834299d288ea702a05d494a5e9837d5bbc8c14d6ca631655e
|
|
BLAKE2b-256 checksum How to use checksums |
82e9f40fcec3b1343db958c490e39c6693638f2d7f887961bc7c3d2ebdfaf8a9
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-musllinux_1_1_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.12 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
36fd03a0b8759258302dd50d58c52d556cb3357eba688a444b5a938c461d405f
|
|
BLAKE2b-256 checksum How to use checksums |
100f1749f9256019979156eb4e23b294604dac7aa9a5ca2144911e9cb1437162
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-musllinux_1_1_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.12 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
80a52716422584f60ec464976b9d6db22ca4a9d6d9e94bb1ca36fd027d4ad2ae
|
|
BLAKE2b-256 checksum How to use checksums |
548dd2dd2224bf8221b7b455f6d5f3a93b60927b16efa7e1af1a38409d097f6a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
9b298df0fd693eba42337965fe212ce95b4f42f319329e1856e5570ede2e03d5
|
|
BLAKE2b-256 checksum How to use checksums |
1b0b2e6daefca1f37144e5ab0dcf2a5e8c5e6a035f6615f9954e1e7f954ecd98
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_s390x.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_s390x.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
9f486cbb6aac1ede52f5c2ab21d6b4f00bf8218cbc536f01d5fe3eca613f6bf9
|
|
BLAKE2b-256 checksum How to use checksums |
1bc8b553c26133ec0f578dff0cf739d92ac9892609df97143c59d39d9da1114e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_ppc64le.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.1 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
fa9c6d27b8b33aef3e4c0afd1bf86460ba1677b73bf2f7c01955768fc841a0e0
|
|
BLAKE2b-256 checksum How to use checksums |
3e733f080273036d42b6ae50791b87f660ee12ee76303d6bdfdbfac4ef781998
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_i686.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_i686.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ x86-32 |
|
SHA-256 checksum How to use checksums |
9f987cfa4231c76996358df15b597468119d1ad5e9fd54246e50eb12252b831d
|
|
BLAKE2b-256 checksum How to use checksums |
ca13f32b28c128172b705b0e4b44aa35481fa3eef2357ea4cade19ec6d7afd0a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_armv7l.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
c5370b72b6c82d0475759f6ad655b089e32132b009f0e627a6013b658ebf402f
|
|
BLAKE2b-256 checksum How to use checksums |
4c307735f35e0c5d3ccd359caeb48e6d0a143673fe5b1b4f21af3a720e2bca9f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.12 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
9449e78b423f90a2eb2fe6a8525930b3dc274e004a761a4e5a15ea5ddcdb7391
|
|
BLAKE2b-256 checksum How to use checksums |
922082a2a4ecfd76dad0958175d318513c672c6c7e4eeed09577992d8d5ea738
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-macosx_11_0_arm64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.12 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
8ca7c93e3742cb91f111e366d667e51d90aa4c52d820a734499ec526e75e06bb
|
|
BLAKE2b-256 checksum How to use checksums |
c391422710bba29f71a4e4640c3e72a981671a33f6f8460fef542a5e859fea2a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp312-cp312-macosx_10_12_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp312-cp312-macosx_10_12_x86_64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.12 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
3e774c7525bbb5820ea12ca0dfc90400b89235ab5ea7c2060337a0413f3ef1ef
|
|
BLAKE2b-256 checksum How to use checksums |
5b23ee4c65724733362660245acd7d5e06b1436d824855e8a7e8ccc60bfff344
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-win_amd64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-win_amd64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.11 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
0399ff2515571c3a86c30d8071e166e51c88dc3e0f93eefa29b73192e0018588
|
|
BLAKE2b-256 checksum How to use checksums |
a451bfbcd0fb02b8ae4450ecc6ac0c020bc6072f2d4a57580f3e33099b3a5c56
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-win32.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-win32.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.11 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
5f04e31ce96e87982a22b96090d8affe427ba8ff2fd4de410a2207380fd6fba2
|
|
BLAKE2b-256 checksum How to use checksums |
369db31d094629e2b9e29ed5784cbdab7785b1898be0e5e44f3502552b6d6f29
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-musllinux_1_1_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.11 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
395ff8b23a0e9eb919c58e24332f8069343669077a733b1b91fdcadd0afa05a6
|
|
BLAKE2b-256 checksum How to use checksums |
32bdae2bb2f3aea892b48255777c522a7c2a49f3d891e5e235f63c83290dd6cd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-musllinux_1_1_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.11 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
bda6045366a54a5628dfb574fcccab1b935d32289a62b6b7eb3093ea1bc274c7
|
|
BLAKE2b-256 checksum How to use checksums |
b332e471c9bed6535621ea5080c8057887309cace30468abd8061438e2847d4c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.11 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
a2154b33a7f4734042a7c8562a724e333dc9e22c4ce28357a85e5d08ab4f791a
|
|
BLAKE2b-256 checksum How to use checksums |
2a198b224f97f3a7bd9cfa4b2b21614e64c06f5801a4b3254f47c9340ee0a9ac
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_s390x.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_s390x.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.11 Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
66614c496a8ad617725ebe12174622b58c8936df9566192484d2482a9d341777
|
|
BLAKE2b-256 checksum How to use checksums |
0e4a8f46fa1b1b6dac6d4559e4fb9282b3d7b8a041aa45f7842317845c7adbd2
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_ppc64le.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.1 MB |
| Tags | CPython 3.11 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
9192c5da8359054f254612031eb4c524730951bc6e4d6fab3f27fdae76dead69
|
|
BLAKE2b-256 checksum How to use checksums |
82cf5db0e3b516f513249468c3c95e46758b8d67a0db9970f928f0bdb4ddfedd
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_i686.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_i686.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.11 Linux glibc 2.28+ x86-32 |
|
SHA-256 checksum How to use checksums |
90d15ea56084bb2de37d261a3c7ff3a6981609aa4638cbf26138bd37ce1fb926
|
|
BLAKE2b-256 checksum How to use checksums |
c20398bb61b48c5ee866380b778c4f135987a857aee6e4a6047f2f2a1783d46c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_armv7l.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.11 Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
0b489835808eaa3f4f8c53de18ba9681678b4bde21c6f1044090700bd6d137a4
|
|
BLAKE2b-256 checksum How to use checksums |
2f51e5fd10af92d220d0806e63c232f7f9e3b751dfd3074ef9acc7e51cf293ff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.11 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
26a1d5955dca2d1933f799965494437c6d7d1ee31cad30448611cc4aa33d51a2
|
|
BLAKE2b-256 checksum How to use checksums |
c4429f204ff485059d6c46d451b04f538669007775e507379e20e875ba49d89a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-macosx_11_0_arm64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.11 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
323679148c509766d7e003961d6858e14ef79aa54036a3208e6c8c9dbd5bbdc8
|
|
BLAKE2b-256 checksum How to use checksums |
e1105dd9ca67c8644cc77ba48f93991bc60d771f401d6da74f93a201e6372e3b
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp311-cp311-macosx_10_12_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp311-cp311-macosx_10_12_x86_64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.11 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
9e612830c342e93ccbb12828e31cb18265b0c85e712d1c4aab7c0b3eb9d11a3f
|
|
BLAKE2b-256 checksum How to use checksums |
8879f990bbb00c10db9ce62e0e23979cd7b55447f9e54d8658bcc92f063a0bd3
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-win_amd64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-win_amd64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.10 Windows x86-64 |
|
SHA-256 checksum How to use checksums |
893bebd55be94eed1ebb005d19bc2dfe83d82f384560d4a1e301cf931f43dca0
|
|
BLAKE2b-256 checksum How to use checksums |
54df69580db134f5f4f9e282cb1759268aa92924d2da6044cad23e1f6fa7e5dc
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-win32.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-win32.whl |
|---|---|
| Size | 3.5 MB |
| Tags | CPython 3.10 Windows x86-32 |
|
SHA-256 checksum How to use checksums |
e4e53c09e5f31ed402b41e1a6db799d2a9d53a9493bccea460b442fc5530789b
|
|
BLAKE2b-256 checksum How to use checksums |
5329f0bf6af615b61cec63eb868ab80ca07da70ebd8a2efe28561f170661ef40
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-musllinux_1_1_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-musllinux_1_1_x86_64.whl |
|---|---|
| Size | 4.5 MB |
| Tags | CPython 3.10 Linux musl 1.1+ x86-64 |
|
SHA-256 checksum How to use checksums |
b7166c9f8c85f3644bff9aaf5b593f86009c4f8a34e8e4248fb994352be0f30f
|
|
BLAKE2b-256 checksum How to use checksums |
3b5a10889a33091b2f9b09dd233f5aab3ac851b8262969a130d6469b85f9c18a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-musllinux_1_1_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-musllinux_1_1_aarch64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.10 Linux musl 1.1+ ARM64 |
|
SHA-256 checksum How to use checksums |
e9ca0b8c4739c7b378e1adea4ab4350701b5ec8a25bc166f95daef003d438b84
|
|
BLAKE2b-256 checksum How to use checksums |
e685a280075266b24f3ded9d7f703bb52e15d63bba72db8d647fbffd752db572
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_x86_64.whl |
|---|---|
| Size | 4.3 MB |
| Tags | CPython 3.10 Linux glibc 2.28+ x86-64 |
|
SHA-256 checksum How to use checksums |
8df9e8e8f3cd71f7783cfec76dcba1a133ed10f2c29aaa9018a0333b259ab125
|
|
BLAKE2b-256 checksum How to use checksums |
aab8576f7130ee22e8d6954ef7be371b62857556281635d05187c7d10a43e232
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_s390x.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_s390x.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.10 Linux glibc 2.28+ IBM System/390x |
|
SHA-256 checksum How to use checksums |
6206ba71ff3883422f36c41798a584116d4797cbd5938b687e73d9873bef1f4d
|
|
BLAKE2b-256 checksum How to use checksums |
8a75fe3f80732276eb1e146cb62fadc2321ea77c0c8512e4c2d0df158d27f82e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_ppc64le.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_ppc64le.whl |
|---|---|
| Size | 4.1 MB |
| Tags | CPython 3.10 Linux glibc 2.28+ PowerPC 64-le |
|
SHA-256 checksum How to use checksums |
6e0f6e37f7fef44f225e8d4907ede92e2da3a6d441984f8a9274c171f3bbb590
|
|
BLAKE2b-256 checksum How to use checksums |
e556f7f0f697e4174b04554e91e49746855e41c0cde50b78873a8c9d3bf27c0c
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_i686.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_i686.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.10 Linux glibc 2.28+ x86-32 |
|
SHA-256 checksum How to use checksums |
b9d9a6d4536979d647ab3b23c6d689d00635b190e6f5cc49fc81119399321907
|
|
BLAKE2b-256 checksum How to use checksums |
c8550b109d3c564ded8fc18499fcb00053860bab81518a87acce60dedb1fa933
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_armv7l.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_armv7l.whl |
|---|---|
| Size | 3.7 MB |
| Tags | CPython 3.10 Linux glibc 2.28+ ARMv7l |
|
SHA-256 checksum How to use checksums |
305958cfe92179c320b83ba9bece1568ec7e2014fc0e161303e1b0a528666f87
|
|
BLAKE2b-256 checksum How to use checksums |
d13f59edc493d2e96ac86d413d7a4b2b891c9a0e805f9ca581ba794114ced5b7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_aarch64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-manylinux_2_28_aarch64.whl |
|---|---|
| Size | 4.0 MB |
| Tags | CPython 3.10 Linux glibc 2.28+ ARM64 |
|
SHA-256 checksum How to use checksums |
44ce39967d326d5a06d29c7d2b709f67a09db64a715215cad5c54d312d70797a
|
|
BLAKE2b-256 checksum How to use checksums |
3eb80687da6042b61cd9176523cfec0ae07145012ce126f76868b69051290e83
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-macosx_11_0_arm64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-macosx_11_0_arm64.whl |
|---|---|
| Size | 3.9 MB |
| Tags | CPython 3.10 macOS 11.0+ ARM64 |
|
SHA-256 checksum How to use checksums |
c4a9633c4bee7f103e49c87d462481362892cc5a749b1b5faeac26c2639053c3
|
|
BLAKE2b-256 checksum How to use checksums |
0abcb6d842fd748ac6708306029734628bac4e21bc691d43ef44ce911d8c6e4f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|
Release files / pydantic_monty_client-1.0.0b1-cp310-cp310-macosx_10_12_x86_64.whl
| Download URL | pydantic_monty_client-1.0.0b1-cp310-cp310-macosx_10_12_x86_64.whl |
|---|---|
| Size | 4.2 MB |
| Tags | CPython 3.10 macOS 10.12+ x86-64 |
|
SHA-256 checksum How to use checksums |
b6601a4653d433ff75775a9f195e4447ba7152516a45fc0f3fe40581f4cb7263
|
|
BLAKE2b-256 checksum How to use checksums |
04f50d33270b0ca091ca8d55104ebf0d54b0c7971cb6de271d954583696eeb0e
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
uv/0.12.17 {"installer":{"name":"uv","version":"0.12.17","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
|