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.read_typetree()
    # modify raw dict
    obj.save_typetree(raw_dict)
# modification via parsed class
    instance = obj.read()
    # modify instance
    obj.save(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.7.0 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.read()

                    # create destination path
                    dest = os.path.join(destination_folder, data.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.read()
                    # 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 read first. This happens via the .read() function. This isn't done automatically to save time because only a small part of the objects are of interest. Serialized objects can be set with raw data using .set_raw_data(data) or modified with .save() function, if supported.

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
        data = obj.read()
        path = os.path.join(export_dir, f"{data.m_Name}.png")
        data.image.save(path)
        # edit texture
        fp = os.path.join(replace_dir, f"{data.m_Name}.png")
        pil_img = Image.open(fp)
        data.image = pil_img
        data.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":
        data = obj.read()
        path = os.path.join(export_dir, f"{data.m_Name}.png")
        data.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
        data = obj.read()
        path = os.path.join(export_dir, f"{data.m_Name}.txt")
        with open(path, "wb") as f:
            f.write(data.m_Script.encode("utf-8", "surrogateescape"))
        # edit asset
        fp = os.path.join(replace_dir, f"{data.m_Name}.txt")
        with open(fp, "rb") as f:
            data.m_Script = f.read().decode("utf-8", "surrogateescape"))
        data.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

Export

import json

for obj in env.objects:
    if obj.type.name == "MonoBehaviour":
        # export
        if obj.serialized_type.node:
            # save decoded data
            tree = obj.read_typetree()
            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
        if obj.serialized_type.node:
            tree = obj.read_typetree()
            # apply modifications to the data within the tree
            obj.save_typetree(tree)
        else:
            data = obj.read(check_read=False)
            with open(os.path.join(replace_dir, data.m_Name)) as f:
                data.save(raw_data = f.read())

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.read()

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.read()
    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_object = mesh_renderer.m_GameObject.read()
    export_dir = os.path.join(export_dir, game_object.m_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
        data = obj.read()
        for i, image in enumerate(data.images):
            image.save(os.path.join(path, f"{data.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


Release history Release notifications | RSS feed

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.22.3.tar.gz (6.2 MB view details)

Uploaded Source

Built Distributions

unitypy-1.22.3-cp313-cp313-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13 Windows ARM64

unitypy-1.22.3-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13 Windows x86-64

unitypy-1.22.3-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13 Windows x86

unitypy-1.22.3-cp313-cp313-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ x86-64

unitypy-1.22.3-cp313-cp313-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

unitypy-1.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

unitypy-1.22.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

unitypy-1.22.3-cp313-cp313-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

unitypy-1.22.3-cp313-cp313-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

unitypy-1.22.3-cp312-cp312-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows ARM64

unitypy-1.22.3-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

unitypy-1.22.3-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12 Windows x86

unitypy-1.22.3-cp312-cp312-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

unitypy-1.22.3-cp312-cp312-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

unitypy-1.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

unitypy-1.22.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

unitypy-1.22.3-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

unitypy-1.22.3-cp312-cp312-macosx_10_13_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

unitypy-1.22.3-cp311-cp311-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11 Windows ARM64

unitypy-1.22.3-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

unitypy-1.22.3-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11 Windows x86

unitypy-1.22.3-cp311-cp311-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

unitypy-1.22.3-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

unitypy-1.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

unitypy-1.22.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

unitypy-1.22.3-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

unitypy-1.22.3-cp311-cp311-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

unitypy-1.22.3-cp310-cp310-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10 Windows ARM64

unitypy-1.22.3-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

unitypy-1.22.3-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10 Windows x86

unitypy-1.22.3-cp310-cp310-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

unitypy-1.22.3-cp310-cp310-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

unitypy-1.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

unitypy-1.22.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

unitypy-1.22.3-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

unitypy-1.22.3-cp310-cp310-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

unitypy-1.22.3-cp39-cp39-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.9 Windows ARM64

unitypy-1.22.3-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

unitypy-1.22.3-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9 Windows x86

unitypy-1.22.3-cp39-cp39-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

unitypy-1.22.3-cp39-cp39-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

unitypy-1.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

unitypy-1.22.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

unitypy-1.22.3-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

unitypy-1.22.3-cp39-cp39-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

unitypy-1.22.3-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

unitypy-1.22.3-cp38-cp38-win32.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86

unitypy-1.22.3-cp38-cp38-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

unitypy-1.22.3-cp38-cp38-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

unitypy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

unitypy-1.22.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

unitypy-1.22.3-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

unitypy-1.22.3-cp38-cp38-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

UnityPy-1.22.3-cp37-cp37m-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

UnityPy-1.22.3-cp37-cp37m-win32.whl (1.2 MB view details)

Uploaded CPython 3.7m Windows x86

UnityPy-1.22.3-cp37-cp37m-musllinux_1_2_x86_64.whl (3.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ x86-64

UnityPy-1.22.3-cp37-cp37m-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

UnityPy-1.22.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

UnityPy-1.22.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686

UnityPy-1.22.3-cp37-cp37m-macosx_10_9_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: unitypy-1.22.3.tar.gz
  • Upload date:
  • Size: 6.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3.tar.gz
Algorithm Hash digest
SHA256 d172a0e425ce4452a294c4d2495306bba36ed16f6025c8ceae04aff9776894e2
MD5 13db2741b3863a7d7c87d0840a1c0d74
BLAKE2b-256 3110726dce4354ea4f3037d42fe0d9aebd07a1c45cb2fd279aab7be52c51b95f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 39d4cbbb4f38506fcd1ab4752ccc9982c1a47b22b17f8c7b992d7354d7e18ef4
MD5 24a4d86b53d972d71a9a24c730293ee5
BLAKE2b-256 82f43a6988ff23af46a93e4af3d8253edd2b8de382cfc6f62e9b6bd173496109

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8dd13e0630746bd53350f623a41a21ecb5c70bd98dd72286ab2f05685527d61e
MD5 5a46b166493d5f8821c39f1dfa9edbe9
BLAKE2b-256 c195a1cce7c36de779904574f7238a5216462945e0dcb373eb9616b2dd15a097

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8da4aa88b31168199e67b90f19130c9848dd88b3daf48c2a64b2d78c578e4933
MD5 d52258e6874412b00b5518e47aaee18c
BLAKE2b-256 824d349053457cc03f1ff649374ef4b5c0bb1ee10cc857d511fc4db17cacd33d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2bc2b855659f8c5b48d6f50171981b8b69553c4354b5a5bf70ce55e8654fce62
MD5 7a3511f777cc865e0dfed8f638811717
BLAKE2b-256 e46e6a12f2caee113d733524843c2cd4d668afc892f4bc64be264de11fcfdfbc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c68205745f6293d340317aa4173b7628130d5f15dffcdce8b737b70362b84a2f
MD5 97bd9722e4404e53491a34a70fce54af
BLAKE2b-256 2db8e8f1388955e9869e93a95a10e6c1e00635d5252cf7612db3dab25fc76895

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.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.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d7298bd7ed414864e34bbffe1deba3bef05605d1aa60c5a63e8dd82462733295
MD5 3af57494c88e77dc82a0ca0a4fe951fa
BLAKE2b-256 af8fbe8baad70da6deea8aa9097bbdb5a76d1cbc397fbbdfafc339f567e278ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_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.22.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 69748905c69f689b1419db7ba84f8d4217c9a0bdc79f5fb7048025d8f348da88
MD5 f6f73678a1a9e105f7cafc9067ddca6d
BLAKE2b-256 865748322d90755bdaa158ef5305d1d3a60f653a520900dc6bc276087438f10b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp313-cp313-manylinux_2_17_i686.manylinux2014_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.22.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96169f17eba6eeb71230a923b0729cd71d46c0d372325e29804a192eb61a23e7
MD5 83160a7af0c9052c1fdfdd832b41a329
BLAKE2b-256 a7d75237d6af0899e950b875091d355fd03ba1e17257bea41971892a07c4daba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c4b925657ff5dedae72e7dda624e2ffaa0210f8c25f666f74a521c7d78391761
MD5 96afd8e59138dee710660e501b80dbf7
BLAKE2b-256 80c9bbe156464d60a1b03b37903b81c730292738f7e20c488f7f41363daaa66a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3af3235e6eeea8924ff257562558dd628706dddad24dda2ed148739660fba9c3
MD5 9dd6e9827a6aaf8e97f044832149c8bc
BLAKE2b-256 78c3ee6935149126da5f6a8deeac62648782a1075c70a722a1c88537989dc9bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6feed3093c8a6fe0a4245330f8e3f50794fcfd37703bce6e65c389bf0be946a1
MD5 3cb009e596aca0ff3acdedd1fbfaef6b
BLAKE2b-256 63bdfe3dff460111e656b232bb9aac0372edc00654975ad99741d3d37c77ef91

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1e7425728f1301e6358890420d624ffa741234cc33d30ab1a0e3d8f6e7ce3f1b
MD5 9e7d5991bb73350098d8d2d267950dda
BLAKE2b-256 c1046197b9c2285fef140a457838030aa2ec8936ce78f1fe1fba8bfa06589783

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 786679c6e1fd7461df7a433e45da5ea2e88a6ddb755df3505144469ad1d24929
MD5 d19fb7c417dc5edd17ee781f368f25dc
BLAKE2b-256 6a60428c3292811d804f967da67a541a03e900e196d769c7c0e6e0ccc6a2688d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ee7f2aa17a11614ba4432fe69cf320adaea023daf269ed495ae5689e21230a1e
MD5 6a8940b3bc5c2ea09da2a6ed9799fd05
BLAKE2b-256 c74ac394144d26b78662d5071f79990593b190eb2a70666584f8ada97ec65231

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.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.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79b042cab25028e876c6cc0b31a1251c8fd0d5a3ef087ded49dc79a7efec5fb2
MD5 de34adc578604e83dcfe0838dbbf1a89
BLAKE2b-256 ab3d3aee8c654094d0a989511df9f935a8f5a3b00b9c37c197f5bbf1cc84475f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_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.22.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e2364f759d0a9a113fa15adbc454add403d1897bbc8b8883661b12fce6545439
MD5 ee3417e48a617083e547d3aa7e1a6dc0
BLAKE2b-256 e018abcdc68d63c5ed46f3390d4775e20364a9856b3d3ef4a9252ef239534a1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp312-cp312-manylinux_2_17_i686.manylinux2014_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.22.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfa80ac990cd7a7d77b578667aec58c06a855824886363ac543230db88c3ba78
MD5 13d83acb0efa9a017ed9c8d2ce37723d
BLAKE2b-256 c7291502782c63d8dd78c2abe1e2cfb9441653eebdf1afd977fcb12dd80df769

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1f04be44b971fe8f853a9ee76846ad94b627cddae3599b2679a82320e29142de
MD5 0ed4d0371494221a532bde658e066100
BLAKE2b-256 49a570cf7ecee8df18e7d22cae44c385c4e74a453e1dc62c1b61aa9608fcb28e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 227f6121aec8adbca6a26dedeb7124eb68ae41b3eeaba271101bafde8058ecc0
MD5 4599a0bab543ba7abc58edc23e79771e
BLAKE2b-256 0f56585e0d24f339325ecde1dc82ca5e448ddcfac38e177b552404ae04cbca90

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8bd3b330421f8080babbbf96b82233989255ca2cc698a38afbd2c4eddf1296d9
MD5 5c22dd3993e3712a51850ca64be7135e
BLAKE2b-256 85806e89856db5615627228f7ce94f37ab1fcf40b3ae77d909880fd3dcac5fb0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 00e81ba4825e1fbee87544a256e89049859a4fa320edd71b5244d5f73ec7d336
MD5 93bfe7dcb043b2122e1f7d62a215f760
BLAKE2b-256 c11a91dd7e280ef55dc787be30e7713d4a7257752b386f2330e39d2a38408cda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8d7781a2f9375473d399ca70ffa7c404213e7f30a29131f5d00c0b466e8bc61
MD5 c670f4d9698f4a451fbac86b30b87bb6
BLAKE2b-256 06cccd787c759ca9367738c4b0b9916c435a999a3635a2a28bb2b52e96ccfe06

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d8d777cb56b2213fee5d51028464981a3c5200de0a8265b6a68bf3ea2d030a5b
MD5 5dcb911e25d1fa90a81ee759609e917f
BLAKE2b-256 8190b26e44bf01efb36121510ad4a51b0d2a96f029c39c6f47c310f3ee61cf93

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.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.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39e36562c3593b9a6fbf1d7acf25d1f7de3d13dea2cb5c21d555383d4525108b
MD5 2bd440ccb859054bc39b875da914c84e
BLAKE2b-256 57870ff12999034877ee1ee3d21d4b1b66e4fea10d012b9f7b0bf620f111c8f5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_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.22.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b31dd720e33cb4c7f5d4046a430a1e6ca954071107617c01ac7ec39fc2a8fbd4
MD5 9fbfd727368de8c191967f5c72f8b845
BLAKE2b-256 4c73eb895718845d722a7f640614d20d02748b0461b63e9bf7a7f9dcb1a0d20e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp311-cp311-manylinux_2_17_i686.manylinux2014_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.22.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 894496816b3f1a1dada8f241c946ec1a16f5181f332d73aead24447b57ad5ed9
MD5 565706af08df6d3e453f0378534f1232
BLAKE2b-256 c378692ade9edd493d17ba13ef48e6fbeaa9702b1a2fe6b73fca6506e3a9ae2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 498ca8e530048f626fb49ac1b22e44ecd8ccd9fca3d243c71ceccf884e612f4b
MD5 c7a9a02ec91aa68f1454dc15741b2aae
BLAKE2b-256 b840bec757ac401bb5547af7edd9db6e2ee813281b7d0fea5bd120a120333bd7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 1897fb4c53a3c4ddfc39590ecb281af77d726bae4ceaa7e1990bc69178de8b3e
MD5 420e662e7958f9871420a34d0e78367f
BLAKE2b-256 fdfbc5e5e5bda600792f09f06c2c812f0aaea9aa4733593f803fcb7bd1cef59a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ded14aab43eaf3f39f8464d857f298ddedd13279d2fffa389db8bafd495bed4f
MD5 2fccc904fd46439cb33877d7467964c6
BLAKE2b-256 d9d60f88e6be129853818204795f3d22ad2029fc81933e0068757c978c9dcd16

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7bac0f86f33a7084be654d6b59fad67b1611671e4806544023d910296f960895
MD5 4c7b9b5736d8622e5010d63050578890
BLAKE2b-256 16574cdbcb7e9a4491a365baa8e1b3662a30f05ddbb355bc0fa2c9a5a976a003

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6fd801a785acfadcad13bdc874d5ed7fe2df58a38f667e40bb4ce450691b3f68
MD5 b1cd90491a5b374b8731115ea3e43363
BLAKE2b-256 6296037216093e8b1d7c231152eaef17800bc71499de8171ced238fd6d31bb3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f85db4bb8dc3f6465ec98af59fbc982bb8ba3bcb4a68d706753eef8694ca2968
MD5 c86b2c218de39c9d927f709394fca34c
BLAKE2b-256 b23f782b0a77c2247bb0cfec5fd27e5c347bde89958fda4cff2e82c01baa7012

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.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.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe059a92ae122b845439ff58071a9aecc9b1c6a5b9200fe7e8c17cab4df9a205
MD5 2d777f3853949d4200aba5d6f1c1c680
BLAKE2b-256 4761c04ffb71dafef87574e73f9a2eb89682abb2b228dce6660a2148f4091786

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_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.22.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0521c2e83acb494ed850c150e70e2df85bf51ae74eb7cbb010129002e67bf8da
MD5 c6772caac4182ff6a0350f2675fed77e
BLAKE2b-256 c733eb07642df1f20abbd08ad9e307b1f9f29f0619cdb1c546c1255784b889b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp310-cp310-manylinux_2_17_i686.manylinux2014_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.22.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac3bfcee184bbebf451ddf3fb42757a82f62445cf519ad2c5d18b90b2eae3af5
MD5 522ebf60a0a57a45014df7d50e0f7a67
BLAKE2b-256 8a008388a6ceae32888b3f192bd49934f649157d6f254a08dbbf7d353afdc493

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8db967cf154fd967d268496ab42458ab43bb84d529504bd936482babf1635f7e
MD5 a23c88897465b63e8065e39cdb445e1e
BLAKE2b-256 932166b05c6674fa14974fe4631ffc353fa95911487f56e35f0382a9c3b23936

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp39-cp39-win_arm64.whl
  • Upload date:
  • Size: 2.5 MB
  • Tags: CPython 3.9, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 f8932c2081ed82a6af9bd0deee3dd5b86241052177104654a23ba1fad3b45619
MD5 3bc90c7422657f6395789181a74e0a86
BLAKE2b-256 3c554f5c1b16288b9105ed5771973ba9bd8c09ceebf817702247c0abbdb47ef5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8a42523c12845c289194820f9e4015806f8fa4d381b0ff1404f3792336175439
MD5 c15c57a94d68f1e39e17f530d0296d66
BLAKE2b-256 e14d6c05e32549ded5e993dd859d432af7c6a8dbdd1f2bdc915cbe7fa5d98bde

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 725a104083206691dea7f819b699af7902bde26fd3bdc6046af71a933c1e452f
MD5 536fab6137ac28863380c031d7e10507
BLAKE2b-256 c7fc083e77842022f27fb01c6fa49641c3e2be48b26b47a15a20dbc0ae60b891

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e2f90a4e241229a03b238c670f6ee3dd1f3a6ba9b22a3210cb452789c53bed6
MD5 7443ec58e1b73819f6aaa6b484b52986
BLAKE2b-256 882eac8ac06f269417a8687ea521a329fb336df600442ee41c117d3f5d11e778

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fa6a2ce0fa632f84ea76b317d0951133e3794e996ce54d004ca504db4c6e2e40
MD5 9df14a0d93243877eb91c146eba87f17
BLAKE2b-256 8322faa10cb7b0ae7d366f0a230dd57bba5b2f9900fa4e797053d32d0dd98fae

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.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.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e9f53cf6880386bb55743db7f8e1caa7e7f9916baf4635867ba3d054d044864
MD5 bd1cdba255cb9888ee4572fdf19718c2
BLAKE2b-256 58bab5df68fccb7a899516444f8152e18150e86d40cc30771d5931e086f26f85

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_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.22.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 472aedf30a59067f90000d9c6b04ad9cc9ecfa20ab72bef24bf3cf15af430500
MD5 3db8b88e9f82fa7d5caa980b3af8e10d
BLAKE2b-256 1da2bc6167005fa9011a8a6b589999cf18b4a8040046fd94e60aa793563dbe5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp39-cp39-manylinux_2_17_i686.manylinux2014_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.22.3-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9bdf924ffb9836f96fe0cd24163106c02f2543901b27e307343449e331f3cbd6
MD5 304f2f8dcce59e5b31182367bfca6cbc
BLAKE2b-256 03e382eb4440311aa953732269ad649ed075e5bfc61b7d7cf455c936a00b4bd9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c76e738b092f3a7abf6ed49f064ed82041e10df46e09658c029b98cd56a71f13
MD5 c51bc7c093fe64c733f6e345f236ed27
BLAKE2b-256 477ba5df6ed46e8c7683ad566f7bb66e25beafd7464aca00d6215799e3416f90

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 ce4c15dad2d09d1ba70b73018091b136f2cb1674949cf31a6c58ad6927ac482e
MD5 e33dc585430a08eacf45f9c723a8667e
BLAKE2b-256 5dd60734defbc9394a962b6a674467ac86a6868abbcbf21d104064f33d368aa5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: unitypy-1.22.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for unitypy-1.22.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 3986a6ea1f69e3edc1e7c0c8250b2588dfdb35deaa5a498ad9c38b55a69f2469
MD5 c157209f93f9292a4d5f51b278ce1350
BLAKE2b-256 1bdf8bb4dd6492637d6f270a205427386e765baaf4d628abfb9ae556015e9476

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9ae3163d5a20efbc7f03a1b79797e2423ab41854f6bbad7cb5fa32118bd2884f
MD5 153612ff309d6b51160446fee84aab1f
BLAKE2b-256 cb07ef06e96c24df223d3e4af1f0f62d1197675f3718b27d4f92f26f374ccd68

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 df5e26e99316cb5b47da2b9d089b7b0555b3c8303d7c26c57ed2abd4d312af55
MD5 112a86af27670208ddae15923a448d32
BLAKE2b-256 2808f8062b6c87f64e7a12252ab325c7606ce8734594e2f8e67b3ad21627d89e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.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.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e15abef9af33a2f57d16d534e134747fcfbf0fd08c54ec4706b5af7f9fc250b8
MD5 004400a8b7bc5b566f9e9ab989b86130
BLAKE2b-256 7954a6e08d381e5d81c5f9e2b31e3804e2bceab37c84d7960c94293ed84a8d82

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_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.22.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 0c1c305d59767cd7d6fc1a90634d2ff4f160e2f3a82dc0e6e7fb0e9d30d06b76
MD5 311b5e0d95554ec61ef8c9327b2369be
BLAKE2b-256 801db4529aa1e3e7e36a522ce37b1d78ef97a802cd296b2948584d314355f9a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unitypy-1.22.3-cp38-cp38-manylinux_2_17_i686.manylinux2014_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.22.3-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unitypy-1.22.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3706c6305773a4c50440324f278ae17b9675fc511e2ee555c7270ba3793ab69a
MD5 48e57572b9f96d2bc9fcd52ef118c82d
BLAKE2b-256 d5f042fcc894a373f56ff3f20f406fc2528987c85a64e3fe56a805d814d270c5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for unitypy-1.22.3-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0f5685464f7dee7d1e256356235f083cc3dbde914ca8fe37e0ab1607caf29d37
MD5 692e5d22cbb7e2ade1afc3f67e13d75f
BLAKE2b-256 0f7de6d35d0df15bdedf335eef0e6fdfae0df6209cf7271912f93ada47de8df1

See more details on using hashes here.

Provenance

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

File details

Details for the file UnityPy-1.22.3-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: UnityPy-1.22.3-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for UnityPy-1.22.3-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 81689ce2326ce3b9c6d8aa84d438b65255fb38d60a1bdb468243242fe72a0768
MD5 5e1717105d5c22a021d97fcebd914f78
BLAKE2b-256 08c750e95c7bd72d6cb6154011a62404b91f0553c6e2d9f70b170dc7d9c128c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.22.3-cp37-cp37m-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.22.3-cp37-cp37m-win32.whl.

File metadata

  • Download URL: UnityPy-1.22.3-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for UnityPy-1.22.3-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 c1e5795ccec8b8e1870bd3816294985a1a5eb1da9c7e2c9434de14f7db21cc1a
MD5 e2161d516534ff8f9dd791d13834008f
BLAKE2b-256 e78b560ba65a423603243196daac85fc3026db3f6a2826d62927405970a8df9b

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.22.3-cp37-cp37m-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.22.3-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.22.3-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 63dee0b3742cc689fe6bd13926239cc90702b9da589c4adb15994da912df0177
MD5 8d3436b16df999d9df9cc638936ffc27
BLAKE2b-256 d6c25b476e7fd6c28ce66d175f09065ed84282119b2931b49b8b3a20dfb5b9f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.22.3-cp37-cp37m-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.22.3-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.22.3-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 96b15a0ab0fc9e9fbb61433144b9ecdc31a20fce2e88938cccca98b1ab8071e0
MD5 07d37e0eefa0a6f10c76018a8da365d3
BLAKE2b-256 7b0123c0fef2d8869394068d8a32dc4f6dd6345af7b2b4651a97591a2a76f1c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.22.3-cp37-cp37m-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.22.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.22.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4acde53f8fd59a127e3821d63c485458cb6ab2b3dab61c34b9eed50f2d53e86
MD5 72de01940293e4e8d37130b5a7cc8395
BLAKE2b-256 1ed32d2452dad7e045843894b6399f8e68929f6cf0df50ecf53888f5d0aee354

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.22.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_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.22.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.22.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 961bfb00a11efe84784e8d613dc1cb4fde84e1111efae387f000b7c2cfec070c
MD5 65172eee059ebd9cec76911af6c6a099
BLAKE2b-256 cc0ca793ae34d802daecb8ffe65a13762fd73496f92d1b6244834e3b982f6cef

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.22.3-cp37-cp37m-manylinux_2_17_i686.manylinux2014_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.22.3-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.22.3-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fc25c050d08f2ae54ee88f6f2f06b19107ea778782bc740eeb03b9d0a496e291
MD5 f274810a3e0820fdb764fd5b73de2769
BLAKE2b-256 80e52d0204053c490d9d5875e88abd3bec1194c614bb83ea8fe8f472ff371dba

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.22.3-cp37-cp37m-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 Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page