Skip to main content

UnityPy

Discord server invite PyPI supported Python versions Win/Mac/Linux MIT Test

A Unity asset extractor for Python based on AssetStudio.

Next to extraction, UnityPy also supports editing Unity assets. Via the typetree structure all object types can be edited in their native forms.

# modification via dict:
    raw_dict = obj.parse_as_dict()
    # modify raw dict
    obj.patch(raw_dict)
# modification via parsed class
    instance = obj.parse_as_object()
    # modify instance
    obj.patch(instance)

If you need advice or if you want to talk about (game) data-mining, feel free to join the UnityPy Discord.

If you're using UnityPy for a commercial project, a donation to a charitable cause or a sponsorship of this project is expected.

As UnityPy is still in active development, breaking changes can happen. These changes are usually limited to minor versions (x.y) and not to patch versions (x.y.z). So in case that you don't want to actively maintain your project, make sure to make a note of the used UnityPy version in your README or add a check in your code. e.g.

if UnityPy.__version__ != '1.9.6':
    raise ImportError("Invalid UnityPy version detected. Please use version 1.9.6")
  1. Installation
  2. Example
  3. Important Classes
  4. Important Object Types
  5. Configurations
  6. Credits

Installation

Python 3.8 or higher is required.

Install via PyPI:

pip install UnityPy

Install from source code:

git clone https://github.com/K0lb3/UnityPy.git
cd UnityPy
python -m pip install .

Notes

Windows

Visual C++ Redistributable is required for the brotli dependency. In case a new(ish) Python version is used, it can happen that the C-dependencies of UnityPy might not be precompiled for this version. In such cases the user either has to report this as issue or follow the steps of this issue to compile it oneself. Another option for the user is downgrading Python to the latest version supported by UnityPy. For this see the Python version badge at the top of the README.

Crash without warning/error

The C-implementation of the typetree reader can directly crash Python. In case this happens, the usage of the C-typetree reader can be disabled. Read this section for more details.

Example

The following is a simple example.

import os
import UnityPy

def unpack_all_assets(source_folder: str, destination_folder: str):
    # iterate over all files in source folder
    for root, dirs, files in os.walk(source_folder):
        for file_name in files:
            # generate file_path
            file_path = os.path.join(root, file_name)
            # load that file via UnityPy.load
            env = UnityPy.load(file_path)

            # iterate over internal objects
            for obj in env.objects:
                # process specific object types
                if obj.type.name in ["Texture2D", "Sprite"]:
                    # parse the object data
                    data = obj.parse_as_object()

                    # create destination path
                    dest = os.path.join(destination_folder, data.m_Name)

                    # make sure that the extension is correct
                    # you probably only want to do so with images/textures
                    dest, ext = os.path.splitext(dest)
                    dest = dest + ".png"

                    img = data.image
                    img.save(dest)

            # alternative way which keeps the original path
            for path,obj in env.container.items():
                if obj.type.name in ["Texture2D", "Sprite"]:
                    data = obj.parse_as_object()
                    # create dest based on original path
                    dest = os.path.join(destination_folder, *path.split("/"))
                    # make sure that the dir of that path exists
                    os.makedirs(os.path.dirname(dest), exist_ok = True)
                    # correct extension
                    dest, ext = os.path.splitext(dest)
                    dest = dest + ".png"
                    data.image.save(dest)

You probably have to read Important Classes and Important Object Types to understand how it works.

Users with slightly advanced Python skills should look at UnityPy/tools/extractor.py for a more advanced example. It can also be used as a general template or as an importable tool.

Important Classes

Environment

Environment loads and parses the given files. It can be initialized via:

  • a file path - apk files can be loaded as well
  • a folder path - loads all files in that folder (bad idea for folders with a lot of files)
  • a stream - e.g., io.BytesIO, file stream,...
  • a bytes object - will be loaded into a stream

UnityPy can detect if the file is a WebFile, BundleFile, Asset, or APK.

The unpacked assets will be loaded into .files, a dict consisting of asset-name : asset.

All objects of the loaded assets can be easily accessed via .objects, which itself is a simple recursive iterator.

import io
import UnityPy

# all of the following would work
src = "file_path"
src = b"bytes"
src = io.BytesIO(b"Streamable")

env = UnityPy.load(src)

for obj in env.objects:
    ...

# saving an edited file
    # apply modifications to the objects
    # don't forget to use data.save()
    ...
with open(dst, "wb") as f:
    f.write(env.file.save())

Asset

Assets (SerializedFile class) are a container that contains multiple objects. One of these objects can be an AssetBundle, which contains a file path for some of the objects in the same asset.

All objects can be found in the .objects dict - {ID : object}.

The objects with a file path can be found in the .container dict - {path : object}.

Object

Objects (ObjectReader class) contain the actual files, e.g., textures, text files, meshes, settings, ...

To acquire the actual data of an object it has to be parsed first. This happens via the parse functions mentioned below. This isn't done automatically to save time as only a small part of the objects are usually of interest. Serialized objects can be set with raw data using .set_raw_data(data) or modified with .save() function, if supported.

For object types with m_Name you can use .peek_name() to only read the name of the parsed object without parsing it completely, which is way faster.

There are two general parsing functions, .parse_as_object() and .parse_as_dict(). parse_as_dict parses the object data into a dict. parse_as_object parses the object data into a class. If the class is a Unity class, it's stub class from UnityPy.classes(.generated) will be used, if it's an unknown one, then it will be parsed into an UnknownObject, which simply acts as interface for the otherwise parsed dict. Some special classes, namely those below, have additional handlers added to their class for easier interaction with them.

The .patch(item) function can be used on all object (readers) to replace their data with the changed item, which has to be either a dict or of the class the object represents.

Example

for obj in env.objects:
    if obj.type.name == "the type you want":
        if obj.peek_name() != "the specific object you want":
            continue
        # parsing
        instance = obj.parse_as_object()
        dic = obj.parse_as_dict()

        # modifying
        instance.m_Name = "new name"
        dic["m_Name"] = "new name"

        # saving
        obj.patch(instance)
        obj.patch(dic)

Legacy

Following functions are legacy functions that will be removed in the future when major version 2 hits. The modern versions are equivalent to them and have a more correct type hints.

Legacy Modern
read parse_as_object
read_typetree parse_as_dict
save_typetree patch

Important Object Types

Now UnityPy uses auto generated classes with some useful extension methods and properties defined in legacy_patch. You can search for a specific classes in the module UnityPy.classes with your IDE's autocompletion.

Texture2D

  • .m_Name
  • .image converts the texture into a PIL.Image
  • .m_Width - texture width (int)
  • .m_Height - texture height (int)

Export

