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:

Download files

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

Source Distribution

unitypy-1.25.3.tar.gz (386.9 kB view details)

Uploaded Source

Built Distributions

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

unitypy-1.25.3-cp314-cp314t-win_arm64.whl (441.8 kB view details)

Uploaded CPython 3.14tWindows ARM64

unitypy-1.25.3-cp314-cp314t-win_amd64.whl (439.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

unitypy-1.25.3-cp314-cp314t-win32.whl (435.8 kB view details)

Uploaded CPython 3.14tWindows x86

unitypy-1.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

unitypy-1.25.3-cp314-cp314t-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

unitypy-1.25.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

unitypy-1.25.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl (1.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

unitypy-1.25.3-cp314-cp314t-macosx_11_0_arm64.whl (443.5 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

unitypy-1.25.3-cp314-cp314t-macosx_10_15_x86_64.whl (447.4 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

unitypy-1.25.3-cp314-cp314-win_arm64.whl (441.0 kB view details)

Uploaded CPython 3.14Windows ARM64

unitypy-1.25.3-cp314-cp314-win_amd64.whl (439.0 kB view details)

Uploaded CPython 3.14Windows x86-64

unitypy-1.25.3-cp314-cp314-win32.whl (435.2 kB view details)

Uploaded CPython 3.14Windows x86

unitypy-1.25.3-cp314-cp314-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unitypy-1.25.3-cp314-cp314-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

unitypy-1.25.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

unitypy-1.25.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl (1.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

unitypy-1.25.3-cp314-cp314-macosx_11_0_arm64.whl (442.3 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unitypy-1.25.3-cp314-cp314-macosx_10_15_x86_64.whl (446.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unitypy-1.25.3-cp313-cp313-win_arm64.whl (439.3 kB view details)

Uploaded CPython 3.13Windows ARM64

unitypy-1.25.3-cp313-cp313-win_amd64.whl (437.7 kB view details)

Uploaded CPython 3.13Windows x86-64

unitypy-1.25.3-cp313-cp313-win32.whl (433.7 kB view details)

Uploaded CPython 3.13Windows x86

unitypy-1.25.3-cp313-cp313-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unitypy-1.25.3-cp313-cp313-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

unitypy-1.25.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

unitypy-1.25.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl (1.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

unitypy-1.25.3-cp313-cp313-macosx_11_0_arm64.whl (442.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unitypy-1.25.3-cp313-cp313-macosx_10_13_x86_64.whl (445.8 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unitypy-1.25.3-cp312-cp312-win_arm64.whl (439.3 kB view details)

Uploaded CPython 3.12Windows ARM64

unitypy-1.25.3-cp312-cp312-win_amd64.whl (437.7 kB view details)

Uploaded CPython 3.12Windows x86-64

unitypy-1.25.3-cp312-cp312-win32.whl (433.7 kB view details)

Uploaded CPython 3.12Windows x86

unitypy-1.25.3-cp312-cp312-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unitypy-1.25.3-cp312-cp312-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

unitypy-1.25.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

unitypy-1.25.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl (1.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

unitypy-1.25.3-cp312-cp312-macosx_11_0_arm64.whl (442.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unitypy-1.25.3-cp312-cp312-macosx_10_13_x86_64.whl (445.8 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unitypy-1.25.3-cp311-cp311-win_arm64.whl (439.4 kB view details)

Uploaded CPython 3.11Windows ARM64

unitypy-1.25.3-cp311-cp311-win_amd64.whl (437.9 kB view details)

Uploaded CPython 3.11Windows x86-64

unitypy-1.25.3-cp311-cp311-win32.whl (433.5 kB view details)

Uploaded CPython 3.11Windows x86

unitypy-1.25.3-cp311-cp311-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unitypy-1.25.3-cp311-cp311-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

unitypy-1.25.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

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

unitypy-1.25.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

unitypy-1.25.3-cp311-cp311-macosx_11_0_arm64.whl (441.5 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unitypy-1.25.3-cp311-cp311-macosx_10_9_x86_64.whl (445.6 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unitypy-1.25.3-cp310-cp310-win_arm64.whl (439.4 kB view details)

Uploaded CPython 3.10Windows ARM64

unitypy-1.25.3-cp310-cp310-win_amd64.whl (437.9 kB view details)

Uploaded CPython 3.10Windows x86-64

unitypy-1.25.3-cp310-cp310-win32.whl (433.5 kB view details)

Uploaded CPython 3.10Windows x86

unitypy-1.25.3-cp310-cp310-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unitypy-1.25.3-cp310-cp310-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

unitypy-1.25.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

unitypy-1.25.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

unitypy-1.25.3-cp310-cp310-macosx_11_0_arm64.whl (441.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unitypy-1.25.3-cp310-cp310-macosx_10_9_x86_64.whl (445.5 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unitypy-1.25.3-cp39-cp39-win_arm64.whl (439.4 kB view details)

Uploaded CPython 3.9Windows ARM64

unitypy-1.25.3-cp39-cp39-win_amd64.whl (437.9 kB view details)

Uploaded CPython 3.9Windows x86-64

unitypy-1.25.3-cp39-cp39-win32.whl (433.4 kB view details)

Uploaded CPython 3.9Windows x86

unitypy-1.25.3-cp39-cp39-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

unitypy-1.25.3-cp39-cp39-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

unitypy-1.25.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

unitypy-1.25.3-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

unitypy-1.25.3-cp39-cp39-macosx_11_0_arm64.whl (441.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unitypy-1.25.3-cp39-cp39-macosx_10_9_x86_64.whl (445.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unitypy-1.25.3-cp38-cp38-win_amd64.whl (437.8 kB view details)

Uploaded CPython 3.8Windows x86-64

unitypy-1.25.3-cp38-cp38-win32.whl (433.4 kB view details)

Uploaded CPython 3.8Windows x86

unitypy-1.25.3-cp38-cp38-musllinux_1_2_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

unitypy-1.25.3-cp38-cp38-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

unitypy-1.25.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

unitypy-1.25.3-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ i686manylinux: glibc 2.28+ i686

unitypy-1.25.3-cp38-cp38-macosx_11_0_arm64.whl (441.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

unitypy-1.25.3-cp38-cp38-macosx_10_9_x86_64.whl (445.3 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file unitypy-1.25.3.tar.gz.

File metadata

  • Download URL: unitypy-1.25.3.tar.gz
  • Upload date:
  • Size: 386.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3.tar.gz
Algorithm Hash digest
SHA256 41b3e830a04469dfabeadc097f59ba7008e289864604728e1ad623c22d7c30dc
MD5 40ae9f06dfc4967c00777ede82e69602
BLAKE2b-256 5a6c6b5ff91d31ba5f8f12cad6f4f5ffa0f0aa27f35f20b9e2a5d3f2c13a8825

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3.tar.gz:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 441.8 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 c418fa9c947b041deea44cddb1aac5f91722dbeab46462fb8d762a18ddb35678
MD5 132a9bcf524a50a1012e6a87d35e18b0
BLAKE2b-256 2a652fdb9cb8226680f49c13ac900bb52aa8447c48d48bf769c220de7e40c221

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314t-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 439.7 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 69ff672342be89a1fc090eed1ab98a80bc590e18c328d8be654501f76fcf66d1
MD5 a5a621eccc76851d6768563b574deb99
BLAKE2b-256 d82fa97f7e00263fb1196a0de7cb7d904b22601fcb88800379d5a967c153d349

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314t-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314t-win32.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 435.8 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 e7c532b65dedf48bf0a8bee8d78f68c5fa5d6654bdcc2e108eb210ffb2b5088d
MD5 474ddd7b4a2164becda41e9c41ae4dd9
BLAKE2b-256 6de3c1cbb4bf627095892c327b33c4e7637e7bd98fe46f8eb466e6189283d27f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314t-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 22a0b25a5e128fb92dee888b93fef682b25469d30194cc0d1b0b94d62493382f
MD5 dd61b6e9756cd7983b334e42ef09ca70
BLAKE2b-256 651e1a32944e0f93425feed7b56ea82c4b7ca08d8f071f322b6314a39ae667e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2d786fe3fb95c51e100c63131692b7b7e26ca7b99bf9ac8e5d2fcba16bf65526
MD5 a04a41b27ac95667974ea6c4a7b90f57
BLAKE2b-256 d394d55d2936049d8c9c83633724a4441ae5d4d8270e294fb4b76d66b3e684dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 75a03f163360cc051ac77c2601629b31dd1bfaee469dea2402e52c822384a673
MD5 27dbf9209d8c3178631a869c7eb3ff0d
BLAKE2b-256 d27ef7e0bf25e8b85fb61e9b69deb6b71c55b7ddc407c1604c326bd71b4e4830

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0e3576ea941851d267a632c43af28b60094c678981e989f8a6c7c8ffdc813ab6
MD5 cddc3a14afc31176786dc3738a05e82d
BLAKE2b-256 2c45a83f8a1d3fc760a950ca51954724f2e86534ac8a5bbcd920eb4ecc82c3c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74a811b763b19bb267a33405c18f267b32c82e35da67012e562fa7da58e37a0d
MD5 bcd361b545e3785fbced289b67b35cca
BLAKE2b-256 8c7940f46b8c2458b3d86a7bb69851554149fac1dd7ff0fb7641c05b846c2755

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5d55ac4975b25d513717f56f33868e30eda3ebe8e377662961a522cf8e775bf7
MD5 ae4d2eb6cf7b8409bceeb4b2ec856246
BLAKE2b-256 fdfc258683198933fc8df5e0c7aca47492c5bbea9882cd9e9cb10f7371553c8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 441.0 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 89babcf6284b9b0aa6a2ed1222a74fa11d93fb8adcddd35e174c886c180adfac
MD5 d9a9bc4834754f755b7602f244fb353f
BLAKE2b-256 1007f4dd8809daf0cb74e7b11a5f223b97972ea8fe273f746cb9a40405e81388

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 439.0 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 b0b921cc74550d62736dabcd015b7ac9abfd3e273006d700bfb80e25561e74d0
MD5 be5dbc547a60c7a28cdc31cfd3fa5dc6
BLAKE2b-256 72db1021064805ba2950cbd377d5e2915ccdef769c24043c238e6d33753d38e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp314-cp314-win32.whl
  • Upload date:
  • Size: 435.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 83b8a9e878119aaf33080cfb5912e72fc3a89a028e463ac6cc6dc204359c0534
MD5 944cd2a95b48d39446f5084891cdd274
BLAKE2b-256 d4ac151ae25c31713ce4f0373131673d2e1c223c6800a34d6bc67133aba28c9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6c5c54df01ad2980fccc21f59033fd1c19f0b2aef2adcdfe2e1e75d1e69a8a3
MD5 796859cfb1ff5c6479944006c8e8434c
BLAKE2b-256 d8824231d952c0dbd41def7cdc378165afedcbb09c50f09bb92c418c55b1b602

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6954fe07f7babc7ea5da4380757aa2e4068b9512f2004386bde5285e8ede5357
MD5 cabc4bc7ff606a7c5916e0559a9bac72
BLAKE2b-256 91734aad1015cab0b5888affbfcaefec5845e12f927c51729721dfdb1fa7b113

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5daf0c8a979e166f8189038d73c57fb5aa16ea1097da8f4cbdd7180468a0c337
MD5 1898a138d720476c632db695677122c6
BLAKE2b-256 41b05fb5fa6de99e5264339de770a4b9d5c870ac363fd49af2d208e8ad8b858b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 e325e34e24cd1841e6490602a6c3e664419effaaaea02d04f65b25956bb5c057
MD5 60ec8ccb37a0aa129b04fdd5cb55599b
BLAKE2b-256 89dc3c9d666abf331ff7a7b1cf1256371aa7083d7fcab4ec92ab415de94712f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 488ca17dd7723c0572c9fdd8790ca6a7dedde0fc8ca540ea40a87d1b4e4a7ce3
MD5 abc77d664106266a01e4a2ff7b4876fd
BLAKE2b-256 93616825baf30540a42e153c329e6113f94f045086c3e5a08d404d2366b8cb64

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f1ed96902156d52b8793effa1e127577f7fc04ca8fffd108db7b8b514bb7e452
MD5 a93daae48ff731bfec80465fa05cf53d
BLAKE2b-256 dd1e2a269c45d44d01deef3706d4227d53a73a1998359ddb1eee4fbbb016c5e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 439.3 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 938d50adfcf0b71eff51f5116f6ab49a09410d62112da30e0e06499936f47e21
MD5 0fb1311560fea1471ef58cb7e2590495
BLAKE2b-256 ac874076c6907686c09807f6886fbf4ea0a50bf264ffc16f9422f250aeed281f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp313-cp313-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 437.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 255b7284e2f61161ceb0b361f742ac516236e0785fdb11c7d6911e691f1c0782
MD5 985d554886041f667c4d86e21bc7dd5d
BLAKE2b-256 9a433ef6c84e19e77c44b4d23d4b0d19c1b08624d706aa9719976b121930bccf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp313-cp313-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 433.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7b920ec03d1f9136bc0f68b500fe90f9d2d434adaa91aacd60fcafc15ea97893
MD5 ad0c11b8c9e50f5498f313a9b808999e
BLAKE2b-256 8f39f8b18da993970686ee480b14f76c1af7ae8b2a331078e8c8e0f2709c0a0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp313-cp313-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1ffc2d7990e7f7aa12be741392edca9d2e4d175f9b5dbbf0bdde58e16fef0605
MD5 8f8cbbd94b8a4196904520ce6cbc45a5
BLAKE2b-256 68f167084b17d278c62b8001cbd5a424f1a5a3cdb00a8c2aa532d3af51178599

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 042540f467923132152ae64093bee3c169d6c63127d20c0a8a96664da0da284c
MD5 2481aaf29adf103b8b5c78d4035ae0c0
BLAKE2b-256 9254c0f9d31f9bd21ae5fd55715bfd283404fbc975b4d25213ff721c5a5e859e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f63526a953317355bc9487e00431b2e143ee3b5a6468e12b6ea10f786ec77207
MD5 79c8216e0ee462607ddef1f0ff79512d
BLAKE2b-256 4a3eb83eb8404c097669ee603163b6cda8b48588c5fa69da9932b2d89783bae7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 632d5f2817b117688c0e0746d4741826d48398f1390315c5352ff0d3f547c144
MD5 944587d10e53aea0a34c4949c883f9be
BLAKE2b-256 4819b50df69270a8bf399608b977719659f4e11017befddd93453ff54e1ae976

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9685f3cfe53d4ba13df761b51d3e519ab9447eedda8c44d4613f0941a16be234
MD5 d433025403cbc82a13764c61da3f7603
BLAKE2b-256 f02ce94731647b1b1f9111a79b0f67ea36b7287c6bf37eca8d8e9e54b8e63897

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 3648e2488da974ab6fd17e4a7a7dadb550c2635566a7d577fa28f29f6eeea40e
MD5 afc44bd509d7626367c9aaa81ccadd17
BLAKE2b-256 20419ad430e29b3e1de7c31885ecf33eac6c58ea5c460eb8f99f1f79c0ae585a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 439.3 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 47c2e5fb38a71af91a03a3e930b2208e8445566f2d70180daa07297fdb610521
MD5 c586449bf427959edff3b54fc373b8c7
BLAKE2b-256 6f5013420d02e5aec2e1c2680be5a19cad95f9a2add047d7012ce6ca38eef722

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp312-cp312-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 437.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e48098837c067833083e7be0fc96f7af39ac68a589e328b4ead656e6350d9ce1
MD5 615d7100a3dbbe105a990b4e5f62c258
BLAKE2b-256 70b2d35920055001e7603a36bab5e25ff58bd2a31cab9b05ec626d780f22d16f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp312-cp312-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 433.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 93b47673a00e4825ed3fbce53d4d7e03ba4a024fcec788dbccba4e8329441838
MD5 56f1cc3ceaf9b913f64d331222420330
BLAKE2b-256 53c520fcba89b43b9777749a64f8e9c10ebd19ad0c2a8bc353313f30bb849388

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp312-cp312-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c967111dcb97d639d1e10a62fcf487552cfde1fd46f89f66a2a272027a086e86
MD5 fdf62e6f654316f1510c75735ea2c7ce
BLAKE2b-256 67c3f146a959efe63e91c288ebfae938fe8a2f4b6760d527cd69a6136d080115

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b01526f4ccbecdc6312f1314ede8c2150734d1f1ea60f1991355cc4b29dc0270
MD5 8612479c3d3734ddbb87fef0f678eb16
BLAKE2b-256 0c0a3c6d6306c5becff1655b37a2ea1eeafa39a43ac7211d1845186e77f877ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 96d68dc0f0aeac5758f97296cb2681b300f17792b8f26bade569925d55a8581c
MD5 83963b2eff59ae4d3ab1e0a9b486aa6d
BLAKE2b-256 835781610a99d62dcc05c1b1e9bbe62444384ea31f3c1b7b699e249d48f48258

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9e1f863d5abca6b7af618e701b34d9a9c06ae15e8ee83a30343e8ae6c2badb7e
MD5 26f7bf4beaf244e97b23436509b90744
BLAKE2b-256 2e7e68ba941165271b8718ae56b4a3c644fae6bc7ad056f4ec62d5e64efc4254

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83a6c70f335d97827707dc7728fcc5c06a8436bd69bd96e8a96dcfae50a4d27b
MD5 e79cfa305e17ec115ead50793c96f1a2
BLAKE2b-256 5259c490d7bb2e3489154de2428b2a4a17daa04304dcf65e68dc7ffad247363b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e82bf30ee40d598771d691e69019078256fbdb2d7db09d6d17689fdce81b75cb
MD5 482b8456a6e47e7690e183e85a0b2243
BLAKE2b-256 5eaa848f274b7dd88a1e6980606a1b3319c2309b1ab60174000d2df5e92b2728

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 439.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 ae245f1e1da46132798b591d875d6aa82810d45c69ee2f9455837117762e5fef
MD5 073f31e4958ba6b09ceb596c2efa7b00
BLAKE2b-256 a96f98be615c42411e1041cb97f9b079575cecaa6f140fe9e27902839a311854

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp311-cp311-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 437.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7de387cc8d251b1df53adc9263613b63b5539d627957d9f14b4836943e889b17
MD5 dc83db73ff800ac0b8553afec5843af5
BLAKE2b-256 f5506ff4d105030e640443f4b9ae6438accfa55b2860d112126264e017aff715

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp311-cp311-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 433.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 23db994d4e79efe7545676fd129b5b991481484f14421c051ec5b64f8f27d150
MD5 f7d9eaae0a330bd18207d45daf4ede69
BLAKE2b-256 3a75b2e38a5d74cd69058d946dd45b8a2d59de019e3ffc270402a39c7b71fc19

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp311-cp311-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c9641a0377975cff15209ef0fad3d07bc6a61e5c9ec9bf34274ca48494bdd76
MD5 e80c63214b2ad2c2870855140882cd0e
BLAKE2b-256 0e3f7c9f9faffb173ab33de28b52c1bfeda7bd8c28297e2ca388446ccdd4466a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 329c43cc37fa9e4fccb6f28b40475bed8946ab78a4649fed35b412ee32988b22
MD5 6026f870854fd53074e7607e2d4fccc8
BLAKE2b-256 3dbf2c340544c1f1dc3016127d56207babf52e963f47728c465159c52bbbacaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 64d3eda29d14a56d7ee9c0d5e7f842a63fdfba6c392211791608a8a1690a37c6
MD5 026bf7cffc2bb37c634cb66f4bfdbc36
BLAKE2b-256 ca9125d92ac3602548c25fc5eebe0ad51696fdf2a0de675617306fa5db272476

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 310463b65df7e94d6424b32224f7b6bdaa8effbb6fd18fca4ed928fe1807c6da
MD5 d5ed0fd167b068353f0048d5a5b119b2
BLAKE2b-256 0b84fe9b0f6956c2b9d0c48d68649812789f8e610b1a253cad7f475bf32f2739

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab01876c4061d96f7025223daf190c1e48e50d67cbe2c3b322c6493fac38ddde
MD5 53242252f4d1b5da1bf46169eabcc832
BLAKE2b-256 abf2977d2a4aafcfb62a88abbb73956cb15645ebe5934c016ca8a6b474581aae

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2e83b9a275028e093fc3ef9f272be54f9a354cd7a03dd0ed397a21b946f857ee
MD5 633762e7595041d57ffc5cb74ced9c1d
BLAKE2b-256 078213e10dac21704228425a2746aa5194809a98f28fc1261ab4fc3b717bf6f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 439.4 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 f35445da61862dd466bb329f16031ceb088a77ebf0f7b2768e4d5d42111bc42b
MD5 052cd3a22e762f51165680077f69d5d0
BLAKE2b-256 67f10686082f33c223c1dc6dbb95f0c4f0f2d15455c81cf5a484decb7f5abdb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp310-cp310-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 437.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 952d89db80ec4132e6d947e6efa800f92314ae7e6e9be5a3622d6a548b193900
MD5 0c230cc153b0f3c0ed58f82d8f74ad00
BLAKE2b-256 b36191c2609dddbab8b82e0739b0df0f887f08a38f2f0470be9c5146bcbb4db7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp310-cp310-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 433.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1570a33696afe38205c27396b42e1a0828aaede2f954e324f0b33aa66498a1c4
MD5 6cc46c93e75d62403a48d83e941a466f
BLAKE2b-256 c1913a81c7f57042d07762648ae5bdc08a04e18126a44a99f5e0f66ab4981607

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp310-cp310-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72f10a7a9b5a7eb754d95133d10ff4d5bddc02c17a10d090797d92171e1541a5
MD5 5c0647cd8124974a09e33e6820ad3c2d
BLAKE2b-256 865a25d4da67c6eda538852daab5e941440998a56b853d0edc887fb84756a785

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 760ffdab73e7168381eab24ba6ad796eefd492d74eb0afd17e064992e6be731d
MD5 0dbcfd5e1b026910545f03d4f26d763b
BLAKE2b-256 e2fa71b49f9fe67777372142791f51f7d90d96f7669ecc68f2d11b2f951a2226

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8cd7ec71459b2ff6dc6619185dac02d7a66ce9670a1f2c5af2f2cca8edcf0d5d
MD5 fb08c39d96bf28a1c079ae799686e130
BLAKE2b-256 163d7381aee422edd0017636f1b5155c22cc8234461a9831ec485b54656e7592

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 07531a2e56ef4cdf78db58743e0c121132246d1ccd688cc562534797d9e19edb
MD5 fcbd4309a0b8ede5ecefcb0b2d37f4f8
BLAKE2b-256 6330c22b059257992b3ba609b7dfbc2f15698677bbe5437d9ef623fb9d7f1465

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e2204050c77fcc9bd2add297651137f8fd1481fc0d1eaa2f36accf7156df3e5
MD5 141576b7d71fcc7de302fe9eeef3006f
BLAKE2b-256 ac203c2879b4e76a43cf7260f5510637a32770af1aed0d16d7cb1c003ae77696

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9dd05bcd9a1fc7942affdad9e37e2af1389bed7df63cd4410cf63b95bbd383de
MD5 6ce6ede70bc3b815215f103df0d3f449
BLAKE2b-256 c00cd82681ddbb8ee84e07811d658e77cf191fb3e9a2873344b9c01dee1885ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 439.4 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 8135edecc4111e87206761c399c1db5e35304aaef5c19b1effd8508243a55a5b
MD5 1432f98dc08adaa2eb14f8242dcbc888
BLAKE2b-256 d7ec5553f090f92c84a91ab4afcf498d2429bd05a9e88390f5cbfb26b463d1a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp39-cp39-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 437.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a5029d3dec03ec82b42c57d28e1f1466196109be1c9a2859e5f0280d3e9776cd
MD5 0f6b6380aa6b29c2344d674f545aa7a3
BLAKE2b-256 514c347285a1f5c54d6a21eeefd0c4d9ed0b63c2ec20863bdcda7daeb78a731b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp39-cp39-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp39-cp39-win32.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 433.4 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cb6d9c99d9d231c48613badb2605b0594dc58cc1360a0bc1fa12c932c6707ccf
MD5 e7fbe5e12c533ac4dac218390361c24b
BLAKE2b-256 6d8ffabd91ab2f441a4000e897383a8fbc4f443a102f19bdbb1b392fdd972af8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp39-cp39-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4caf6d072d4bbd9ba844b5fae81e795e6d38b1a0fd8cfb9fdfc41da555c2587
MD5 ffc55dea06744a6c0d788b01cffc6432
BLAKE2b-256 98716e74686bbb74d6be3f2bbc193e314b8f8a2ae9222875d845db23117b64c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b1d17456dd2aa334c677c5786877d236986ca7a449a8ed1012a02ee0f24444a9
MD5 94a06d5b1d06d305b96fc0fb5b58b330
BLAKE2b-256 0661518d4bf64b341e138eee4ebcb9521fdf6fae46dc6d3fca375ce2e355ae7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65debf3d220a61c2c14c6dc9a88f41ecfa6e37ed49df737a777a0d95d9ac1a3e
MD5 f5125ca528f58336f9f18d9f7708e68f
BLAKE2b-256 9ce9130267922b7c84e79ea015684c02d927fa3e268df19f9356bbc8dc9cf55c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 b0c510d8969f1985db0cb4347193d556e9437c69d3919219ea52cb540afd8530
MD5 0708961a964cb430999d9da32f407960
BLAKE2b-256 66e3fb82553c0711778bc49487598c822f97277a7e100c18d34185bb69c5554f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b654e6aef76ab32add26b3753fd3339604bab63b65def13be666ac922f2060d7
MD5 f60db5deef1357dbe0d883ecfbaf0a4b
BLAKE2b-256 322427711c468e4c15a6550cae1d0e41f60d7eefd4ee3d589c4354fa9bf52983

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5a4b5debe1f2ea90dd79299d7ae6dd41991e4973fe59fd7467b8f58f3cf8f943
MD5 af8df3fe15d14f0b4942d7c34fe382b3
BLAKE2b-256 e6cc9bee07d183b3b0d1af328f4081992f22d3662586381e36f50af56397749f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 437.8 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ae4c4eb44e2f58d5b9a08f174ab75666ccdee92b86285743cc8d62fe9be61e4c
MD5 ca94cf87df86dfd7308d5ed7ef652081
BLAKE2b-256 ef3cae3e85b260e633cb279e8fe442551321b7601606bdbc1e880fa5f6f26019

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp38-cp38-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp38-cp38-win32.whl.

File metadata

  • Download URL: unitypy-1.25.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 433.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unitypy-1.25.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3d378696fba9ee55851e0edf34fdc412efeee7180648548bb28fa9df3b41120d
MD5 8070a8fb61886a483900f0c2e33fea77
BLAKE2b-256 db586ed1cbbc7305063fa7c021736ea3b5810da1b76d3fd1f7b2651d7ca187a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp38-cp38-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e6b5d3d7a651fad9b9a4e5d13a8219c8b9d170ed3175d1ad3f5c86a99c7d6443
MD5 17dbcbf2c4e1893ce4b69fb8a1948331
BLAKE2b-256 8930981764adf2f4bcaca44a0c2b2ea9673027c0cbb0212047866c4d7281a9dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3461486027b2e7a03984b05a42b70b7caea59bcc171bcd14d010973813b51a5d
MD5 12420b8d80796b6710a476a4d78b0b1f
BLAKE2b-256 e308cdda5e5f9650dcdddae540a0af63f1865c2e2ded998098a27ebd563af9cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ff883e8ecd3084d9a74afd3c5fa2af578896e0698558ae80e44e2399f1ae00a
MD5 460d0c58ed59d6e3387bd4e4273637b7
BLAKE2b-256 b3b11d12216cd199c16ac31d838968c04053aa1e5254d60291da4edfb8ff639e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5b2d97ce5c86f2bc87baa582ee5d7df933189636f308087870277ff473969fe8
MD5 a78fe4824e9c128f8242aaad29da6e6e
BLAKE2b-256 69559accd418ad1af8c1cacc241e07c40fb5c6474e9f022650e4200aea900cb7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eee27d676e21478e4a0454b5220f9a04c3c8d3d89ba88abdb931feb5b709e461
MD5 0a3c21ffa5fd37cbefa21f540a89c326
BLAKE2b-256 73490efe39043c35a4ce0458b84294e40ca780cf0ba5341c8f4d21bc737978fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file unitypy-1.25.3-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7f8f88cac88d05543dd6bf12eec08980ac7a5b9e75d210255b8133eccfb29e67
MD5 e115e0063beb0e473e83497358929ef7
BLAKE2b-256 d2ec223156345721e743a381d1c1a074f33eec2e11138f1d29a2e92a6ae172b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.3-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page