Skip to main content

Python to Native Compiler

Project description

Py2Native

More information on https://py2native.dev

Installation

uv add --dev Py2Native

Installs Py2Native in the current project

Usage

uv run py2native build [--embed <targetDir>] <mainModule> [<module>...]

Compiles and links the given modules.

Environment on Windows

Restrictions

  • No modules with identical names

Requirements

  • C-Python 3.10, 3.11, 3.12, 3.13, , 3.14, 3.14 freethreaded, 3.15, 3.15 freethreaded
  • Python supported C Compiler / Linker for your platform
    • Visual Studio or llvm-mingw32 on Windows
  • Windows 8, Windows 10, Windows 11, ManyLinux 2014 or ManiMusl compatible Linux, or MacOS
  • X64 CPU or ARM64 CPU
  • Internet Access for downloading the used libraries and Python Distributions

What we do

  • Compile your software with Cython to .c and than into the native executables
  • Link the object files together into a single executable (that can be a main executablemor a shared library)
  • Support importing from within that single executable
  • Embed some of the libraries with your executable
  • Provide an embedded installation

Protection

You no longer distribute your source code. 100% of your code is compiled to c and then to native executable format so recovering it is pretty difficult. Reverse engineering is, while still possible, not easy.

Monkey patching is still possible (because big parts of the used libraries are still available in Python source.

Legal Considerations

  • All libraries remain as they are. So copyright messages remain in distribution.
  • LGPL restrictions are still met. The user can replace the library with a different version.

Deployment Recipes

Windows

You will usually need an installer to distribute the created embed directory. This directory holds all the used libraries and might contain thousands of files. It is recommended to use a tool like NSIS or Inno Setup to create an installer.

InnoSetup

[Setup]
AppId="Test Application"
AppName="Test Application"
AppVerName=Test Application
AppPublisher=RSJ Software GmbH
AppPublisherURL=https://www.rsj.de
AppSupportURL=https://www.rsj.de
AppUpdatesURL=https://www.rsj.de
DefaultDirName={commonpf}\TestApplication
DefaultGroupName=Test Application
OutputBaseFilename={#outputName}
Compression=lzma
SolidCompression=yes
InternalCompressLevel=ultra
VersionInfoCompany=RSJ Software GmbH
VersionInfoCopyright=Copyright (C) 2026 by RSJ Software GmbH Germering. All rights reserved.
VersionInfoDescription=Test Application
VersionInfoProductName="Test Application"
VersionInfoVersion={#version}
VersionInfoProductVersion={#version}
VersionInfoTextVersion={#version}
VersionInfoProductTextVersion={#version}
ShowLanguageDialog=no
WizardImageStretch=no
MinVersion=10.0.10240
ArchitecturesInstallIn64BitMode=x64

[Files]
Source: ..\embed\*; DestDir: {app}; Excludes: config.json; Flags: ignoreversion overwritereadonly uninsrestartdelete recursesubdirs setntfscompression;

[Dirs]
Name: {app}/data; Permissions: everyone-full;

[Run]
Filename: "{app}\testApplication.exe"; Flags: postinstall

[Icons]
Name: "{group}\TestApplication"; Filename: "{app}\testApplication.exe"

Linux

You could either do:

  • distribute a .zip file with the embed directory
  • distribute a .tar.gz file with the embed directory
  • create a docker image

Docker

We recommend multistage docker builds.

Ubuntu

We recommend using the official Python image as base image.

FROM python:3.14-slim as pyBuilder

RUN apt-get update
RUN apt-get install -y git build-essential zlib1g-dev

RUN ln -s /usr/local/lib/libpython3.14.so /usr/lib/libpython3.14.so && \
    mkdir -p /usr/lib/python3.14/config-3.14-x86_64-linux-gnu && \
    ln -s /usr/local/lib/libpython3.14.so /usr/lib/python3.14/config-3.14-x86_64-linux-gnu/libpython3.14-pic.a

RUN python -m pip install uv

WORKDIR /builder

COPY . .

ENV PYTHONUNBUFFERED = 1

RUN uv run py2native build --embed ./embed main.py *.py

FROM python:3.14-slim AS runtime

RUN apt-get install openssl

WORKDIR /app
COPY --from=pyBuilder /builder/embed .

CMD ["./bin/main"]

Alpine

We recommend using the official Python image as base image.

FROM python:3.14-alpine as pyBuilder
WORKDIR /builder

RUN apk update && \
    UN apk add uv build-base git zlib-dev

RUN ln -s /usr/local/lib/libpython3.14.so /usr/lib/libpython3.14.so && \
    mkdir -p /usr/lib/python3.14/config-3.14-x86_64-linux-gnu && \
    ln -s /usr/local/lib/libpython3.14.so /usr/lib/python3.14/config-3.14-x86_64-linux-gnu/libpython3.14-pic.a

ENV PYTHONUNBUFFERED = 1    
RUN uv run py2native build --embed ./embed main.py *.py

FROM python:3.14-alpine 
WORKDIR /app
COPY --from=pyBuilder /builder/embed .
CMD ["./bin/main"]

Pro Edition

Features

  • JWT based license management: JWT decoder with elliptic curve signature verification
  • String compression: Many strings are no longer easily accessible with a simple hex editolr

License Management

py2native includes a specially protected license management:

  • You create an elliptic curve keypair (P256)
uv run py2native keygen private.pem public.pem
  • You build your executable with your public key.
uv run py2native build --embed ./embed --public-key public.pem main.py *.py
  • You create license file (a text file with a JWT structure))
uv run py2native sign private.pem template.json license.dat
  • You can verify the license in your software
from py2native_runtime import verify_license

license = verify_license("token", expected_issuer="xxxx", expected_autionece="My program")
  • Your code can verify the license end adapt is operation accordingly

Notes:

  • Only the public key is stored in the executable
  • The elliptic key verification is handled with compiled code in our software (ie no 3rd party libraries)

License

The Pro Edition requires a special license. You receive a license file from us that you can either

  • specify on the command line (--license)
  • in the environment (PY2NATIVE_LICENSE)
    • NB: You store the content of the license file in the environment, not the path to the file. This is especially useful for Docker or for CI/CD pipelines (eg Github Actions).
  • store in your home directory (~/.py2native/license.dat)

You need the license just for the build process.

Project details


Download files

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

Source Distribution

py2native-0.1.5.tar.gz (26.7 kB view details)

Uploaded Source

Built Distributions

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

py2native-0.1.5-cp315-cp315t-win_amd64.whl (3.6 MB view details)

Uploaded CPython 3.15tWindows x86-64

py2native-0.1.5-cp315-cp315t-musllinux_1_2_x86_64.whl (18.8 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

py2native-0.1.5-cp315-cp315t-musllinux_1_2_aarch64.whl (19.2 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

py2native-0.1.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (23.0 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

py2native-0.1.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (19.2 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

py2native-0.1.5-cp315-cp315t-macosx_11_0_arm64.whl (8.8 MB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

py2native-0.1.5-cp315-cp315t-macosx_10_15_x86_64.whl (8.9 MB view details)

Uploaded CPython 3.15tmacOS 10.15+ x86-64

py2native-0.1.5-cp315-cp315-win_amd64.whl (3.5 MB view details)

Uploaded CPython 3.15Windows x86-64

py2native-0.1.5-cp315-cp315-musllinux_1_2_x86_64.whl (18.0 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

py2native-0.1.5-cp315-cp315-musllinux_1_2_aarch64.whl (18.1 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

py2native-0.1.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (23.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

py2native-0.1.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (19.2 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

py2native-0.1.5-cp315-cp315-macosx_11_0_arm64.whl (8.8 MB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

py2native-0.1.5-cp315-cp315-macosx_10_15_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.15macOS 10.15+ x86-64

py2native-0.1.5-cp314-cp314t-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

py2native-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl (18.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

py2native-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

py2native-0.1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

py2native-0.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (18.7 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

py2native-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl (8.6 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

py2native-0.1.5-cp314-cp314t-macosx_10_15_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

py2native-0.1.5-cp314-cp314-win_amd64.whl (3.2 MB view details)

Uploaded CPython 3.14Windows x86-64

py2native-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl (17.5 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

py2native-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl (17.6 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

py2native-0.1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (22.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

py2native-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (18.6 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

py2native-0.1.5-cp314-cp314-macosx_11_0_arm64.whl (8.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

py2native-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl (8.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

py2native-0.1.5-cp313-cp313-win_amd64.whl (2.9 MB view details)

Uploaded CPython 3.13Windows x86-64

py2native-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (16.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

py2native-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (16.6 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

py2native-0.1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (21.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

py2native-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (17.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

py2native-0.1.5-cp313-cp313-macosx_11_0_arm64.whl (8.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

py2native-0.1.5-cp313-cp313-macosx_10_15_x86_64.whl (8.1 MB view details)

Uploaded CPython 3.13macOS 10.15+ x86-64

py2native-0.1.5-cp312-cp312-win_amd64.whl (3.0 MB view details)

Uploaded CPython 3.12Windows x86-64

py2native-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (16.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

py2native-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (17.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

py2native-0.1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (21.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

py2native-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (17.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

py2native-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (8.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

py2native-0.1.5-cp312-cp312-macosx_10_15_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.12macOS 10.15+ x86-64

py2native-0.1.5-cp311-cp311-win_amd64.whl (2.7 MB view details)

Uploaded CPython 3.11Windows x86-64

py2native-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (16.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

py2native-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (16.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

py2native-0.1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (17.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

py2native-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (17.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

py2native-0.1.5-cp311-cp311-macosx_11_0_arm64.whl (7.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

py2native-0.1.5-cp311-cp311-macosx_10_15_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.11macOS 10.15+ x86-64

File details

Details for the file py2native-0.1.5.tar.gz.

File metadata

  • Download URL: py2native-0.1.5.tar.gz
  • Upload date:
  • Size: 26.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.21 {"installer":{"name":"uv","version":"0.11.21","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":null,"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5.tar.gz
Algorithm Hash digest
SHA256 0c30d0bf3526179200272bccb9f1db6e5834dcc18abd55fac04bbb5fc538d6e1
MD5 8cf6a2bf72e621ad016f072a1b1979c5
BLAKE2b-256 4ec7000154b0671eb5bfb1716bbc1c0f091d47b3c302e52d48aa3b03b58516c5

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 3.6 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 5b0a581cf0d8f0b8e760ed8ba95998b78070e0e0539da934469812b578aa7454
MD5 fcf77af8acf0a45fd77a98ac7ef76fb9
BLAKE2b-256 5c3ce3ce130ac9378a8a9a30fae58190b61fcfe98009e91a2114dd5d209c82c2

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 18.8 MB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b5b73ee4c30b06b0f90a1a7226ef75512f9e011c6154182ebfee9096bdc45006
MD5 69a9fb6ed396f38aa68079ebd4161213
BLAKE2b-256 540f1d6d4d138702281f521b34aab3fba4b28a26b64a31f590ce1edf7ebc2a9b

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 19.2 MB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acbf6c5254996e73e29bbdc16e3a48f61d7c5d3dd803bc192041858880c2fe06
MD5 d08329d5fe7252317ef30543473c98b2
BLAKE2b-256 85374db8a0ba5beaa9796dbac67a1e71a82e775c9b5cac5c1912098fd5354b91

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 23.0 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ff5df81d74b8360e5ff3799539bd5181150f93f491c7e300cef32d7a8111059d
MD5 0501dc89001c78669219dd48d5d17a30
BLAKE2b-256 e5747aa526a54a49361f2a4b60b91cb4ab14373f2b9b4817b1bf78410456cc55

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 19.2 MB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ff69f0bbc75e89cff04d8079f49f8589ad02dd844a60cfd74edaa2cf7f026add
MD5 a2d584f66b15d3d743147133de2a6489
BLAKE2b-256 b4f06abca0a81aa2c15f2027738c27b9de24a8024dc46fe17111f0c16fee516c

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.15t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5d5b78589b3e6f09132d6faef3479034c5b211bd59bf39746aa6a29624de986
MD5 5f662a36c5235d9c39d5f310b9e6a94f
BLAKE2b-256 7074374fa7486051ed034853b41b756046ecf0fd2719ae9750ded6980c11a86c

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315t-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315t-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.9 MB
  • Tags: CPython 3.15t, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d3650894f1e24976ff08225c6350894ac4b2ec33b4695aa4c6be3b1831756d7d
MD5 01b5444a9d01975eeec51a87fa0e10fe
BLAKE2b-256 c7413fd17536af6a1684228297f5b370319bc8550400cd4cb41ca80e29c4af73

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 3.5 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 6a21c880bd0331765c660f0e1c7ccf2bfa9ef1720f11663317ea11c99420329b
MD5 a7b6ce5e85b64ddd1da895e19ec59eda
BLAKE2b-256 74a4763ed93b37afa50b0203832cce3efd9deff29fef70c1ba531f62b204af15

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 18.0 MB
  • Tags: CPython 3.15, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1123c197d740ebb1cee3ba98417bd081f042ce09835f61403b74251bb62651d
MD5 382085e5b1df65884644cf0959e6c9cb
BLAKE2b-256 66eca2c9aaaf89c1bbca1fc9f13779ff5d9d49a858e24e32731a294aaa10cd8b

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 18.1 MB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d7d61f6d0142309fd7a54142dc9dcdb380ecb3a4db3b9c98beb7e3e6709071ab
MD5 29a3daf39ca70ee8c880e1d86d6d5970
BLAKE2b-256 ea7d71f627bd3f8c62c9c0d841528ffd5513cbd30da935c0ad6c15d188ffb28e

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 23.2 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c9a9fd4a0436dcd6589e2878ff9153d4f98b3d27205fcf12ea153c74f7588b74
MD5 28247466f4f9ba4f8168e3fce758a6c6
BLAKE2b-256 55a1c915fe610fca8ada758aef4e9962c8548c8f7a6de3e392592e8f1ebf8ae6

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 19.2 MB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 a79af5f9cd4d4469c87eac266b2d4543479d9010544769af143752b5cf0133cd
MD5 1a3b4049260b1c8877e6bd20d50fd820
BLAKE2b-256 3d6cf4ac7c97e3fe1bd887db7750cc79f8afa74423f3d9ad4a34f77a18c702f5

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 8.8 MB
  • Tags: CPython 3.15, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d5655428a7048fb845780e22e86e3bc61b7d8858ab55ead205ea86622510a01
MD5 adf0893cea7ccd138e777d7061d12c51
BLAKE2b-256 28ff1854239f5fc0c04079d32eb8192d5f267838ca8ff3bce83e926549302ad6

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp315-cp315-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp315-cp315-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.15, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp315-cp315-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ae6d02f199c80d5384811749f34bddebb3f423c348d4639a04fee495f5ee803e
MD5 d861ddb7bedf8b0a06cc3cde7daf3147
BLAKE2b-256 45f6acec5781b7ac4a2cf07924bb132cf30c84578f1c2e443213c051aee7d00b

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2e9ba59e00a0f9c9d7253c3bf7ae99054bb8295aefc61a71e4b86bda6097db93
MD5 5cb064caddd6a2ede6ee2430e34950e8
BLAKE2b-256 ef2229d0d988ff8bbfdd771faba435a6719f5f71f0a8457b800bacb3725e17bf

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 18.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47f88ba48ab82a90122170f5817398c221f07d6d1697e9617c5bc87b6890a539
MD5 ed49deb664dcb04e0c128ec4e502ab99
BLAKE2b-256 468c245aaa85b020368585b8329d468bb0f2751df75dc86b450943a92008fb9a

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 18.7 MB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 88a2014618e0dde4c1c2bf697ced55fa01321c485ac4919ad3462084f8d24a57
MD5 a6e382378861f66c70dec56fd9b81f21
BLAKE2b-256 fb0afafc116de4180f9d58c298efbb575daa3f8b3cf82e598913d72e9785606e

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
  • Upload date:
  • Size: 22.4 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 16de7c631b24c10a322784cf5ca206980fe4a3f5ccd60fd495cac2ed1c4edce7
MD5 b64c702c215998b6f6a2fbaa0ebe65af
BLAKE2b-256 6aac983d9fa09dabed591a042bf9ed58a54eecc79242eba6506cea302d022d94

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 18.7 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1970623ce4aae1e652a7f7e3879e152bd5418d5c8b6c0ef0acfe36fc74a6e8c0
MD5 e90748c67624b87937995684a5774ab7
BLAKE2b-256 b4d062ab43422d37e83e1810aaa993b49a147ebce53b2f8a2906a1ff3dfd65d9

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47262b20f6453caf743dd8c76ec54c4c8a64ef07f11f18408e9b86b8be993cb8
MD5 18420c67034f55f3ae0f8bfb59890f05
BLAKE2b-256 e8a52693fbb911a7231137d9172f77c58d3806527b832687f4dec70ade08966d

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp314-cp314t-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.14t, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 971ebb3c8bf05955b36a728110e2f5a00cc5bd5fccaa035c9da0be54a69d485f
MD5 e4f1dfe3ed526937d64a3d6d521cca24
BLAKE2b-256 4574f708375f882efb928da232e5e1b1c017a61a97f80d828185bf8b6c696f97

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 21dbaa2a76a6d042c57969dcfca09e27f9c76065870c1d5b28eaf3bafce703dd
MD5 797fe38df8b625d1413a55eadd4f9394
BLAKE2b-256 63a7ab74252f091f0220334f7da78a7db1d820d4b1814fa125a49952be2fb396

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 17.5 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c0d5982891ab6dc669b70f597fee167490fda7d87198b8ded9bcdd7fb48e18a2
MD5 71e9630014300b2a2720f4c4df1c4744
BLAKE2b-256 f5680e2902ed6c5cf477bedcc3d95465311a17763c7ad5410ccdc3370a422715

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 17.6 MB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d789d908772cc08b0dcfb5247afa83607ce35c019b28dce128a4e9c3ac27b1f2
MD5 05151261838eede4b187cceed0f48a18
BLAKE2b-256 864ed8956a98ea63144c039099232cf4fd539673c325699c350ef41fed805fcf

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e431647374e1dd6dcc6a8a290bf25b54b275eede816bbec44d953f6709607a32
MD5 b0afc22ed9109d5274455f565fb42d8c
BLAKE2b-256 8e4b0d6186940aad4534bdf4d0276a1415c82780a2b6dd2819a6eae1c066230c

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3881f89fc4e278eab62d1de7fa0fc5f5aff6c4784767d8eec63fd9de7961aed0
MD5 bb108c7541e6fb5adb304f39e5af4490
BLAKE2b-256 9f5eac8e5ba8fbe02e93bb69f27f2437a0c3ab55e641294b8f43cb95306910e7

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 edc8be8788cf7bac9e74aa07dab413c49a35b82b32d90e26300213d98ba73c60
MD5 8f8f7ede2763150278e06635f77cad3d
BLAKE2b-256 b5f13baa8ce7429fddd2601e341fdee62130f6fdad50a1a3916966960c987716

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.6 MB
  • Tags: CPython 3.14, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 532c50a438f73422a6cb3498d06d5daceff430e802f2e10b21a501f691404401
MD5 994c2e2452e4015be378dcfd6a6f92d1
BLAKE2b-256 458f5e30be65eaf00735ca7ea68fecf0e0f06d50fb0ddc74a7bcce6652c1a773

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 605534635b60154a01d5da08da8e9763e439c55b366138bb7dd5bb7d2ff53e85
MD5 340cc39cc140e2dd1bc4f51ec3e43dab
BLAKE2b-256 09ae169fcc8225e2c2d4861740f5fb2c6f99c8b269b855d8b17795e3bbaea12e

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96f7fcbb661894107b13976704a9acebcab1c869723eab9dd12b3a1337525823
MD5 221244da22de9914088cfac2e667a3af
BLAKE2b-256 4a71b1b9a9b5511a9398e0e5b8016d303a3ace2d6e4e05f3e81968a1a7231bfe

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.6 MB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0a1a60c7ae335786560e9c1a748f1a3c369d29941cf9057ad3a224026ee11dd7
MD5 637629a689af546daddbe323ffcf8991
BLAKE2b-256 b39e1fe578874d5f81942522cd9d71a5e49eb9ce2cab9b55345d27f62f80686b

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 98ee8798ff1f779d67ff3497de16f4d8e5b43339fe879b7db69e63ebf594abc5
MD5 94a6e6a538bd2bccc9ff02a0a6657b48
BLAKE2b-256 a57cd377b585fecaa057190a5ddf8540be1be6649940e66d3550be39e9b40718

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fa6dce4f8646df417b56d1790cae99543169f684b9f1410979cd6de4313da8a
MD5 45c25ada2e15442a4dd3d0d1d21b9dd5
BLAKE2b-256 06012e369e6c04f0f9a133b781cd0b426d132a142c322fc7f94da4fc71a7fedc

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5f67924eaaf267a90cd2af32907e814c9ef277a5485f7001c0a4df01e9ad7a0
MD5 1a3fec47cf984f9ea736f4bfd4aca611
BLAKE2b-256 1c1470a4207a6aefa7c0b1002027b90eee95c7bd07dd0b93a05dc66671d0b7ea

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp313-cp313-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp313-cp313-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.1 MB
  • Tags: CPython 3.13, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp313-cp313-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 befc5696b77754f389708e3b79878fcbed82fc641290e5f199c3dd71632be868
MD5 de071d2c1441986c61d7f759700b4252
BLAKE2b-256 5e88a0fff8d80619f452eb41525369cc8d944bd488e6a80b6b631f478d60cbed

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 73efe6c6e5c80bc7f5fe0ce9b634ea75f7bafcaaf35342553847faf7be0243c0
MD5 e80a04754de880b419923c3a3f6cab85
BLAKE2b-256 cdacbe6e5a7dfcb34d1f34f0db2ef7421bc7ed3db7568c9b19a0cdd27d35a5e6

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.9 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9af6e40e40f34342de0795f295ad5f5056175aa9b7ebe5a209c549008b392376
MD5 8d0549a8595c62c48d79c57dc17d567f
BLAKE2b-256 f410b74f1d79ddf2bd5b7f1d63eae69a1b3cb77a12efaa29a2f21acb05ecd44f

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bc1905541c137f180295879f9ea8cb78785191540147e04f605d8be0ae97679
MD5 dc3041405b17484adb7e40e6d731d286
BLAKE2b-256 5a47ea81a5b82111f8ab615ce646d6617e181047f9d8d0595850f95d0777ef67

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6661605b472eb219e67aeb2454420dff59234d5a02a91a88f2de0e2f43db79e1
MD5 00fce7628b743981e54ae8ed868d764e
BLAKE2b-256 d0c77f55f7ddcffcd2202edea383bfcb81e7820cbe29a1b37d0569c3bded3090

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5c1ac0fb41de0cc7003ae65ee8a5b1d75c161d82bb0bcfc2ce108d05325f288c
MD5 80b37f2a8937eb611019a73834291926
BLAKE2b-256 55a3956acf539d457e2583092f38dcb4a35452d5a254cd8913662394b021ab43

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6a6a2359b805b20e0385e9ad83dd980103f8b923d7561accbff13138eb7b998
MD5 a11986bea9d93b148a45a3aaefe35aa5
BLAKE2b-256 5dd2ce1e288ff6b96177855fcd418af4aa864fe07cb27d44e800510ff9429af4

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp312-cp312-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp312-cp312-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 8.0 MB
  • Tags: CPython 3.12, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp312-cp312-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 681acb57cb5cfdb337cc65a274a214d5d9ec448788f3f071c7a16b1fdd063d1f
MD5 c9eb0022ac2d749e8467bdaeb040ab78
BLAKE2b-256 11ab878bbaf68365d98e12fb527088dcaa4f443b6a382ef4d1e245e244251cd5

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3e2909ad0273a30b8053e7e782d43b8092bf45a13f097a5f78f5367a6981c238
MD5 38f0c757ef67efef7aa438a5e989314e
BLAKE2b-256 750ab065514cd7d1d52452c3709fbe40782d3d2211f43906ffd39f0576b3736a

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 885c245572ce34e533bf2c892e87ae9cf27c58366755f1fdf6e61ac038cd76bb
MD5 4c40ed012e7dc7a7584584c98e840438
BLAKE2b-256 8fc6dc9104a53fcf59180064ce800f3979854d57fa2ccc9221d78889afb9eea1

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 16.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7d50321a938654b58f978170e8217adb4adb5f63ab51968530b75d625f8e0d0
MD5 730cab6908935e5c5a0cb8a0be6e2c9b
BLAKE2b-256 140ce9d31037b630e3486919b2caa050d09a9356949ab4289757a25a40ac3359

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 243a7d1984093c4912759e452753977a3cf936639abb88dd96105d1acd1eea52
MD5 a02db5c241139d2250ca4336e90078dc
BLAKE2b-256 a0c7d7221b39f1f5fb64b9132c7a00bd323dcd77329f1a00f504efe7b48b59fa

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 bfa076c286610b12d4fe8ec17de2e5396d1d2cd307c101c44653289ef31811ee
MD5 11a2ef6478fbc3eb8e5945ef3b6fb66c
BLAKE2b-256 a73c40a6e1ef1312d257dae6e057a7fe39934c253296cf7062fa0516ae527cb4

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

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

File hashes

Hashes for py2native-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55e135cfc170752a627d4176100c0880339f2f87678fbcda131ae1950a40135a
MD5 0884ec8b23dc392d7d1346a7fa4caa7e
BLAKE2b-256 c4787d68da2aa6004559b65af96f69230d89d27eae45df4ea6204cee4e51cfd4

See more details on using hashes here.

File details

Details for the file py2native-0.1.5-cp311-cp311-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: py2native-0.1.5-cp311-cp311-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 7.9 MB
  • Tags: CPython 3.11, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.24 {"installer":{"name":"uv","version":"0.11.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for py2native-0.1.5-cp311-cp311-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3fa77795cdd3b164f495b24f211e76f8066ded018fb162518014ceaef3fd09f9
MD5 7e1ea8348125806c5b6e6777ba1759d6
BLAKE2b-256 5cefff4b49ef62081286e7f3388a9c0a71480da0b475cd954b2361d3968c5d4e

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