from PIL import Image
for obj in env.objects:
    if obj.type.name == "Texture2D":
        # export texture
        tex = obj.parse_as_object()
        path = os.path.join(export_dir, f"{tex.m_Name}.png")
        tex.image.save(path)
        # edit texture
        fp = os.path.join(replace_dir, f"{tex.m_Name}.png")
        pil_img = Image.open(fp)
        tex.image = pil_img
        tex.save()

Sprite

Sprites are part of a texture and can have a separate alpha-image as well. Unlike most other extractors (including AssetStudio), UnityPy merges those two images by itself.

  • .m_Name
  • .image - converts the merged texture part into a PIL.Image
  • .m_Width - sprite width (int)
  • .m_Height - sprite height (int)

Export

for obj in env.objects:
    if obj.type.name == "Sprite":
        sprite = obj.parse_as_object()
        path = os.path.join(export_dir, f"{sprite.m_Name}.png")
        sprite.image.save(path)

TextAsset

TextAssets are usually normal text files.

  • .m_Name
  • .m_Script - str

Some games save binary data as TextAssets. As m_Script gets handled as str by default, use m_Script.encode("utf-8", "surrogateescape") to retrieve the original binary data.

Export

for obj in env.objects:
    if obj.type.name == "TextAsset":
        # export asset
        txt = obj.parse_as_object()
        path = os.path.join(export_dir, f"{txt.m_Name}.txt")
        with open(path, "wb") as f:
            f.write(txt.m_Script.encode("utf-8", "surrogateescape"))
        # edit asset
        fp = os.path.join(replace_dir, f"{txt.m_Name}.txt")
        with open(fp, "rb") as f:
            txt.m_Script = f.read().decode("utf-8", "surrogateescape")
        txt.save()

MonoBehaviour

MonoBehaviour assets are usually used to save the class instances with their values. The structure/typetree for these classes might not be contained in the asset files. In such cases see the 2nd example (TypeTreeGenerator) below.

  • .m_Name
  • .m_Script
  • custom data

Export

import json

for obj in env.objects:
    if obj.type.name == "MonoBehaviour":
        # export
        # save decoded data
        tree = obj.parse_as_dict()
        fp = os.path.join(extract_dir, f"{tree['m_Name']}.json")
        with open(fp, "wt", encoding = "utf8") as f:
            json.dump(tree, f, ensure_ascii = False, indent = 4)

        # edit
        tree = obj.parse_as_dict()
        # apply modifications to the data within the tree
        obj.patch(tree)

TypeTreeGenerator

UnityPy can generate the typetrees of MonoBehaviours from the game assemblies using an optional package, TypeTreeGeneratorAPI, which has to be installed via pip. UnityPy will automatically try to generate the typetree of MonoBehaviours if the typetree is missing in the assets and env.typetree_generator is set.

import UnityPy
from UnityPy.helpers.TypeTreeGenerator import TypeTreeGenerator

# create generator
GAME_ROOT_DIR: str
# e.g. r"D:\Program Files (x86)\Steam\steamapps\common\Aethermancer Demo"
GAME_UNITY_VERSION: str
# you can get the version via an object
# e.g. objects[0].assets_file.unity_version

generator = TypeTreeGenerator(GAME_UNITY_VERSION)
generator.load_local_game(GAME_ROOT_DIR)
# generator.load_local_game(root_dir: str) - for a Windows game
# generator.load_dll_folder(dll_dir: str) - for mono / non-il2cpp or generated dummies
# generator.load_dll(dll: bytes)
# generator.load_il2cpp(il2cpp: bytes, metadata: bytes)

env = UnityPy.load(fp)
# assign generator to env
env.typetree_generator = generator
for obj in objects:
    if obj.type.name == "MonoBehaviour":
        # automatically tries to use the generator in the background if necessary
        x = obj.parse_as_object()

AudioClip

  • .samples - {sample-name : sample-data}

The samples are converted into the .wav format. The sample data is a .wav file in bytes.

clip: AudioClip
for name, data in clip.samples.items():
    with open(name, "wb") as f:
        f.write(data)

Font

Export

if obj.type.name == "Font":
    font: Font = obj.parse_as_object()
    if font.m_FontData:
        extension = ".ttf"
        if font.m_FontData[0:4] == b"OTTO":
            extension = ".otf"

    with open(os.path.join(path, font.m_Name+extension), "wb") as f:
        f.write(font.m_FontData)

Mesh

  • .export() - mesh exported as .obj (str)

The mesh will be converted to the Wavefront .obj file format.

mesh: Mesh
with open(f"{mesh.m_Name}.obj", "wt", newline = "") as f:
    # newline = "" is important
    f.write(mesh.export())

Renderer, MeshRenderer, SkinnedMeshRenderer

ALPHA-VERSION

  • .export(export_dir) - exports the associated mesh, materials, and textures into the given directory

The mesh and materials will be in the Wavefront formats.

mesh_renderer: Renderer
export_dir: str

if mesh_renderer.m_GameObject:
    # get the name of the model
    game_obj_reader = mesh_renderer.m_GameObject.deref()
    game_obj_name = game_obj_reader.peek_name()
    export_dir = os.path.join(export_dir, game_obj_name)
mesh_renderer.export(export_dir)

Texture2DArray

WARNING - not well tested

  • .m_Name
  • .image converts the texture2darray into a PIL.Image
  • .m_Width - texture width (int)
  • .m_Height - texture height (int)

Export

import os
from PIL import Image
for obj in env.objects:
    if obj.type.name == "Texture2DArray":
        # export texture
        tex_arr = obj.parse_as_object()
        for i, image in enumerate(tex_arr.images):
            image.save(os.path.join(path, f"{tex_arr.m_Name}_{i}.png"))
        # editing isn't supported yet!

Configurations

There're several configurations and interfaces that provide the customizability to UnityPy.

Unity CN Decryption

The Chinese version of Unity has its own builtin option to encrypt AssetBundles/BundleFiles. As it's a feature of Unity itself, and not a game specific protection, it is included in UnityPy as well. To enable encryption simply use the code as follow, with key being the value that the game that loads the bundles passes to AssetBundle.SetAssetBundleDecryptKey.

import UnityPy
UnityPy.set_assetbundle_decrypt_key(key)

Unity Fallback Version

In case UnityPy failed to detect the Unity version of the game assets, you can set a fallback version. e.g.

import UnityPy.config
UnityPy.config.FALLBACK_UNITY_VERSION = "2.5.0f5"

Disable Typetree C-Implementation

The C-implementation of typetree reader can boost the parsing of typetree by a lot. If you want to disable it and use pure Python reader, you can put the following 2 lines in your main file.

