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, it also supports editing Unity assets. So far following obj types can be edited:

  • Texture2D
  • Sprite(indirectly via linked Texture2D)
  • TextAsset
  • MonoBehaviour (and all other types that you have the typetree of)

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 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. Those 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. Custom Fileystem
  6. Credits

Installation

Python 3.7.0 or higher is required

via pypi

pip install UnityPy

from source

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 by adding these two lines to your main file.

from UnityPy.helpers import TypeTreeHelper
TypeTreeHelper.read_typetree_boost = False

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.

People 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.

Setting the decryption key for Unity CN's AssetBundle encryption

The chinese version of Unity has its own inbuild 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 UnityPy.set_assetbundle_decrypt_key(key), with key being the value that the game that loads the budles passes to AssetBundle.SetAssetBundleDecryptKey.

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 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 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

All object types can be found in UnityPy/classes.

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 TextFile, so to convert the str back to bytes correctly m_Script.encode("utf-8", "surrogateescape") has to be used.

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. If a type tree exists, it can be used to read the whole data, but if it doesn't exist, then it is usually necessary to investigate the class that loads the specific MonoBehaviour to extract the data. (example)

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

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

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!

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

Uploaded Source

Built Distributions

UnityPy-1.20.13-cp313-cp313-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13 Windows ARM64

UnityPy-1.20.13-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13 Windows x86-64

UnityPy-1.20.13-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13 Windows x86

UnityPy-1.20.13-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.20.13-cp313-cp313-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.2+ i686

UnityPy-1.20.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

UnityPy-1.20.13-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ i686

UnityPy-1.20.13-cp313-cp313-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

UnityPy-1.20.13-cp313-cp313-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.13 macOS 10.13+ x86-64

UnityPy-1.20.13-cp312-cp312-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12 Windows ARM64

UnityPy-1.20.13-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

UnityPy-1.20.13-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12 Windows x86

UnityPy-1.20.13-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.20.13-cp312-cp312-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

UnityPy-1.20.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

UnityPy-1.20.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ i686

UnityPy-1.20.13-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

UnityPy-1.20.13-cp312-cp312-macosx_10_13_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.12 macOS 10.13+ x86-64

UnityPy-1.20.13-cp311-cp311-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11 Windows ARM64

UnityPy-1.20.13-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

UnityPy-1.20.13-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11 Windows x86

UnityPy-1.20.13-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.20.13-cp311-cp311-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

UnityPy-1.20.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

UnityPy-1.20.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ i686

UnityPy-1.20.13-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

UnityPy-1.20.13-cp311-cp311-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

UnityPy-1.20.13-cp310-cp310-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10 Windows ARM64

UnityPy-1.20.13-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

UnityPy-1.20.13-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10 Windows x86

UnityPy-1.20.13-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.20.13-cp310-cp310-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

UnityPy-1.20.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

UnityPy-1.20.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ i686

UnityPy-1.20.13-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

UnityPy-1.20.13-cp310-cp310-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

UnityPy-1.20.13-cp39-cp39-win_arm64.whl (2.5 MB view details)

Uploaded CPython 3.9 Windows ARM64

UnityPy-1.20.13-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

UnityPy-1.20.13-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9 Windows x86

UnityPy-1.20.13-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.20.13-cp39-cp39-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

UnityPy-1.20.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

UnityPy-1.20.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ i686

UnityPy-1.20.13-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

UnityPy-1.20.13-cp39-cp39-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

UnityPy-1.20.13-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

UnityPy-1.20.13-cp38-cp38-win32.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86

