Skip to main content

A Unity extraction and patching package

Project description

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:

Project details


Download files

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

Source Distribution

unitypy-1.25.2.tar.gz (367.5 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.2-cp314-cp314t-win_arm64.whl (422.0 kB view details)

Uploaded CPython 3.14tWindows ARM64

unitypy-1.25.2-cp314-cp314t-win_amd64.whl (420.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

unitypy-1.25.2-cp314-cp314t-win32.whl (416.0 kB view details)

Uploaded CPython 3.14tWindows x86

unitypy-1.25.2-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.2-cp314-cp314t-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

unitypy-1.25.2-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.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl (423.9 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

unitypy-1.25.2-cp314-cp314t-macosx_10_15_x86_64.whl (427.6 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

unitypy-1.25.2-cp314-cp314-win_arm64.whl (421.1 kB view details)

Uploaded CPython 3.14Windows ARM64

unitypy-1.25.2-cp314-cp314-win_amd64.whl (419.4 kB view details)

Uploaded CPython 3.14Windows x86-64

unitypy-1.25.2-cp314-cp314-win32.whl (415.4 kB view details)

Uploaded CPython 3.14Windows x86

unitypy-1.25.2-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.2-cp314-cp314-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

unitypy-1.25.2-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.2-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.2-cp314-cp314-macosx_11_0_arm64.whl (422.6 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unitypy-1.25.2-cp314-cp314-macosx_10_15_x86_64.whl (426.2 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

unitypy-1.25.2-cp313-cp313-win_arm64.whl (419.4 kB view details)

Uploaded CPython 3.13Windows ARM64

unitypy-1.25.2-cp313-cp313-win_amd64.whl (418.0 kB view details)

Uploaded CPython 3.13Windows x86-64

unitypy-1.25.2-cp313-cp313-win32.whl (414.0 kB view details)

Uploaded CPython 3.13Windows x86

unitypy-1.25.2-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.2-cp313-cp313-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

unitypy-1.25.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (422.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unitypy-1.25.2-cp313-cp313-macosx_10_13_x86_64.whl (426.0 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

unitypy-1.25.2-cp312-cp312-win_arm64.whl (419.4 kB view details)

Uploaded CPython 3.12Windows ARM64

unitypy-1.25.2-cp312-cp312-win_amd64.whl (418.0 kB view details)

Uploaded CPython 3.12Windows x86-64

unitypy-1.25.2-cp312-cp312-win32.whl (414.0 kB view details)

Uploaded CPython 3.12Windows x86

unitypy-1.25.2-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.2-cp312-cp312-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

unitypy-1.25.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (422.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unitypy-1.25.2-cp312-cp312-macosx_10_13_x86_64.whl (426.0 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

unitypy-1.25.2-cp311-cp311-win_arm64.whl (419.4 kB view details)

Uploaded CPython 3.11Windows ARM64

unitypy-1.25.2-cp311-cp311-win_amd64.whl (418.2 kB view details)

Uploaded CPython 3.11Windows x86-64

unitypy-1.25.2-cp311-cp311-win32.whl (413.8 kB view details)

Uploaded CPython 3.11Windows x86

unitypy-1.25.2-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.2-cp311-cp311-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

unitypy-1.25.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (421.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unitypy-1.25.2-cp311-cp311-macosx_10_9_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

unitypy-1.25.2-cp310-cp310-win_arm64.whl (419.4 kB view details)

Uploaded CPython 3.10Windows ARM64

unitypy-1.25.2-cp310-cp310-win_amd64.whl (418.2 kB view details)

Uploaded CPython 3.10Windows x86-64

unitypy-1.25.2-cp310-cp310-win32.whl (413.8 kB view details)

Uploaded CPython 3.10Windows x86

unitypy-1.25.2-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.2-cp310-cp310-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

unitypy-1.25.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (421.8 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

unitypy-1.25.2-cp310-cp310-macosx_10_9_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

unitypy-1.25.2-cp39-cp39-win_arm64.whl (419.5 kB view details)

Uploaded CPython 3.9Windows ARM64

unitypy-1.25.2-cp39-cp39-win_amd64.whl (418.2 kB view details)

Uploaded CPython 3.9Windows x86-64

unitypy-1.25.2-cp39-cp39-win32.whl (413.7 kB view details)

Uploaded CPython 3.9Windows x86

unitypy-1.25.2-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.2-cp39-cp39-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

unitypy-1.25.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (421.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

unitypy-1.25.2-cp39-cp39-macosx_10_9_x86_64.whl (425.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

unitypy-1.25.2-cp38-cp38-win_amd64.whl (418.1 kB view details)

Uploaded CPython 3.8Windows x86-64

unitypy-1.25.2-cp38-cp38-win32.whl (413.7 kB view details)

Uploaded CPython 3.8Windows x86

unitypy-1.25.2-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.2-cp38-cp38-musllinux_1_2_i686.whl (2.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

unitypy-1.25.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (421.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

unitypy-1.25.2-cp38-cp38-macosx_10_9_x86_64.whl (425.5 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: unitypy-1.25.2.tar.gz
  • Upload date:
  • Size: 367.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2.tar.gz
Algorithm Hash digest
SHA256 4af243f9560f379023808603fb0dc3ac69f34f44a96ff719f869d9af2bcf5e03
MD5 e92823f3dff5766f342b3e5f1683381c
BLAKE2b-256 78ad2d5edb2e84f71846806e9680fa4b10e7d5ccb3fde334c3261b19c2c14666

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2.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.2-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 422.0 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 f6eab73b852fe75873f6cca6e4a9c748a9b8f41dd51e728dbb277790cff9a461
MD5 5f8401c64808b90ab61720adef6c2c3a
BLAKE2b-256 ea9c5e56e0a18adff5997063913e1ebc907b8490e6d943954cc48fc571f16be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for unitypy-1.25.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 7a2b60c3e6534992fb1857559a7264c7d464e0a6ef6b37bda3ea420f86464f1f
MD5 e09f5a5d0efc054bd1c4d3864b1e8670
BLAKE2b-256 198ea1c3710c86f0cc02158804ee5a099a289a76ca4024613768a00f7f5f4c55

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314t-win32.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 416.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 458b5c265bb0c4720f171167db73ffec799a7452adffbfeb2207cee49f6d6472
MD5 aca0547af3f5cb411b9139018a8b52c5
BLAKE2b-256 8868a337bbf3e41110723f485880c42d5980718951e67f78b20cab2ab3a1c99d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8745e3feb6a42d9729a70f9eb30495fa2365e7e0d965179a46f2cfb144357ba6
MD5 10c862ea7fb03559f7ff67b972eca2e9
BLAKE2b-256 98d4f05e2e476161d467cd96ab7e8a2c2bf6a47ffe66e1375f3f800c00767810

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9e55779e55298ed72de31092ad3967a9f7e58b82904f3c6c83db24064b2252e5
MD5 77cb161660ac0991cc07cfaeeb7df384
BLAKE2b-256 e1b7958b8bc7c44bc50b995156c949b23c83dd3347c4bd0f9b5ac0cc77bcbfd0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2dacea9d22d952c15549fe64a322d27238ea999c53d2f345e7ca9e878835b9f2
MD5 82ff7dd65a5a1428717324c182905211
BLAKE2b-256 f2f1316157228fae4131cb48ee35b0f070ed30b3314b2aac83df6d9f9a85c0ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314t-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 8629557acf576342fb6ae32c9bb94985cbd17c77eb6d9f39a558d56fa2ae6231
MD5 677806c2a4466301b6a8569c5347be78
BLAKE2b-256 f8000b807b366d83d55d6d9081529d32162956f945c31a5f3cb7feb37ca2aa24

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a234f77a8d2756dcd00c8c287bb73632bdbfb88e703f1f11af455d94d5200fd7
MD5 ed329aa85c02c2763f4f98d95644d887
BLAKE2b-256 383053d8902639eaec4885cb704474db1b8cdccf11cf6b0382b46a21a99c9fe2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 76acf371dc04acc28887ca83e715cab634e0305e46b72374d75f2329605841bc
MD5 4073e5b0f9add10c8cc2a4972ca94a63
BLAKE2b-256 39c202375598672d020e81382d2a91a8aba110e392720034569f8d3b8f6df3fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 421.1 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2229b14850599668e7f1ed446c4bc875b0aae9b269b12d55ca82afd0b10c988d
MD5 566b378496f3d533c912ac8bc30248ad
BLAKE2b-256 2d5873c7b5bdf3e699321f3d70a0a901c4e28ceffdfbedf297f79b6698eafca4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 419.4 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 29e00f0cbce254adcceda7f9d4b7151d2564426a7abb6b73e6de24f911ad938f
MD5 fd7f94cbcd0fc146c8909cf3108af824
BLAKE2b-256 4b47f2d5c211766806c935f0e77a36b56142d3babf9e6a7028dc0d7b6e6ab66d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 415.4 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f54beede813ca3b35d9a9c2582d1d2f16a31b15bc6cc7410bbfff38480057bb3
MD5 a69aeea1b382d3f520281b8da01497b3
BLAKE2b-256 a1e39e1bab8828264fd8935b193983108859149f639068d04e3401ced5016da1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f21deb4da3bf2cf6d4904f7c6d1ad2140021e3f81412e8e63b2ac594dd2671c1
MD5 9e4178b04099af5e5a4bea84d6fde39c
BLAKE2b-256 be8e86284c17183749da363452961c7dca741ebb13ad54cdabbee24727b7b642

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1251b9a077330b81d53867808a12242a5daba0dd5b03f4ea52e441d30a872917
MD5 0eeb6c6e9c42386471d5f27c98dfde95
BLAKE2b-256 63a4d3c2008581bf651f1a839b3eb76e96a915a4652940cecacf137d5b4bfcbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9960f7d125dc97a93cd9c04a082f985b0a49db132a4fae98aabe98376cc3f7a1
MD5 3d199dab71ec347dd8177b519f43abe5
BLAKE2b-256 cb263531025d3b5277fa812777e3f1d1d27291a1971f43cbd51e4d6d2d66a34d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 5a051ccb16d52ce56bb162b50521f53ff15a34821f4c91bfcd90c00b51ff6c40
MD5 a07b14d52db64421116544298aec9ccb
BLAKE2b-256 b262721aa82d752a4180a5382dc9560efcc4b8f473131f5857d4f6c857a756ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 eb84acc98eea2db19a51f4ea4e40999067646661bb0fec07c4fce4eabf9eb1d3
MD5 8a7a57c34214f36f3a696147ccfbeb85
BLAKE2b-256 24ce943efda348297c947ceb8573504315942e00efb3a9eeedb10d4cf665ea9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8698cca96a3a2a3636b0b01b584796bb65fe9136e181778da9971743ea664fa7
MD5 88a85b1e32c1715dedbe20a0db57f56f
BLAKE2b-256 ce2e6f1e71dd2116b6116c0e4fdea4749a6192ccec08857809aaf23e9ac9f809

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 419.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ac7e63b1afd098bec29ed9877c8f50e402688c41b76d14e46235daf0ded1431c
MD5 4ee5d4a01c71880b3a7c6fa0913eb9e9
BLAKE2b-256 91b08a76c5c5b35d65540c3f7468150787ae9a10f09b341fcae18625947a6aa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 418.0 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 436cae4a8c8e64958abeba6ab6e9ac925887b61cf3e039333bc929742ce355f6
MD5 aa9000f7762973b5a6c89dc555d1fa79
BLAKE2b-256 37f99d5c63345ec4210a880e3be23021427a587ea4d0842bc7fa9b1db2ec2393

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 414.0 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 88f90e543fa3a099fd91371431c8604c4178015f140e719e7625538fb61b0f57
MD5 372ac90b5b73c7e74b545974794d7f86
BLAKE2b-256 9b5c9554a778cb91621205d9f924a1306e06aa58c452f153b196aa33aa805150

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71a29f6d71aa52661dc2bbf2f93e6a8ec4319c46a529b312769388694cedbc13
MD5 9c894464c152b8257848b4f4a0358e29
BLAKE2b-256 1e5ce1f6d72bb1e6aae703b93c8648fe26ba9a30ffacdb527774b2692d0c9e09

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0fd27d6afa3c2473efba0375e5f4abe8f393e709a9a8c8b02bbfd4290cf0c140
MD5 81e411e429b47b5be5474f52cb482eb6
BLAKE2b-256 14a8302bcabe8af0e598a6327bcc0b97fc4cf8a5a97693376df45c66332d6141

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b54df2b8b892a9109f57c5a6634f2ff6e5d91fc9a56e1ffc4aace06ebaa683e7
MD5 7b08143a363a7752a486699f3ef17569
BLAKE2b-256 2a2c54185fe0d2c6cbf3f6707eef25366391fe89fa1f7093bdca5b172a481e29

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp313-cp313-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 283bc353de6c2fd7d06e1037209c23308a4dd66baa17f0ed4c860f9ee358b9ef
MD5 aaa4799230b2b046bc94bbf50d97bd07
BLAKE2b-256 f7a365667e0f7884ffe1d46bda7be5c1d7b22c6f022dce388f6f4fddd06b3806

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94c380b70f7f959b5c67c0c5e7aa7b9033a47eb0d0417ef57e18957c191a03a2
MD5 fd59eef429747826b7727afb1ce3672c
BLAKE2b-256 57cf0b8dad19fa420d7c64b8f695eac5414a53280968127afa71863b798662ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4841a0a2e843e167092f77ce59f409002d22e69208c02f65495b3c8239c5f5e2
MD5 b224047889b36a09235f6668879eda05
BLAKE2b-256 b82f6d8be08fe738296d08ee7e068a0b3af9477047517ee1f1378732ed5fe55a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 419.4 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cf8b0441981eee5d3e2cc801dda74c36065a4ea249377b4a684f4792fe37230c
MD5 5773a1f625d736b368505c506d228cfb
BLAKE2b-256 4d9a98c327f6236fb899bc335f13a24988370db0915f0c3cd10aecce88617ea0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 418.0 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 29c7921240b49f9affe46266382b96e18cfadb8ab81f8004fea03c7316f12989
MD5 03bad2b4a1ad46bd1716fa6dc46ec902
BLAKE2b-256 d1adf3a3dda0c8de8570620617508bc41ecc3701e2ac4c9b4f52bc78ab700984

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 414.0 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d75ec96337892b00bcf4a84b4a15e8a321c38e14bdffdb22137a798f1f564ec3
MD5 154f391e379b95e8ee6bb3e5a8d3693c
BLAKE2b-256 467eaced66fb9fc88a65e1c8e829e91ca062177343fd8a2da0db4b42cdfc0c6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 75f65a7d5b60164f3d4045b50b4c8c8ac922cf7f2e743309e15a7d300d188978
MD5 d6e7d991ba2d5c879c88ed13847ea343
BLAKE2b-256 0e8ca2082a42c8aedb9241aaf6863808869f134db44c1ec05dfad979cc2197ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bcf821896372650c431f4269b679917d8be199ee1059014b75510d2ece80903e
MD5 72911e00b5c29bfba75254300ed64e5e
BLAKE2b-256 4a1567b93fbfaea1626ba6132fa00a0dc0c9e6d4cad1e599d9b6044290d61ef8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 048cdd13153e01ee7d59e808f50863a0c68658c05e9277e3e83e0554aed43bb4
MD5 62a3a304629dcab6ddb6557e0bb28686
BLAKE2b-256 ea220c87bfee59805536abda8fd9d881716845dc1e71fc9f613da9f0fcb63247

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp312-cp312-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 0fb4bd48fdbcf93e89198ec919c641ac4881fe44f7635c84fb4cfedc086ddc26
MD5 72931b97e3ec8ae920a691669ec335e8
BLAKE2b-256 fb3e83a6e950b66b930da53e164ebb7dbac7f1678b1abff126f4b85ee9b8daa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 768b40e628e6fdc477212a84969f5d0b88ab7761dcdac576e8cbb504bfa7ee11
MD5 eefb912e41ab06fdcd51b85b2e5ad773
BLAKE2b-256 8f6eb89c626af526ebc25195f35b57e48898876b16414c2b2efd20288ac637fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0510923ad318a1c9f893823fa2e7b63943d0acbb9d8d2192444eda6359061491
MD5 cb17d038e7a5f8bfbd42ea58797bc0c1
BLAKE2b-256 29468c178666d7b3ca3be5ce95a5b309c4c5a791639594e714af8d8975b4f74c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 419.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 471c16ee2a9a335934c0122beec5014daa7e0127f6f35fcf5b7e4faf91ab9aaa
MD5 39d63277efe8efba77eebc246725041a
BLAKE2b-256 6e92125120390fb59587ab339986b039f66c490445df25598da3d4e718a68fdf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 418.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 05a591d596a0a39bb2c850885b71c3daec7914578525066f0b40a9d23adced91
MD5 a8fefa717396e9956b2d6e292cc0ec3a
BLAKE2b-256 5153d0810483b5e77760a99fdd36aa9597e19f945a9be5f8cfe88d9026dbb0c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp311-cp311-win32.whl
  • Upload date:
  • Size: 413.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e4225e1face5f1d266b6280509dd7760ae3671aa863d5e20dae9d1079180c2c4
MD5 8fe16c903b1c0e944dfcfcdf78639c78
BLAKE2b-256 455fa99a58c8807d58e8414474cc839a5e1f582a5e1060adfb0181683bc5ed77

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fb8957bce1ec129e804b79d20df5135309a40bda6cbf8554fbfdaf3d49c55ab9
MD5 1f18841da70871ff42f2362ff0a10859
BLAKE2b-256 15d5ab74db74770a9576a9815c59ab6f37f022d2b9eb0e0b26e293bc50da4319

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 615b59c9d05171190d7c97e959c641e07fef028d70b42bd1eead039ea3231744
MD5 4348582e878e3d4ef36e6c154c1e2627
BLAKE2b-256 945da9b1cad331f87d996a763b8afa38e5ec2913cf4af8267bf5e0d9c4e5e73a

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 03723fdfc83752cae89f59d41599d9a94a551a9d439e7f3a544b0c7feab0b549
MD5 75e5394dde532dc57672ad233acc9f83
BLAKE2b-256 0cc33cdeca5f2360eb10a349e9a09772b31f9434d3c0fe2039f0b5971ffecc12

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp311-cp311-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 2e5c6da5be87df9f69a208ed31df988b1ee4af28f8a956b13b74d4c93c5bcbf4
MD5 3489d4a48879f6279583c8da86db45ad
BLAKE2b-256 555faa0aea7218c2f9349c8dc5f22916c95e56e90c28db27d96a7c8f501ad248

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1105518e03d81dffd2102ceef08f84bf725897fd71cee865c3d7eb0081b61bc
MD5 3007ed7fa15828d5e53349d637e5995a
BLAKE2b-256 fa86d7bc373d0bd5b1d4d54c2678f3814ccbd45717472dc3988311815b2c5132

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 da7fe988e24722b356567db95ae4167a582d67b6fd2a73abfb151876feb65dfa
MD5 e92cb238edb70abcb40c641ce1e179d7
BLAKE2b-256 626fee051d58c28792a744022663db446613b8c7b5a2babbf36c7244db425e8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 419.4 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3a0d889846c2107c75532af366bb0f4507d1cbd30f2a4df190fd97d767f79203
MD5 c4f271cbe7c9a35957b53971aaf3e0e5
BLAKE2b-256 21ee5278e2f67124cb5750ca95fa06b6fcf115aaa37afc98ac0c91b93ea90044

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 418.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9051512d74675f63f68691b07da8d1f5de2d858ddcbfd52ace7a44a56302746c
MD5 800b93c06dbe9fd625344f9642dc2b03
BLAKE2b-256 422055fef1f7f78e7f94c58cfb6c37e866845e862a7fa97a59f25eb0a50d5de5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp310-cp310-win32.whl
  • Upload date:
  • Size: 413.8 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 6f1278f33617f7012e48b39060026e600479a150f8880ce99e75ac092bea6c2b
MD5 28a6fb52fb4989fb76e5cfaec3a40d3a
BLAKE2b-256 42dc0f5a3f9d086f1cb6065ba7f9a568b12c48332d76890ebec849e14cf16bd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fec30fa001522d658d18a4370f34135bd7c1b4955091d5d501d3fa2a327df72a
MD5 2f7a3aefa54a35fe274d12a9756e8566
BLAKE2b-256 0097b42d38bab1426a8775248cde66e63450c06c7d233b2f5d3e5a2c52ea4dc6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a7a90efd164c1a3d9ba840b91458f45e181f01b3a39695b5510e412913ce004
MD5 81a9524a229baa9ede5ffd83a40457e9
BLAKE2b-256 d461c6341c1f74a46db51dc0c1ed15b5e6a5ffa3489e46b8c9f7af12c3250924

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b9e4950deb92c09f277ac71dbed5f5dbb2a42fcb755a904356b772f6309a3229
MD5 46192a3a7a8830bc5c20e208ff14cbde
BLAKE2b-256 6b29ab81853eb6f7604aa3d422066bb540fdf987e5184e76292c9a25a51c9d63

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp310-cp310-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 9ba6a7151c8a2d949d1d78ebd233b9f76831c694094946fc8f0a85bb43a602a0
MD5 99dc76eb2d9c2d50bbc1dc7a11bb5739
BLAKE2b-256 8a599cae7e803f7209c6ed3ef035590814b3e92763d4a3220ba3156a0932d5d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 02fc35d66c691b7f7f542f06223d185233ff57236c7fb68213f6fa450aa01116
MD5 3072edf9ae40d9843021ee66097c21b7
BLAKE2b-256 ce0dfcb652e01134a23ba17d5de16704e9f6f75ef87199e963b31418d4878347

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 66074351ec1432e0822cc1d4d5bf46012e715f2d7f7b3501ea369d7fd95cdd95
MD5 6640c5dd8e4067ba0610271ab4f69d56
BLAKE2b-256 30acdefb693d6a59c192166573832e3f9b99b221028f4253f016fcc00e002384

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 419.5 kB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 7d49ad6a8f543500334d2384e9be3dae50b0398842c5d04ad1e0cff98c96f025
MD5 6be05d2b72939c8124ec833cb197bfd3
BLAKE2b-256 b743a3cbb0ef5022d68ffb516473cdff750faeb4ffad2f28ad4415136186582e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 418.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ea49c0290e6c0c201af78c93ae68dd120f441e4037eecbb5ca0a871995f332d2
MD5 6aa2ee52aebfae60e78c505caf43b189
BLAKE2b-256 7226e77aea9fe933f5cca5bdd22a9d2e1c9b28a63d6df28b7367a36fcf31ebe6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 413.7 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c8317a60a1845c23fa7e548224d6e8f440ab22bf2e3e95ad591d44110c8011e6
MD5 811da352ed7c27a7f56e163e998cc85e
BLAKE2b-256 0d692e05f4357d48ce28de46d77fec0ecadf1ab9d538fd6922a32981837d094b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fcc85c170c19d881e26b236e58f5f7d83688ed68a5f75e20893bc3d5db1b730a
MD5 2633b616f4b9fd5b1fa6fab0111bfc05
BLAKE2b-256 c25a9de7d994438502ec2c4371264546e85e4bc63a20c21ea7689e4429a021d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2661e38d2879ed35ebf6487da821dfd296a1ea0c372c7eb65f76e0cb4386a062
MD5 a2734bc0ab04def3f7d893362623ea14
BLAKE2b-256 e84ebc5f9867d7357079e441e86486eaf54b1c1eb6801d61d36cf4f328c7ea4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 89d6c92dbaf96040b5dc2751b2684c8bbbda036e1a29a658011af698c35cd6e0
MD5 3deedb1f71510e2087785c709936cb32
BLAKE2b-256 f336b0f97dbd845af5991ae1f5b60d050cf43cb61eecd16f7f39b96c07bc7ac4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp39-cp39-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 f5cfcdd6cbc84e34e914d17c27d579ff54a3808c4863b85ebf0beb26baba2ffe
MD5 233ab132e13859c0b60fe92ac7f13d55
BLAKE2b-256 7594e38f8461cfe47c964b1fa41f157ac8b1a0c4e5095809881c6b98c02085a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a66754a4ead597ee5bcbd5bcc85ef417928a9387b845bdda621745d8d9f7bfda
MD5 41d9c4485f9fe1536771651301e72ca5
BLAKE2b-256 e598f5f6d0487bdb7654cb00bbc84ad89c88881c5c34f7927dc3bfdbe0b081aa

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c63745fd8f6dba46a501164a0d67b870935ad7f4905319b6e089b51c0afb1296
MD5 e33ea449d9ec9b71d2504fdf2cf97580
BLAKE2b-256 762f24fe74c291cc7818bcbbfb812b3d098c4b2f5d3ecf59931f673c958eb841

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 418.1 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5f2f80dc121d4853d73e0c3a3147b86de076b4a4e69986ce73db0e9806a5efb8
MD5 4e23c1e518905f6e7a1e2d6f303387ca
BLAKE2b-256 37210380eb0371d9a1f9ff6a7157d1ac650daca6287b722f7af7ffef86913d66

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: unitypy-1.25.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 413.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for unitypy-1.25.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 d4b7812ff4620db4e9e5be8ecda726cc457a881de316111f27e7f16e536ba4fe
MD5 d1dd78fa5de551c000a53823e5a83fa9
BLAKE2b-256 79abee0b9ffab2e11c80dcec2efba9ae2441908c103ceb01ad84f82b1470eb99

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e4aba23e240a1bd4e88f4344c902004ecf8a0cd0417ece4f5034f0a72b63dd77
MD5 6746e18996f60a7881fb2865ad7d8fc1
BLAKE2b-256 a9e6327968264f6b94d05a907fff7f75e1b8baebda46039d26fe87c63e7917e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 02ff3ad71a75009e5eaf950978a2bcd30444a1ab4d6e74d5f0bc950d24137cea
MD5 1a2149b6b5a37b4306a07b3bb1c40771
BLAKE2b-256 21861736561782e3724201c827401e33c97f36aed83754a54950b94bdc7c468b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c8d18b00a593b3a396147f56ab1a6cb2c729714bcb42fdc7d661011075474746
MD5 e23f0821635e2228d398549cbf77b33c
BLAKE2b-256 9ce783d2f0a019f2720a02b6046473d2824f032e2e63737be2d042bc07ec78ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp38-cp38-manylinux_2_24_i686.manylinux_2_28_i686.whl
Algorithm Hash digest
SHA256 67c37dcd6c723ad2fb82d634f5b6174888e4cc3325f2c9a93d778013a4a6dcee
MD5 cd6b18eb956bcd426d39aabddace0167
BLAKE2b-256 667d64d759a1a76d594687df6548ca1bff647cd4938226e1e82696615e48f119

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 14f8dd1a83593d726240d26f4b24d91edba0cd8bb2c38ce3d9050d8d81ca0a7e
MD5 2585a74587885e6c4aba85bc8c53889e
BLAKE2b-256 9062c17ff1b17f489500ddc0231902dc8013dfacdee7ddcd50d5237a21862a33

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.25.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c9616f7de1069a5ee3857cdd61a7495dcfa3659e8dfd0ed6a7af6a61e1284257
MD5 42a62abb2146879f8ca48114c296bc83
BLAKE2b-256 b09179b5b89f728c2dc1c3d3825ecc3cd0d3026dcd7093f03d4f2ba2eaa2dffd

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.25.2-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