from UnityPy.helpers import TypeTreeHelper
TypeTreeHelper.read_typetree_boost = False

Custom Block (De)compression

Some game assets have non-standard compression/decompression algorithm applied on the block data. If you wants to customize the compression/decompression function, you can modify the corresponding function mapping. e.g.

from UnityPy.enums.BundleFile import CompressionFlags
flag = CompressionFlags.LZHAM

from UnityPy.helpers import CompressionHelper
CompressionHelper.COMPRESSION_MAP[flag] = custom_compress
CompressionHelper.DECOMPRESSION_MAP[flag] = custom_decompress
  • custom_compress(data: bytes) -> bytes (where bytes can also be bytearray or memoryview)
  • custom_decompress(data: bytes, uncompressed_size: int) -> bytes

Custom Filesystem

UnityPy uses fsspec under the hood to manage all filesystem interactions. This allows using various different types of filesystems without having to change UnityPy's code. It also means that you can use your own custom filesystem to e.g. handle indirection via catalog files, load assets on demand from a server, or decrypt files.

Following methods of the filesystem have to be implemented for using it in UnityPy.

  • sep (not a function, just the separator as character)
  • isfile(self, path: str) -> bool
  • isdir(self, path: str) -> bool
  • exists(self, path: str, **kwargs) -> bool
  • walk(self, path: str, **kwargs) -> Iterable[List[str], List[str], List[str]]
  • open(self, path: str, mode: str = "rb", **kwargs) -> file ("rb" mode required, "wt" required for ModelExporter)
  • makedirs(self, path: str, exist_ok: bool = False) -> bool

Credits

First of all, thanks a lot to all contributors of UnityPy and all of its users.

Also, many thanks to:

Release files for UnityPy 1.25.3

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for UnityPy 1.25.3
File Size Uploaded
unitypy-1.25.3.tar.gz 386.9 kB Details

Built distributions (wheels)

Table of built distributions (wheels) for UnityPy 1.25.3
File
unitypy-1.25.3-cp314-cp314t-win_arm64.whl CPython 3.14 CPython 3.14 free-threading Windows ARM64 Details
unitypy-1.25.3-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
unitypy-1.25.3-cp314-cp314t-win32.whl CPython 3.14 CPython 3.14 free-threading Windows x86-32 Details
unitypy-1.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64 Details
unitypy-1.25.3-cp314-cp314t-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32 Details
unitypy-1.25.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
unitypy-1.25.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.28+ x86-32, Linux glibc 2.24+ x86-32 Details
unitypy-1.25.3-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
unitypy-1.25.3-cp314-cp314t-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64 Details
unitypy-1.25.3-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
unitypy-1.25.3-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
unitypy-1.25.3-cp314-cp314-win32.whl CPython 3.14 CPython 3.14 Windows x86-32 Details
unitypy-1.25.3-cp314-cp314-musllinux_1_2_x86_64.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-64 Details
unitypy-1.25.3-cp314-cp314-musllinux_1_2_i686.whl CPython 3.14 CPython 3.14 Linux musl 1.2+ x86-32 Details
unitypy-1.25.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
unitypy-1.25.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl CPython 3.14 CPython 3.14 Linux glibc 2.24+ x86-32, Linux glibc 2.28+ x86-32 Details
unitypy-1.25.3-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
unitypy-1.25.3-cp314-cp314-macosx_10_15_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.15+ x86-64 Details
unitypy-1.25.3-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
unitypy-1.25.3-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
unitypy-1.25.3-cp313-cp313-win32.whl CPython 3.13 CPython 3.13 Windows x86-32 Details
unitypy-1.25.3-cp313-cp313-musllinux_1_2_x86_64.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-64 Details
unitypy-1.25.3-cp313-cp313-musllinux_1_2_i686.whl CPython 3.13 CPython 3.13 Linux musl 1.2+ x86-32 Details
unitypy-1.25.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
unitypy-1.25.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl CPython 3.13 CPython 3.13 Linux glibc 2.28+ x86-32, Linux glibc 2.24+ x86-32 Details
unitypy-1.25.3-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
unitypy-1.25.3-cp313-cp313-macosx_10_13_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.13+ x86-64 Details
unitypy-1.25.3-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
unitypy-1.25.3-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
unitypy-1.25.3-cp312-cp312-win32.whl CPython 3.12 CPython 3.12 Windows x86-32 Details
unitypy-1.25.3-cp312-cp312-musllinux_1_2_x86_64.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-64 Details
unitypy-1.25.3-cp312-cp312-musllinux_1_2_i686.whl CPython 3.12 CPython 3.12 Linux musl 1.2+ x86-32 Details
unitypy-1.25.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
unitypy-1.25.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl CPython 3.12 CPython 3.12 Linux glibc 2.24+ x86-32, Linux glibc 2.28+ x86-32 Details
unitypy-1.25.3-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
unitypy-1.25.3-cp312-cp312-macosx_10_13_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.13+ x86-64 Details
unitypy-1.25.3-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
unitypy-1.25.3-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
unitypy-1.25.3-cp311-cp311-win32.whl CPython 3.11 CPython 3.11 Windows x86-32 Details
unitypy-1.25.3-cp311-cp311-musllinux_1_2_x86_64.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-64 Details
unitypy-1.25.3-cp311-cp311-musllinux_1_2_i686.whl CPython 3.11 CPython 3.11 Linux musl 1.2+ x86-32 Details
unitypy-1.25.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
unitypy-1.25.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl CPython 3.11 CPython 3.11 Linux glibc 2.28+ x86-32, Linux glibc 2.24+ x86-32 Details
unitypy-1.25.3-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
unitypy-1.25.3-cp311-cp311-macosx_10_9_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.9+ x86-64 Details
unitypy-1.25.3-cp310-cp310-win_arm64.whl CPython 3.10 CPython 3.10 Windows ARM64 Details
unitypy-1.25.3-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
unitypy-1.25.3-cp310-cp310-win32.whl CPython 3.10 CPython 3.10 Windows x86-32 Details
unitypy-1.25.3-cp310-cp310-musllinux_1_2_x86_64.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-64 Details
unitypy-1.25.3-cp310-cp310-musllinux_1_2_i686.whl CPython 3.10 CPython 3.10 Linux musl 1.2+ x86-32 Details
unitypy-1.25.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
unitypy-1.25.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl CPython 3.10 CPython 3.10 Linux glibc 2.28+ x86-32, Linux glibc 2.24+ x86-32 Details
unitypy-1.25.3-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
unitypy-1.25.3-cp310-cp310-macosx_10_9_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.9+ x86-64 Details
unitypy-1.25.3-cp39-cp39-win_arm64.whl CPython 3.9 CPython 3.9 Windows ARM64 Details
unitypy-1.25.3-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
unitypy-1.25.3-cp39-cp39-win32.whl CPython 3.9 CPython 3.9 Windows x86-32 Details
unitypy-1.25.3-cp39-cp39-musllinux_1_2_x86_64.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-64 Details
unitypy-1.25.3-cp39-cp39-musllinux_1_2_i686.whl CPython 3.9 CPython 3.9 Linux musl 1.2+ x86-32 Details
unitypy-1.25.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.24+ x86-64, Linux glibc 2.28+ x86-64 Details
unitypy-1.25.3-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl CPython 3.9 CPython 3.9 Linux glibc 2.28+ x86-32, Linux glibc 2.24+ x86-32 Details
unitypy-1.25.3-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
unitypy-1.25.3-cp39-cp39-macosx_10_9_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.9+ x86-64 Details
unitypy-1.25.3-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
unitypy-1.25.3-cp38-cp38-win32.whl CPython 3.8 CPython 3.8 Windows x86-32 Details
unitypy-1.25.3-cp38-cp38-musllinux_1_2_x86_64.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-64 Details
unitypy-1.25.3-cp38-cp38-musllinux_1_2_i686.whl CPython 3.8 CPython 3.8 Linux musl 1.2+ x86-32 Details
unitypy-1.25.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.28+ x86-64, Linux glibc 2.24+ x86-64 Details
unitypy-1.25.3-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl CPython 3.8 CPython 3.8 Linux glibc 2.24+ x86-32, Linux glibc 2.28+ x86-32 Details
unitypy-1.25.3-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
unitypy-1.25.3-cp38-cp38-macosx_10_9_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.9+ x86-64 Details