UnityPy-1.20.13-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.20.13-cp38-cp38-musllinux_1_2_i686.whl (3.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

UnityPy-1.20.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

UnityPy-1.20.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686

UnityPy-1.20.13-cp38-cp38-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

UnityPy-1.20.13-cp38-cp38-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

UnityPy-1.20.13-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.20.13-cp37-cp37m-musllinux_1_2_i686.whl (3.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.2+ i686

UnityPy-1.20.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

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

UnityPy-1.20.13-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.20.13-cp37-cp37m-macosx_10_9_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for unitypy-1.20.13.tar.gz
Algorithm Hash digest
SHA256 62651ed121dc9a05046306d61c9aa1ca0af8fa207826672f048414cdf17acdee
MD5 c7ac9785f9a29e07c8cbe5fd05bb5895
BLAKE2b-256 b4a05bd4ebabbe1dd89d8bcc5bfec7176d17164031e04795a2f9012db53e8a4a

See more details on using hashes here.

Provenance

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

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 620ad9d6583cb47da031dfdd1294dfb006873bf378b5c7cf12abb82c1d047e70
MD5 cb1ce2952054965cfb3d28757a20ecb7
BLAKE2b-256 045a4815ea77deebf6e3ecdb95ef63c44552f54e975ef01cfbc957663d648255

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp313-cp313-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f742f061415bbf53d7e4dd3056b604df0be7ccc2fcf1cb5989400dd489897baf
MD5 3675558c70dbaee0670b5e86259dc80f
BLAKE2b-256 c50c58c5aba503d2bcbd9837786edb4a0db2a8bc4f83809bd0c188d9ddf9fc4a

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp313-cp313-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp313-cp313-win32.whl.

File metadata

  • Download URL: UnityPy-1.20.13-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 796923304f799cd83a719b0406580b234fa25292673c6a70a72b1aab5101287f
MD5 919d8376f8498604fc3473be82a932b0
BLAKE2b-256 a2a4f5f21aa134013094565d4890ab17e00318ed35ac90698b73963f623b0be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp313-cp313-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 255d5a53b0521b0e71db3ce6563bcbb6f063ef5feb032d617e722ae513427944
MD5 67d862669dcdd1cfcb0a19f1215af796
BLAKE2b-256 18175caf64b6ba98bb8e6a0bb970d3c43a365767f7efa5e6348ffc352b17c791

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 14f06f135c9009041e79f73e9e9876bd8a956d059fa3bd874d4808437862a8b4
MD5 a0b317bd2675bfa62264a6dd1013d760
BLAKE2b-256 859e7c1e209fafddbb363a79a1aeb65434edbe7a46a2a113470486e1b3caffea

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9ec977855abe7fb9f77298fa81488da5140dbdedd8054ddb2cd26847943a5b98
MD5 8c53252fec5c2abf46a03e8142970c7b
BLAKE2b-256 caf22aa09de9641e2bdaba5efcd4c9562e0fba80e297e639d3e1d7c8d77e7f45

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9549e01aea1f12e8be1bc21d7331fe0543274a2941a0340a3e8796f445656c1b
MD5 6c9c6f52019c108ea626b9f877085a1e
BLAKE2b-256 a8c334b5cf829e41bb12e321f0c9ed864f26390d806b3b51a8ecfca6fc093a26

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 170a2baf2b9796cbfd28821aafc2d360097f7bddf21ae6939324bb133231e5ef
MD5 33ab21dc133bbebf0a3f592827836761
BLAKE2b-256 0436a55174cc88b9169fdc5df46fb8e31e856d9baad7e80cf04c6a3549e294c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4a7f7372615f8b4f237e8f679f50ef8cfc4023c1e779e6c262f8fc9759da1671
MD5 058c04e00298803de34da8a8136f4c7e
BLAKE2b-256 064199a2d5688a8d8d7b5d8fdc7d5760679ec758abcce8d231aa94a77f2c26d1

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0e8bb776ec178d21adde2799ec40f9d5d37aa394c6acb231141daf7adf6043f1
MD5 f22b2393daf497ef626f98008cc60404
BLAKE2b-256 2807c5f4d75c0939a1514b1ca1f5dfa1f81afac81599d1f6e09b18cb3004c0b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp312-cp312-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 47956a847e8602cc96cbe1a185f9acc21d0d41968a065e68baca836c159d6412
MD5 e8007b3ecd1f39494849ea05c29616b5
BLAKE2b-256 fa7fb24ce0c386d3fd158de4d98aea63473a876328219055846f86a27b0f3b22

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp312-cp312-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp312-cp312-win32.whl.

File metadata

  • Download URL: UnityPy-1.20.13-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ffe31fcfec5d4a2c1c3690b2a7218be3a71c11d2fd32dd97c73b7cabb6fd7d9a
MD5 d887f04b16b034f315a08c7c7e282ff2
BLAKE2b-256 b080d52226ebae9885f7ccaa42b2d17dac648ca5529f5409694acb6758e6447c

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp312-cp312-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 331d31428bb3bc181ca8fff0f3337d3cf31c66ad3301222dd2938c646de19eab
MD5 c2402ea5c7c9162cb9f31749b58982d6
BLAKE2b-256 a2da6047cd294112b2dd1374b0f0b24340d8e53594b42f871de396e1f60676f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a826402ae27347ebde77d0e58c1d18c7003c38e78cb5c85e68db553500c3968
MD5 936c0088e021b484761eda3d49a33956
BLAKE2b-256 ba4040b58fcfcf6eb4a75c98b186117e80dc303ae97bf62b03fea6be1bcf2c3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66265c234634edde06891ab2488992702493fe12e48e4e9c57421f5822f4d308
MD5 e129c4393cba96a1699db3d6a831ecb7
BLAKE2b-256 304dba80197a3b334929d89ac9df7e4389363146155e8c2bbc7c7679c3a707a4

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 b58267119266912801fb8abca2d98070b79af372cd53529dc53e6a9f6b1b7950
MD5 b201ee9673b22c0c7c27a95fecc78a3e
BLAKE2b-256 f4c376870dab3d233f355f1e3931e81be8cb83946ec4f8757944d4b92a52ef42

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e2f1fe6d674f938c058199694946979619e8a524269bd56cbf3fa8968cf0e8d0
MD5 8b7b70139a971460269373118a8c1b47
BLAKE2b-256 27b135fadfa9dd1b8b201c7dd0ec28acb3234419b961c37269f9abb4f82eea5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 85a7b88c54377426c72e8d3147c063291b9540aedfad58f09dda333c6e05808c
MD5 ead6586a6a375f8bcc7b240e14aa109e
BLAKE2b-256 d0b4f6d82be6f76d30fd4bfa9295cd192f6744f1a238aafb6ef4f6f54ba091f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9335d00b3e299f82dd378dc00d7b65cef7ad80cdf2addde618d33b2b18256dff
MD5 6b82d45199a1f594b0b76f9a0321b8bf
BLAKE2b-256 4963c1033f728f4ca97cde6254189a42f0520475ed2bbe1016a5a30b81db99b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp311-cp311-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e78e2077f4294a49529d01f9766b9811011da4500515bc68e25b04d0a4a24809
MD5 b3873bcad7e621dc619ee16b689a6313
BLAKE2b-256 e3f9a1ac3861593168919d3da3ee1c2575509f96f22e4102f98a3e1e969c4803

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp311-cp311-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp311-cp311-win32.whl.

File metadata

  • Download URL: UnityPy-1.20.13-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8b0c726d1898095b8f6e8b7f36165ffacc9c05b9434831b625dee905429d1327
MD5 fc3726591912f92ac39aa2354d4ee24d
BLAKE2b-256 7334145cf5503a811121909b88fb8dbd19a1a65375be9cf3b552d21fcee2f1cb

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp311-cp311-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bb0382885ea424d120bc04c98931721460c72282f30c88144d3e5353e3b40f1
MD5 b77583dc78248be149a2809a34169e16
BLAKE2b-256 dd00fa85f4f4e439fbaf3e69326f17193cba4c4bcd3abd273896f4ba935b49e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4c1ba9ca912bd8c8281465d056e87f06c0234da0e45b72afe36ddd712ec81917
MD5 4c01cd0c5897aa7049b5976436a13ae0
BLAKE2b-256 15bf7f713d720794d6156e841b7542c800679e55272017369355fe9a15355f4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 873ddda564710daee1bb687ff7b7122bd46e558b1d467dc9c41946bc9491a235
MD5 e3e42bc96274eb4e304c543194cd616f
BLAKE2b-256 e6d9b90f57ec63c5412058c292866f4a2d12d58de8dfca4d4869520b3d66079f

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 73874e03422b6f9fc82e6744a5b218d3e0ba34b37e6035ba858c8ea26699f494
MD5 5c0b1682cd35ac169e40fd08a37a6c31
BLAKE2b-256 abdd0fbc614f88630075f5a6794e07f63769aac070380cf9a733884b8e15036e

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0854e58de2b99834a6796cd647842ae79db512daa0e3d3b0eb11119a3bae3f78
MD5 74835b626ab1ba19aefd81d04e5ce923
BLAKE2b-256 40b3f86688fbcf1518b90854b836fa0a45c6934fd57473ffcd1ef0f429744d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 280483fa0b7c20b190025f06789c969900a7fe9480904a40e4affb376d3cf85a
MD5 ce79d6124691d8e9ea015c4ab8c15967
BLAKE2b-256 9a3677a820148c197217d786353a41e5de2487bea99cb9ffda00c923438d7f59

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp310-cp310-win_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 cf4725181e3ffc9b8eeae695150f3bc4f35d80005c00e5336b49d11c947dd054
MD5 e2b72cf897ad94d5a8f0420829d2e5f6
BLAKE2b-256 0d18271deec6341823d675dce83632c61e71e109ec039a03b30ea0acc244d1e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp310-cp310-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 70660f27ee8ccb1f9457afce8078f58cccd30a953bc6d2d45eb4960a87db9807
MD5 0bc17026649a270fef21a474b7e0b892
BLAKE2b-256 7ac1c7cceaec1f2c74bc2daec964471a16c091b07a114a7bc372c6035eb3ada3

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp310-cp310-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp310-cp310-win32.whl.

File metadata

  • Download URL: UnityPy-1.20.13-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7e261eaaf93a1bc4a6c827586c39869b00106113c64032a0c66e6b70259f7bd3
MD5 6039fbebc774b6e9c262d23826643597
BLAKE2b-256 6449c4a90642099bfda5788adb4e9fdb0bcbeb3994faf64a3fb335f990b3745a

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp310-cp310-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07cd6b10da9ef195835ce831e57c2eac45a8904943c6611ba26adaef711d6698
MD5 06c7be1ed5264766d0c6da975a8093e2
BLAKE2b-256 a74dee4b9360c1d1d266f737c04978ee67042bc4faa08429bf34504d58196039

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d074d0f277417acc68476778bcbb3a1f36dd393331578659cfca9fd1462b4fb6
MD5 6a08eb73eeafaf428affd28f95c3f786
BLAKE2b-256 8c9b691b977dbf97f965a56514cef46d61ef5b27df075d6383b4493e1266d122

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7c3fab45ec0e6efd252949f1a24f922ce4551a6d3e24adaeb02b07c5fbc005b0
MD5 d28e1764d7e6b03461c3dd3c55e0bb05
BLAKE2b-256 e94ce271978a5540e7c4942410a6690bd6e2f7f86365298e84b4f24dbe7e8dfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 f708faa2e87763c826b8e059c4dd1eb5508bf2576cc26afdb7df570a600136a0
MD5 594ef1cb7e49ff565b008fa6aff3cee5
BLAKE2b-256 b2fb87e6aa227f78824c3dd5354755a1d4ac1735466dc2ee07f4626ea5ca93bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 863639cf9811d35d5273736431870bd0570f55f3b13f5580b48daced5171ba4a
MD5 87c43c3bb4c64d50bcd7ecfa7c419bc8
BLAKE2b-256 c4f348d23510f4336e8ee30524aaa50732f9868105f179672b80cccc8037a736

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36c573631ee51049f8e8ac5f3244b0b5158d26e2a2c02be06a4203d39ef3a782
MD5 0eb3a39c41d8a00b780596492d42c1af
BLAKE2b-256 f7c810cba867d683fc62a7bd33935f590a4e03c50db3faf4d6a3704e10d9e9d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp39-cp39-win_arm64.whl.

File metadata

  • Download URL: UnityPy-1.20.13-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/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp39-cp39-win_arm64.whl
Algorithm Hash digest
SHA256 a9eb6ab8a2243f0084605176ec976fa63467ad1f25433907198acaa303bd2803
MD5 94b0b777ca389798402a35f7880180e2
BLAKE2b-256 9358cdb5c299bd4b1be1acba08b5ac25ee6e08d3ded1d0459e7642ce9e5c5260

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp39-cp39-win_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: UnityPy-1.20.13-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/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 cea81d7f2e51f1d41c37f9bc14d5734f57d45019e743e4ff3b94750badf759f6
MD5 95152739eb399f62bf1c0d903916d9a8
BLAKE2b-256 32a99dbeb936fc2a143e1d5dff00a44bcf65dbd4e6fb31f606298691adee1be4

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp39-cp39-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp39-cp39-win32.whl.

File metadata

  • Download URL: UnityPy-1.20.13-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 50a6bf08c1a2d4aab764953b176142998bddc2b71b587e57497b6cc1d45d584c
MD5 d588db6668743fc376af4d2e04262f56
BLAKE2b-256 2c3f3cc1174ce1b918f70d1d489b38f03c2cb04bcd60aa02c26b6d93b9d168dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp39-cp39-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4449a4dcb5270205d3118363c569458176d95b1d9931009806aa3212efe8a642
MD5 3876d51b0d3132b4293d5a3a2036d1a7
BLAKE2b-256 5fcf945db47d3f0a3f135a9466884e17972c95f8e80279fd6b32105968b25962

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp39-cp39-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bbb51d46ebe9f3f57d903599fe923ecbcc3ec8900d54650b7c65cdfba9b0481c
MD5 bb9b8ac549b9dc55b6b4278c6ff99c30
BLAKE2b-256 23475015fdb6d09fb113f32eefb793adf51bbf9f6c41719c3bf2d03c3efb3cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp39-cp39-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30ec854eac7f031e7f9c759996f8989552d91b1b446da2f3e77170223d629cc4
MD5 895717f55e0f06bf1521af0dfd1391f4
BLAKE2b-256 9677145782a222ce27c9d650457d9d925c15e5dd085547566102429afd0cccf8

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 286c31b2e820dd47ddc429c582054695662438d61036ae70cfda215fb5d64f92
MD5 a916e17dcaa2404463afa4c6487822cd
BLAKE2b-256 024bc078f25bc08b430d5125b650c478cafc7cf3c559c7ba913747fea6838950

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e1b79a149801034e01af787e3095fad0d183cb15bc513207130bfe934d4aec84
MD5 2c263e86ac3a175f7f55082e277ccec0
BLAKE2b-256 8bbd592e38a065ce76066807bccca055756e4e0b91b67d8afe191d9d11fc8b15

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5ea76059a106b67e5e8f64ab55c83c67c5ec97a7210bf4ba9f13d968eb11aa36
MD5 7986c617841fa9d977335bc08ada2458
BLAKE2b-256 69ac19da247c216fb924f35f82ad20fd1945b853df3470e4e1b09f799520169f

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp39-cp39-macosx_10_9_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: UnityPy-1.20.13-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/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 18389b8c4b1f5bea9e92550c09dd2c177bada355747959cdc79dc1bf41297978
MD5 e16f21d0d7b0bbd8268d06ce37dfba53
BLAKE2b-256 c23f3f92db5465fc44fe809faa7ef5c15f2c16bb2d2cfbb793d1389d084e982e

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp38-cp38-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp38-cp38-win32.whl.

File metadata

  • Download URL: UnityPy-1.20.13-cp38-cp38-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 22573c70e5c1e84d1076190c24213d165892035fcbf312ba584ea376b5095e66
MD5 bec60f5b6d4702982ceb4608ec1cd2a9
BLAKE2b-256 7d5f02dc11bf5b64b9a4330a1450b216376523ddff656aefd0c4b5978eb87c2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp38-cp38-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4444d3a39163374305bd5696115600f64feae2c0a16d78310c03ab1dcf014ad
MD5 1e9f417a3a1a54ac278a9f7fef095a44
BLAKE2b-256 e6e4e6a1734c285ed1e390f59902449150f0ab3eaf38999e80ca155f6e629da7

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp38-cp38-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 628452e35627bf8dacab07d70637a370793acd8299498a3d8097eb48a57e4626
MD5 b11439c43cd7eac00502d3748b88fb16
BLAKE2b-256 ea7b8b985a82073f08abc1e239b4bf8274d4474e11483f2d11eae632c2feacad

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp38-cp38-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3f3eb6bdf9678a2d3991048c46695c52a120f4c2d051dafce26aef9ead696c4
MD5 3f3b0c77a09435f58fd68f4a0221e40d
BLAKE2b-256 c996821a456dedf8ffa5cf3e455ac0f771839b54dc3eef23b8ca8ae6082de361

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 2d75ab3e83da7bea16982cc52aa71ad31bcd8f534b56490c1592826833553c35
MD5 9096b4bd588de3d981db7b36591d72be
BLAKE2b-256 df5ce0da51582b32273a13e2376a33637ba2b4dd7ce719b5e94e7becb25b6519

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66d525785044da7e4a4f3e7d560e1020a2733120cef5b1d19edabd6e2ac3daea
MD5 7cc09cd1a19f8c16f81d3891dbbf4376
BLAKE2b-256 d778043462db0c4f9089e5a154e5628ee8463a730d3e55d35f1aa54682191c1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 05230f23ceacfb36de5ee15e7f171f6f29bdfae1f1f9e22e07a4fca79c56595f
MD5 cb32d3cbd874322a9b0f40b1b4d8ebb3
BLAKE2b-256 651f03f614e3ac40650073f5e9c7d1fdf82b9dc0ea5100c64c1a28b9e11ce8c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp38-cp38-macosx_10_9_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

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

File metadata

  • Download URL: UnityPy-1.20.13-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/5.1.1 CPython/3.12.7

File hashes

Hashes for UnityPy-1.20.13-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 06db5112b82da6722a60bedb7f11d0f8f382f921207f1e15cfdaf0c23dcf0fd8
MD5 59d0b8d2583565e3df5ea06f477a62ef
BLAKE2b-256 3385801af7445251042fb3c13ad359447e8854f9f609864dd14a10495650738b

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp37-cp37m-win_amd64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp37-cp37m-win32.whl.

File metadata

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

File hashes

Hashes for UnityPy-1.20.13-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 fb9f577060e1fd7a80d92205a192edbebdbf4519959d984d4e0840f493795825
MD5 989e45350a371203212de772eaeb5bc0
BLAKE2b-256 7b1666a6fa14490f7ff62c96393dec357888310c403a5ea468c27de52e57d639

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp37-cp37m-win32.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp37-cp37m-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp37-cp37m-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e8c51c2819288678bb69ea63552aa85217c8200c56eaff929ea24ba91c361003
MD5 e3a47e6f4af8024635dc3faac55aba6b
BLAKE2b-256 ff10967de960ed534afdaff7a393ea13d469daa68b2a7311c79d9f76165f9b84

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp37-cp37m-musllinux_1_2_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp37-cp37m-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp37-cp37m-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 33692a857a490a8f46d0d3f1d1bef81401c9a081f4f161355e5efc4a51394c6c
MD5 762e634bdef4d40b15f30d57acfd3234
BLAKE2b-256 a867944f1921aea0c3d9e645f0f2f2885ce996f2b859c12e8d5bafc83cdb91c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp37-cp37m-musllinux_1_2_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 772e2ff9a5c98974b4e0ad040cfb549b577e47daaebb54edaed6d5114854bdaa
MD5 974d03e1d2776118b09ef7823e83b541
BLAKE2b-256 254967acd029a872da8db7617412d8ce4858195f4b14683145e00dd5e9015721

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d734d54686f276223412e566e8bf3afc5ff67c16cc29fdf8e881d1d767d1cc4a
MD5 71ae96558d6e33880122b97725f01c21
BLAKE2b-256 4d4e7a8e30e20c8660b61493072e341a7c77d2eb41b1f69dca1cba2c6af9ac92

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

File details

Details for the file UnityPy-1.20.13-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for UnityPy-1.20.13-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f49fbe3ba4d5c1af6cb56c4ed83a10291d778eefc09ed7c58b2e4ee7fb5f7067
MD5 3b154a834827d3bf0778396b198c1a72
BLAKE2b-256 ff88f6405cefa23df0a30ee642fa222d6816b1ace8d9d047a0b599d889eb0a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for UnityPy-1.20.13-cp37-cp37m-macosx_10_9_x86_64.whl:

Publisher: release.yml on K0lb3/UnityPy

Attestations:

Supported by

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