Total release size: 76.8 MB

Release files / unitypy-1.25.3.tar.gz

Download URL unitypy-1.25.3.tar.gz
Size 386.9 kB
Tags Source
SHA-256 checksum
How to use checksums
41b3e830a04469dfabeadc097f59ba7008e289864604728e1ad623c22d7c30dc
BLAKE2b-256 checksum
How to use checksums
5a6c6b5ff91d31ba5f8f12cad6f4f5ffa0f0aa27f35f20b9e2a5d3f2c13a8825
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314t-win_arm64.whl

Download URL unitypy-1.25.3-cp314-cp314t-win_arm64.whl
Size 441.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows ARM64
SHA-256 checksum
How to use checksums
c418fa9c947b041deea44cddb1aac5f91722dbeab46462fb8d762a18ddb35678
BLAKE2b-256 checksum
How to use checksums
2a652fdb9cb8226680f49c13ac900bb52aa8447c48d48bf769c220de7e40c221
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314t-win_amd64.whl

Download URL unitypy-1.25.3-cp314-cp314t-win_amd64.whl
Size 439.7 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
69ff672342be89a1fc090eed1ab98a80bc590e18c328d8be654501f76fcf66d1
BLAKE2b-256 checksum
How to use checksums
d82fa97f7e00263fb1196a0de7cb7d904b22601fcb88800379d5a967c153d349
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314t-win32.whl

Download URL unitypy-1.25.3-cp314-cp314t-win32.whl
Size 435.8 kB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-32
SHA-256 checksum
How to use checksums
e7c532b65dedf48bf0a8bee8d78f68c5fa5d6654bdcc2e108eb210ffb2b5088d
BLAKE2b-256 checksum
How to use checksums
6de3c1cbb4bf627095892c327b33c4e7637e7bd98fe46f8eb466e6189283d27f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl

Download URL unitypy-1.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
22a0b25a5e128fb92dee888b93fef682b25469d30194cc0d1b0b94d62493382f
BLAKE2b-256 checksum
How to use checksums
651e1a32944e0f93425feed7b56ea82c4b7ca08d8f071f322b6314a39ae667e8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314t-musllinux_1_2_i686.whl

Download URL unitypy-1.25.3-cp314-cp314t-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
2d786fe3fb95c51e100c63131692b7b7e26ca7b99bf9ac8e5d2fcba16bf65526
BLAKE2b-256 checksum
How to use checksums
d394d55d2936049d8c9c83633724a4441ae5d4d8270e294fb4b76d66b3e684dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL unitypy-1.25.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
75a03f163360cc051ac77c2601629b31dd1bfaee469dea2402e52c822384a673
BLAKE2b-256 checksum
How to use checksums
d27ef7e0bf25e8b85fb61e9b69deb6b71c55b7ddc407c1604c326bd71b4e4830
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl

Download URL unitypy-1.25.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Size 1.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.24+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
0e3576ea941851d267a632c43af28b60094c678981e989f8a6c7c8ffdc813ab6
BLAKE2b-256 checksum
How to use checksums
2c45a83f8a1d3fc760a950ca51954724f2e86534ac8a5bbcd920eb4ecc82c3c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314t-macosx_11_0_arm64.whl

Download URL unitypy-1.25.3-cp314-cp314t-macosx_11_0_arm64.whl
Size 443.5 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
74a811b763b19bb267a33405c18f267b32c82e35da67012e562fa7da58e37a0d
BLAKE2b-256 checksum
How to use checksums
8c7940f46b8c2458b3d86a7bb69851554149fac1dd7ff0fb7641c05b846c2755
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314t-macosx_10_15_x86_64.whl

Download URL unitypy-1.25.3-cp314-cp314t-macosx_10_15_x86_64.whl
Size 447.4 kB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
5d55ac4975b25d513717f56f33868e30eda3ebe8e377662961a522cf8e775bf7
BLAKE2b-256 checksum
How to use checksums
fdfc258683198933fc8df5e0c7aca47492c5bbea9882cd9e9cb10f7371553c8a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314-win_arm64.whl

Download URL unitypy-1.25.3-cp314-cp314-win_arm64.whl
Size 441.0 kB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
89babcf6284b9b0aa6a2ed1222a74fa11d93fb8adcddd35e174c886c180adfac
BLAKE2b-256 checksum
How to use checksums
1007f4dd8809daf0cb74e7b11a5f223b97972ea8fe273f746cb9a40405e81388
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314-win_amd64.whl

Download URL unitypy-1.25.3-cp314-cp314-win_amd64.whl
Size 439.0 kB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
b0b921cc74550d62736dabcd015b7ac9abfd3e273006d700bfb80e25561e74d0
BLAKE2b-256 checksum
How to use checksums
72db1021064805ba2950cbd377d5e2915ccdef769c24043c238e6d33753d38e2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314-win32.whl

Download URL unitypy-1.25.3-cp314-cp314-win32.whl
Size 435.2 kB
Tags CPython 3.14 Windows x86-32
SHA-256 checksum
How to use checksums
83b8a9e878119aaf33080cfb5912e72fc3a89a028e463ac6cc6dc204359c0534
BLAKE2b-256 checksum
How to use checksums
d4ac151ae25c31713ce4f0373131673d2e1c223c6800a34d6bc67133aba28c9b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314-musllinux_1_2_x86_64.whl

Download URL unitypy-1.25.3-cp314-cp314-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.14 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b6c5c54df01ad2980fccc21f59033fd1c19f0b2aef2adcdfe2e1e75d1e69a8a3
BLAKE2b-256 checksum
How to use checksums
d8824231d952c0dbd41def7cdc378165afedcbb09c50f09bb92c418c55b1b602
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314-musllinux_1_2_i686.whl

Download URL unitypy-1.25.3-cp314-cp314-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.14 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
6954fe07f7babc7ea5da4380757aa2e4068b9512f2004386bde5285e8ede5357
BLAKE2b-256 checksum
How to use checksums
91734aad1015cab0b5888affbfcaefec5845e12f927c51729721dfdb1fa7b113
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL unitypy-1.25.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
5daf0c8a979e166f8189038d73c57fb5aa16ea1097da8f4cbdd7180468a0c337
BLAKE2b-256 checksum
How to use checksums
41b05fb5fa6de99e5264339de770a4b9d5c870ac363fd49af2d208e8ad8b858b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl

Download URL unitypy-1.25.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Size 1.3 MB
Tags CPython 3.14 Linux glibc 2.24+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
e325e34e24cd1841e6490602a6c3e664419effaaaea02d04f65b25956bb5c057
BLAKE2b-256 checksum
How to use checksums
89dc3c9d666abf331ff7a7b1cf1256371aa7083d7fcab4ec92ab415de94712f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314-macosx_11_0_arm64.whl

Download URL unitypy-1.25.3-cp314-cp314-macosx_11_0_arm64.whl
Size 442.3 kB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
488ca17dd7723c0572c9fdd8790ca6a7dedde0fc8ca540ea40a87d1b4e4a7ce3
BLAKE2b-256 checksum
How to use checksums
93616825baf30540a42e153c329e6113f94f045086c3e5a08d404d2366b8cb64
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp314-cp314-macosx_10_15_x86_64.whl

Download URL unitypy-1.25.3-cp314-cp314-macosx_10_15_x86_64.whl
Size 446.0 kB
Tags CPython 3.14 macOS 10.15+ x86-64
SHA-256 checksum
How to use checksums
f1ed96902156d52b8793effa1e127577f7fc04ca8fffd108db7b8b514bb7e452
BLAKE2b-256 checksum
How to use checksums
dd1e2a269c45d44d01deef3706d4227d53a73a1998359ddb1eee4fbbb016c5e3
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp313-cp313-win_arm64.whl

Download URL unitypy-1.25.3-cp313-cp313-win_arm64.whl
Size 439.3 kB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
938d50adfcf0b71eff51f5116f6ab49a09410d62112da30e0e06499936f47e21
BLAKE2b-256 checksum
How to use checksums
ac874076c6907686c09807f6886fbf4ea0a50bf264ffc16f9422f250aeed281f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp313-cp313-win_amd64.whl

Download URL unitypy-1.25.3-cp313-cp313-win_amd64.whl
Size 437.7 kB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
255b7284e2f61161ceb0b361f742ac516236e0785fdb11c7d6911e691f1c0782
BLAKE2b-256 checksum
How to use checksums
9a433ef6c84e19e77c44b4d23d4b0d19c1b08624d706aa9719976b121930bccf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp313-cp313-win32.whl

Download URL unitypy-1.25.3-cp313-cp313-win32.whl
Size 433.7 kB
Tags CPython 3.13 Windows x86-32
SHA-256 checksum
How to use checksums
7b920ec03d1f9136bc0f68b500fe90f9d2d434adaa91aacd60fcafc15ea97893
BLAKE2b-256 checksum
How to use checksums
8f39f8b18da993970686ee480b14f76c1af7ae8b2a331078e8c8e0f2709c0a0d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp313-cp313-musllinux_1_2_x86_64.whl

Download URL unitypy-1.25.3-cp313-cp313-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.13 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
1ffc2d7990e7f7aa12be741392edca9d2e4d175f9b5dbbf0bdde58e16fef0605
BLAKE2b-256 checksum
How to use checksums
68f167084b17d278c62b8001cbd5a424f1a5a3cdb00a8c2aa532d3af51178599
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp313-cp313-musllinux_1_2_i686.whl

Download URL unitypy-1.25.3-cp313-cp313-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.13 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
042540f467923132152ae64093bee3c169d6c63127d20c0a8a96664da0da284c
BLAKE2b-256 checksum
How to use checksums
9254c0f9d31f9bd21ae5fd55715bfd283404fbc975b4d25213ff721c5a5e859e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL unitypy-1.25.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
f63526a953317355bc9487e00431b2e143ee3b5a6468e12b6ea10f786ec77207
BLAKE2b-256 checksum
How to use checksums
4a3eb83eb8404c097669ee603163b6cda8b48588c5fa69da9932b2d89783bae7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl

Download URL unitypy-1.25.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Size 1.3 MB
Tags CPython 3.13 Linux glibc 2.24+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
632d5f2817b117688c0e0746d4741826d48398f1390315c5352ff0d3f547c144
BLAKE2b-256 checksum
How to use checksums
4819b50df69270a8bf399608b977719659f4e11017befddd93453ff54e1ae976
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp313-cp313-macosx_11_0_arm64.whl

Download URL unitypy-1.25.3-cp313-cp313-macosx_11_0_arm64.whl
Size 442.1 kB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9685f3cfe53d4ba13df761b51d3e519ab9447eedda8c44d4613f0941a16be234
BLAKE2b-256 checksum
How to use checksums
f02ce94731647b1b1f9111a79b0f67ea36b7287c6bf37eca8d8e9e54b8e63897
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp313-cp313-macosx_10_13_x86_64.whl

Download URL unitypy-1.25.3-cp313-cp313-macosx_10_13_x86_64.whl
Size 445.8 kB
Tags CPython 3.13 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
3648e2488da974ab6fd17e4a7a7dadb550c2635566a7d577fa28f29f6eeea40e
BLAKE2b-256 checksum
How to use checksums
20419ad430e29b3e1de7c31885ecf33eac6c58ea5c460eb8f99f1f79c0ae585a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp312-cp312-win_arm64.whl

Download URL unitypy-1.25.3-cp312-cp312-win_arm64.whl
Size 439.3 kB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
47c2e5fb38a71af91a03a3e930b2208e8445566f2d70180daa07297fdb610521
BLAKE2b-256 checksum
How to use checksums
6f5013420d02e5aec2e1c2680be5a19cad95f9a2add047d7012ce6ca38eef722
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp312-cp312-win_amd64.whl

Download URL unitypy-1.25.3-cp312-cp312-win_amd64.whl
Size 437.7 kB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
e48098837c067833083e7be0fc96f7af39ac68a589e328b4ead656e6350d9ce1
BLAKE2b-256 checksum
How to use checksums
70b2d35920055001e7603a36bab5e25ff58bd2a31cab9b05ec626d780f22d16f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp312-cp312-win32.whl

Download URL unitypy-1.25.3-cp312-cp312-win32.whl
Size 433.7 kB
Tags CPython 3.12 Windows x86-32
SHA-256 checksum
How to use checksums
93b47673a00e4825ed3fbce53d4d7e03ba4a024fcec788dbccba4e8329441838
BLAKE2b-256 checksum
How to use checksums
53c520fcba89b43b9777749a64f8e9c10ebd19ad0c2a8bc353313f30bb849388
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp312-cp312-musllinux_1_2_x86_64.whl

Download URL unitypy-1.25.3-cp312-cp312-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.12 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
c967111dcb97d639d1e10a62fcf487552cfde1fd46f89f66a2a272027a086e86
BLAKE2b-256 checksum
How to use checksums
67c3f146a959efe63e91c288ebfae938fe8a2f4b6760d527cd69a6136d080115
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp312-cp312-musllinux_1_2_i686.whl

Download URL unitypy-1.25.3-cp312-cp312-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.12 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b01526f4ccbecdc6312f1314ede8c2150734d1f1ea60f1991355cc4b29dc0270
BLAKE2b-256 checksum
How to use checksums
0c0a3c6d6306c5becff1655b37a2ea1eeafa39a43ac7211d1845186e77f877ce
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL unitypy-1.25.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
96d68dc0f0aeac5758f97296cb2681b300f17792b8f26bade569925d55a8581c
BLAKE2b-256 checksum
How to use checksums
835781610a99d62dcc05c1b1e9bbe62444384ea31f3c1b7b699e249d48f48258
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl

Download URL unitypy-1.25.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Size 1.3 MB
Tags CPython 3.12 Linux glibc 2.24+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
9e1f863d5abca6b7af618e701b34d9a9c06ae15e8ee83a30343e8ae6c2badb7e
BLAKE2b-256 checksum
How to use checksums
2e7e68ba941165271b8718ae56b4a3c644fae6bc7ad056f4ec62d5e64efc4254
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp312-cp312-macosx_11_0_arm64.whl

Download URL unitypy-1.25.3-cp312-cp312-macosx_11_0_arm64.whl
Size 442.1 kB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
83a6c70f335d97827707dc7728fcc5c06a8436bd69bd96e8a96dcfae50a4d27b
BLAKE2b-256 checksum
How to use checksums
5259c490d7bb2e3489154de2428b2a4a17daa04304dcf65e68dc7ffad247363b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp312-cp312-macosx_10_13_x86_64.whl

Download URL unitypy-1.25.3-cp312-cp312-macosx_10_13_x86_64.whl
Size 445.8 kB
Tags CPython 3.12 macOS 10.13+ x86-64
SHA-256 checksum
How to use checksums
e82bf30ee40d598771d691e69019078256fbdb2d7db09d6d17689fdce81b75cb
BLAKE2b-256 checksum
How to use checksums
5eaa848f274b7dd88a1e6980606a1b3319c2309b1ab60174000d2df5e92b2728
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp311-cp311-win_arm64.whl

Download URL unitypy-1.25.3-cp311-cp311-win_arm64.whl
Size 439.4 kB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
ae245f1e1da46132798b591d875d6aa82810d45c69ee2f9455837117762e5fef
BLAKE2b-256 checksum
How to use checksums
a96f98be615c42411e1041cb97f9b079575cecaa6f140fe9e27902839a311854
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp311-cp311-win_amd64.whl

Download URL unitypy-1.25.3-cp311-cp311-win_amd64.whl
Size 437.9 kB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
7de387cc8d251b1df53adc9263613b63b5539d627957d9f14b4836943e889b17
BLAKE2b-256 checksum
How to use checksums
f5506ff4d105030e640443f4b9ae6438accfa55b2860d112126264e017aff715
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp311-cp311-win32.whl

Download URL unitypy-1.25.3-cp311-cp311-win32.whl
Size 433.5 kB
Tags CPython 3.11 Windows x86-32
SHA-256 checksum
How to use checksums
23db994d4e79efe7545676fd129b5b991481484f14421c051ec5b64f8f27d150
BLAKE2b-256 checksum
How to use checksums
3a75b2e38a5d74cd69058d946dd45b8a2d59de019e3ffc270402a39c7b71fc19
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp311-cp311-musllinux_1_2_x86_64.whl

Download URL unitypy-1.25.3-cp311-cp311-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.11 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
4c9641a0377975cff15209ef0fad3d07bc6a61e5c9ec9bf34274ca48494bdd76
BLAKE2b-256 checksum
How to use checksums
0e3f7c9f9faffb173ab33de28b52c1bfeda7bd8c28297e2ca388446ccdd4466a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp311-cp311-musllinux_1_2_i686.whl

Download URL unitypy-1.25.3-cp311-cp311-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.11 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
329c43cc37fa9e4fccb6f28b40475bed8946ab78a4649fed35b412ee32988b22
BLAKE2b-256 checksum
How to use checksums
3dbf2c340544c1f1dc3016127d56207babf52e963f47728c465159c52bbbacaf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL unitypy-1.25.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
64d3eda29d14a56d7ee9c0d5e7f842a63fdfba6c392211791608a8a1690a37c6
BLAKE2b-256 checksum
How to use checksums
ca9125d92ac3602548c25fc5eebe0ad51696fdf2a0de675617306fa5db272476
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl

Download URL unitypy-1.25.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Size 1.3 MB
Tags CPython 3.11 Linux glibc 2.24+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
310463b65df7e94d6424b32224f7b6bdaa8effbb6fd18fca4ed928fe1807c6da
BLAKE2b-256 checksum
How to use checksums
0b84fe9b0f6956c2b9d0c48d68649812789f8e610b1a253cad7f475bf32f2739
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp311-cp311-macosx_11_0_arm64.whl

Download URL unitypy-1.25.3-cp311-cp311-macosx_11_0_arm64.whl
Size 441.5 kB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
ab01876c4061d96f7025223daf190c1e48e50d67cbe2c3b322c6493fac38ddde
BLAKE2b-256 checksum
How to use checksums
abf2977d2a4aafcfb62a88abbb73956cb15645ebe5934c016ca8a6b474581aae
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp311-cp311-macosx_10_9_x86_64.whl

Download URL unitypy-1.25.3-cp311-cp311-macosx_10_9_x86_64.whl
Size 445.6 kB
Tags CPython 3.11 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
2e83b9a275028e093fc3ef9f272be54f9a354cd7a03dd0ed397a21b946f857ee
BLAKE2b-256 checksum
How to use checksums
078213e10dac21704228425a2746aa5194809a98f28fc1261ab4fc3b717bf6f0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp310-cp310-win_arm64.whl

Download URL unitypy-1.25.3-cp310-cp310-win_arm64.whl
Size 439.4 kB
Tags CPython 3.10 Windows ARM64
SHA-256 checksum
How to use checksums
f35445da61862dd466bb329f16031ceb088a77ebf0f7b2768e4d5d42111bc42b
BLAKE2b-256 checksum
How to use checksums
67f10686082f33c223c1dc6dbb95f0c4f0f2d15455c81cf5a484decb7f5abdb4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp310-cp310-win_amd64.whl

Download URL unitypy-1.25.3-cp310-cp310-win_amd64.whl
Size 437.9 kB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
952d89db80ec4132e6d947e6efa800f92314ae7e6e9be5a3622d6a548b193900
BLAKE2b-256 checksum
How to use checksums
b36191c2609dddbab8b82e0739b0df0f887f08a38f2f0470be9c5146bcbb4db7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp310-cp310-win32.whl

Download URL unitypy-1.25.3-cp310-cp310-win32.whl
Size 433.5 kB
Tags CPython 3.10 Windows x86-32
SHA-256 checksum
How to use checksums
1570a33696afe38205c27396b42e1a0828aaede2f954e324f0b33aa66498a1c4
BLAKE2b-256 checksum
How to use checksums
c1913a81c7f57042d07762648ae5bdc08a04e18126a44a99f5e0f66ab4981607
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp310-cp310-musllinux_1_2_x86_64.whl

Download URL unitypy-1.25.3-cp310-cp310-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.10 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
72f10a7a9b5a7eb754d95133d10ff4d5bddc02c17a10d090797d92171e1541a5
BLAKE2b-256 checksum
How to use checksums
865a25d4da67c6eda538852daab5e941440998a56b853d0edc887fb84756a785
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp310-cp310-musllinux_1_2_i686.whl

Download URL unitypy-1.25.3-cp310-cp310-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.10 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
760ffdab73e7168381eab24ba6ad796eefd492d74eb0afd17e064992e6be731d
BLAKE2b-256 checksum
How to use checksums
e2fa71b49f9fe67777372142791f51f7d90d96f7669ecc68f2d11b2f951a2226
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL unitypy-1.25.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
8cd7ec71459b2ff6dc6619185dac02d7a66ce9670a1f2c5af2f2cca8edcf0d5d
BLAKE2b-256 checksum
How to use checksums
163d7381aee422edd0017636f1b5155c22cc8234461a9831ec485b54656e7592
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl

Download URL unitypy-1.25.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Size 1.3 MB
Tags CPython 3.10 Linux glibc 2.24+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
07531a2e56ef4cdf78db58743e0c121132246d1ccd688cc562534797d9e19edb
BLAKE2b-256 checksum
How to use checksums
6330c22b059257992b3ba609b7dfbc2f15698677bbe5437d9ef623fb9d7f1465
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp310-cp310-macosx_11_0_arm64.whl

Download URL unitypy-1.25.3-cp310-cp310-macosx_11_0_arm64.whl
Size 441.4 kB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9e2204050c77fcc9bd2add297651137f8fd1481fc0d1eaa2f36accf7156df3e5
BLAKE2b-256 checksum
How to use checksums
ac203c2879b4e76a43cf7260f5510637a32770af1aed0d16d7cb1c003ae77696
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp310-cp310-macosx_10_9_x86_64.whl

Download URL unitypy-1.25.3-cp310-cp310-macosx_10_9_x86_64.whl
Size 445.5 kB
Tags CPython 3.10 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
9dd05bcd9a1fc7942affdad9e37e2af1389bed7df63cd4410cf63b95bbd383de
BLAKE2b-256 checksum
How to use checksums
c00cd82681ddbb8ee84e07811d658e77cf191fb3e9a2873344b9c01dee1885ee
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp39-cp39-win_arm64.whl

Download URL unitypy-1.25.3-cp39-cp39-win_arm64.whl
Size 439.4 kB
Tags CPython 3.9 Windows ARM64
SHA-256 checksum
How to use checksums
8135edecc4111e87206761c399c1db5e35304aaef5c19b1effd8508243a55a5b
BLAKE2b-256 checksum
How to use checksums
d7ec5553f090f92c84a91ab4afcf498d2429bd05a9e88390f5cbfb26b463d1a7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp39-cp39-win_amd64.whl

Download URL unitypy-1.25.3-cp39-cp39-win_amd64.whl
Size 437.9 kB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
a5029d3dec03ec82b42c57d28e1f1466196109be1c9a2859e5f0280d3e9776cd
BLAKE2b-256 checksum
How to use checksums
514c347285a1f5c54d6a21eeefd0c4d9ed0b63c2ec20863bdcda7daeb78a731b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp39-cp39-win32.whl

Download URL unitypy-1.25.3-cp39-cp39-win32.whl
Size 433.4 kB
Tags CPython 3.9 Windows x86-32
SHA-256 checksum
How to use checksums
cb6d9c99d9d231c48613badb2605b0594dc58cc1360a0bc1fa12c932c6707ccf
BLAKE2b-256 checksum
How to use checksums
6d8ffabd91ab2f441a4000e897383a8fbc4f443a102f19bdbb1b392fdd972af8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp39-cp39-musllinux_1_2_x86_64.whl

Download URL unitypy-1.25.3-cp39-cp39-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.9 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
b4caf6d072d4bbd9ba844b5fae81e795e6d38b1a0fd8cfb9fdfc41da555c2587
BLAKE2b-256 checksum
How to use checksums
98716e74686bbb74d6be3f2bbc193e314b8f8a2ae9222875d845db23117b64c9
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp39-cp39-musllinux_1_2_i686.whl

Download URL unitypy-1.25.3-cp39-cp39-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.9 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
b1d17456dd2aa334c677c5786877d236986ca7a449a8ed1012a02ee0f24444a9
BLAKE2b-256 checksum
How to use checksums
0661518d4bf64b341e138eee4ebcb9521fdf6fae46dc6d3fca375ce2e355ae7d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL unitypy-1.25.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
65debf3d220a61c2c14c6dc9a88f41ecfa6e37ed49df737a777a0d95d9ac1a3e
BLAKE2b-256 checksum
How to use checksums
9ce9130267922b7c84e79ea015684c02d927fa3e268df19f9356bbc8dc9cf55c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl

Download URL unitypy-1.25.3-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl
Size 1.3 MB
Tags CPython 3.9 Linux glibc 2.24+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
b0c510d8969f1985db0cb4347193d556e9437c69d3919219ea52cb540afd8530
BLAKE2b-256 checksum
How to use checksums
66e3fb82553c0711778bc49487598c822f97277a7e100c18d34185bb69c5554f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp39-cp39-macosx_11_0_arm64.whl

Download URL unitypy-1.25.3-cp39-cp39-macosx_11_0_arm64.whl
Size 441.4 kB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
b654e6aef76ab32add26b3753fd3339604bab63b65def13be666ac922f2060d7
BLAKE2b-256 checksum
How to use checksums
322427711c468e4c15a6550cae1d0e41f60d7eefd4ee3d589c4354fa9bf52983
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp39-cp39-macosx_10_9_x86_64.whl

Download URL unitypy-1.25.3-cp39-cp39-macosx_10_9_x86_64.whl
Size 445.5 kB
Tags CPython 3.9 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
5a4b5debe1f2ea90dd79299d7ae6dd41991e4973fe59fd7467b8f58f3cf8f943
BLAKE2b-256 checksum
How to use checksums
e6cc9bee07d183b3b0d1af328f4081992f22d3662586381e36f50af56397749f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp38-cp38-win_amd64.whl

Download URL unitypy-1.25.3-cp38-cp38-win_amd64.whl
Size 437.8 kB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
ae4c4eb44e2f58d5b9a08f174ab75666ccdee92b86285743cc8d62fe9be61e4c
BLAKE2b-256 checksum
How to use checksums
ef3cae3e85b260e633cb279e8fe442551321b7601606bdbc1e880fa5f6f26019
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp38-cp38-win32.whl

Download URL unitypy-1.25.3-cp38-cp38-win32.whl
Size 433.4 kB
Tags CPython 3.8 Windows x86-32
SHA-256 checksum
How to use checksums
3d378696fba9ee55851e0edf34fdc412efeee7180648548bb28fa9df3b41120d
BLAKE2b-256 checksum
How to use checksums
db586ed1cbbc7305063fa7c021736ea3b5810da1b76d3fd1f7b2651d7ca187a4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp38-cp38-musllinux_1_2_x86_64.whl

Download URL unitypy-1.25.3-cp38-cp38-musllinux_1_2_x86_64.whl
Size 2.3 MB
Tags CPython 3.8 Linux musl 1.2+ x86-64
SHA-256 checksum
How to use checksums
e6b5d3d7a651fad9b9a4e5d13a8219c8b9d170ed3175d1ad3f5c86a99c7d6443
BLAKE2b-256 checksum
How to use checksums
8930981764adf2f4bcaca44a0c2b2ea9673027c0cbb0212047866c4d7281a9dd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp38-cp38-musllinux_1_2_i686.whl

Download URL unitypy-1.25.3-cp38-cp38-musllinux_1_2_i686.whl
Size 2.4 MB
Tags CPython 3.8 Linux musl 1.2+ x86-32
SHA-256 checksum
How to use checksums
3461486027b2e7a03984b05a42b70b7caea59bcc171bcd14d010973813b51a5d
BLAKE2b-256 checksum
How to use checksums
e308cdda5e5f9650dcdddae540a0af63f1865c2e2ded998098a27ebd563af9cd
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl

Download URL unitypy-1.25.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.24+ x86-64 Linux glibc 2.28+ x86-64
SHA-256 checksum
How to use checksums
0ff883e8ecd3084d9a74afd3c5fa2af578896e0698558ae80e44e2399f1ae00a
BLAKE2b-256 checksum
How to use checksums
b3b11d12216cd199c16ac31d838968c04053aa1e5254d60291da4edfb8ff639e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl

Download URL unitypy-1.25.3-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl
Size 1.3 MB
Tags CPython 3.8 Linux glibc 2.24+ x86-32 Linux glibc 2.28+ x86-32
SHA-256 checksum
How to use checksums
5b2d97ce5c86f2bc87baa582ee5d7df933189636f308087870277ff473969fe8
BLAKE2b-256 checksum
How to use checksums
69559accd418ad1af8c1cacc241e07c40fb5c6474e9f022650e4200aea900cb7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp38-cp38-macosx_11_0_arm64.whl

Download URL unitypy-1.25.3-cp38-cp38-macosx_11_0_arm64.whl
Size 441.2 kB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
eee27d676e21478e4a0454b5220f9a04c3c8d3d89ba88abdb931feb5b709e461
BLAKE2b-256 checksum
How to use checksums
73490efe39043c35a4ce0458b84294e40ca780cf0ba5341c8f4d21bc737978fb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release files / unitypy-1.25.3-cp38-cp38-macosx_10_9_x86_64.whl

Download URL unitypy-1.25.3-cp38-cp38-macosx_10_9_x86_64.whl
Size 445.3 kB
Tags CPython 3.8 macOS 10.9+ x86-64
SHA-256 checksum
How to use checksums
7f8f88cac88d05543dd6bf12eec08980ac7a5b9e75d210255b8133eccfb29e67
BLAKE2b-256 checksum
How to use checksums
d2ec223156345721e743a381d1c1a074f33eec2e11138f1d29a2e92a6ae172b4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
Yes
Uploaded via twine/7.0.0 CPython/3.13.14

Provenance

Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.

PyPI Publish Attestation

PyPI verified that this artifact, at this checksum, originated from the publisher listed below.

Signed by GitHub Actions, verified by PyPI on Aug 1, 2026.

Transparency log

Release history Release notifications | RSS feed

This release

1.25.3 This release

72 release files

1.7.43

2 release files

1.5.3

5 release files

1.5.2

5 release files

1.5.1

5 release files

1.4.6

5 release files

1.4.5

5 release files

1.4.4

5 release files

1.4.2

5 release files

1.4.1

5 release files

1.4.0

5 release files

1.3.0

5 release files

1.2.7

5 release files

1.2.6.9

1 release file

1.2.6.7

1 release file

1.2.6.6

1 release file

1.2.6.5

1 release file

1.2.6.3

1 release file

1.2.6.0

1 release file

1.2.5.0

1 release file

1.2.4.8

1 release file

1.2.4.7

1 release file

1.2.4.6

1 release file

1.2.4.5

1 release file

1.2.4

2 release files

1.2.3

1 release file

1.2.2.3

1 release file

1.2.2.2

1 release file

1.2.1.0

1 release file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page