UnityPy


NameUnityPy JSON
Version 1.21.0 PyPI version JSON
download
home_pageNone
SummaryA Unity extraction and patching package
upload_time2025-02-17 22:46:32
maintainerNone
docs_urlNone
authorNone
requires_python>=3.7
licenseMIT License Copyright (c) 2019-2021 K0lb3 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords python unity unity-asset python3 data-minig unitypack assetstudio unity-asset-extractor
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # UnityPy

[![Discord server invite](https://discordapp.com/api/guilds/603359898507673630/embed.png)](https://discord.gg/C6txv7M)
[![PyPI supported Python versions](https://img.shields.io/pypi/pyversions/UnityPy.svg)](https://pypi.python.org/pypi/UnityPy)
[![Win/Mac/Linux](https://img.shields.io/badge/platform-windows%20%7C%20macos%20%7C%20linux-informational)]()
[![MIT](https://img.shields.io/github/license/K0lb3/UnityPy)](https://github.com/K0lb3/UnityPy/blob/master/LICENSE)
![Test](https://github.com/K0lb3/UnityPy/workflows/Test/badge.svg)

A Unity asset extractor for Python based on [AssetStudio](https://github.com/Perfare/AssetStudio).

Next to extraction, UnityPy also supports editing Unity assets.
Via the typetree structure all objects types can be edited.
```py
# 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](https://discord.gg/C6txv7M).

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.

```python
if UnityPy.__version__ != '1.9.6':
    raise ImportError("Invalid UnityPy version detected. Please use version 1.9.6")
```

1. [Installation](#installation)
2. [Example](#example)
3. [Important Classes](#important-classes)
4. [Important Object Types](#important-object-types)
5. [Custom Fileystem](#custom-filesystem)
6. [Credits](#credits)

## Installation

**Python 3.7.0 or higher is required**

via pypi

```cmd
pip install UnityPy
```

from source

```cmd
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](https://github.com/K0lb3/UnityPy/issues/223) 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.

```python
from UnityPy.helpers import TypeTreeHelper
TypeTreeHelper.read_typetree_boost = False
```

## Example

The following is a simple example.

```python
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](#important-classes)
and [Important Object Types](#important-object-types) to understand how it works.

People with slightly advanced python skills should look at [UnityPy/tools/extractor.py](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](UnityPy/environment.py)

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.

```python
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](UnityPy/files/SerializedFile.py)

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](UnityPy/files/ObjectReader.py)

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](UnityPy/classes/).

### [Texture2D](UnityPy/classes/Texture2D.py)

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

**Export**

```python
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](UnityPy/classes/Sprite.py)

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

```python
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](UnityPy/classes/TextAsset.py)

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

```python
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](UnityPy/classes/MonoBehaviour.py)

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

```python
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.

```py
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](UnityPy/classes/AudioClip.py)

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

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

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

### [Font](UnityPy/classes/Font.py)

```python
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](UnityPy/classes/Mesh.py)

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

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

```python
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.

```python
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](UnityPy/classes/Texture2DArray.py)

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

```python
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](https://github.com/fsspec/filesystem_spec) 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:

-   [Perfare](https://github.com/Perfare) for creating and maintaining and every contributor of [AssetStudio](https://github.com/Perfare/AssetStudio)
-   [ds5678](https://github.com/ds5678) for the [TypeTreeDumps](https://github.com/AssetRipper/TypeTreeDumps) and the [custom minimal Tpk format](https://github.com/AssetRipper/Tpk)
-   [Razmoth](https://github.com/Razmoth) for figuring out and sharing Unity CN's AssetBundle decryption ([src](https://github.com/Razmoth/PGRStudio)).
-   [nesrak1](https://github.com/nesrak1) for figuring out the [Switch texture swizzling](https://github.com/nesrak1/UABEA/blob/master/TexturePlugin/Texture2DSwitchDeswizzler.cs)
-   xiop_13690 (discord) for figuring out unsolved issues of the ManagedReferencesRegistry

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "UnityPy",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.7",
    "maintainer_email": null,
    "keywords": "python, unity, unity-asset, python3, data-minig, unitypack, assetstudio, unity-asset-extractor",
    "author": null,
    "author_email": "Rudolf Kolbe <rkolbe96@gmail.com>",
    "download_url": "https://files.pythonhosted.org/packages/0f/13/a858a4425c8b251aa754a80c908d668375cb39e4406e4c10ee4273bbc1fa/unitypy-1.21.0.tar.gz",
    "platform": null,
    "description": "# UnityPy\n\n[![Discord server invite](https://discordapp.com/api/guilds/603359898507673630/embed.png)](https://discord.gg/C6txv7M)\n[![PyPI supported Python versions](https://img.shields.io/pypi/pyversions/UnityPy.svg)](https://pypi.python.org/pypi/UnityPy)\n[![Win/Mac/Linux](https://img.shields.io/badge/platform-windows%20%7C%20macos%20%7C%20linux-informational)]()\n[![MIT](https://img.shields.io/github/license/K0lb3/UnityPy)](https://github.com/K0lb3/UnityPy/blob/master/LICENSE)\n![Test](https://github.com/K0lb3/UnityPy/workflows/Test/badge.svg)\n\nA Unity asset extractor for Python based on [AssetStudio](https://github.com/Perfare/AssetStudio).\n\nNext to extraction, UnityPy also supports editing Unity assets.\nVia the typetree structure all objects types can be edited.\n```py\n# modification via dict:\n    raw_dict = obj.read_typetree()\n    # modify raw dict\n    obj.save_typetree(raw_dict)\n# modification via parsed class\n    instance = obj.read()\n    # modify instance\n    obj.save(instance)\n```\n\nIf you need advice or if you want to talk about (game) data-mining,\nfeel free to join the [UnityPy Discord](https://discord.gg/C6txv7M).\n\nIf you're using UnityPy a commercial project,\na donation to a charitable cause or a sponsorship of this project is expected.\n\n**As UnityPy is still in active development breaking changes can happen.**\nThose changes are usually limited to minor versions (x.y) and not to patch versions (x.y.z).\nSo in case that you don't want to actively maintain your project,\nmake sure to make a note of the used UnityPy version in your README or add a check in your code.\ne.g.\n\n```python\nif UnityPy.__version__ != '1.9.6':\n    raise ImportError(\"Invalid UnityPy version detected. Please use version 1.9.6\")\n```\n\n1. [Installation](#installation)\n2. [Example](#example)\n3. [Important Classes](#important-classes)\n4. [Important Object Types](#important-object-types)\n5. [Custom Fileystem](#custom-filesystem)\n6. [Credits](#credits)\n\n## Installation\n\n**Python 3.7.0 or higher is required**\n\nvia pypi\n\n```cmd\npip install UnityPy\n```\n\nfrom source\n\n```cmd\ngit clone https://github.com/K0lb3/UnityPy.git\ncd UnityPy\npython -m pip install .\n```\n\n### Notes\n\n#### Windows\n\nVisual C++ Redistributable is required for the brotli dependency.\nIn case a new(ish) Python version is used, it can happen that the C-dependencies of UnityPy might not be precompiled for this version.\nIn such cases the user either has to report this as issue or follow the steps of [this issue](https://github.com/K0lb3/UnityPy/issues/223) to compile it oneself.\nAnother 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.\n\n### Crash without warning/error\n\nThe C-implementation of the typetree reader can directly crash python.\nIn case this happens, the usage of the C-typetree reader can be disabled by adding these two lines to your main file.\n\n```python\nfrom UnityPy.helpers import TypeTreeHelper\nTypeTreeHelper.read_typetree_boost = False\n```\n\n## Example\n\nThe following is a simple example.\n\n```python\nimport os\nimport UnityPy\n\ndef unpack_all_assets(source_folder : str, destination_folder : str):\n    # iterate over all files in source folder\n    for root, dirs, files in os.walk(source_folder):\n        for file_name in files:\n            # generate file_path\n            file_path = os.path.join(root, file_name)\n            # load that file via UnityPy.load\n            env = UnityPy.load(file_path)\n\n            # iterate over internal objects\n            for obj in env.objects:\n                # process specific object types\n                if obj.type.name in [\"Texture2D\", \"Sprite\"]:\n                    # parse the object data\n                    data = obj.read()\n\n                    # create destination path\n                    dest = os.path.join(destination_folder, data.name)\n\n                    # make sure that the extension is correct\n                    # you probably only want to do so with images/textures\n                    dest, ext = os.path.splitext(dest)\n                    dest = dest + \".png\"\n\n                    img = data.image\n                    img.save(dest)\n\n            # alternative way which keeps the original path\n            for path,obj in env.container.items():\n                if obj.type.name in [\"Texture2D\", \"Sprite\"]:\n                    data = obj.read()\n                    # create dest based on original path\n                    dest = os.path.join(destination_folder, *path.split(\"/\"))\n                    # make sure that the dir of that path exists\n                    os.makedirs(os.path.dirname(dest), exist_ok = True)\n                    # correct extension\n                    dest, ext = os.path.splitext(dest)\n                    dest = dest + \".png\"\n                    data.image.save(dest)\n```\n\nYou probably have to read [Important Classes](#important-classes)\nand [Important Object Types](#important-object-types) to understand how it works.\n\nPeople with slightly advanced python skills should look at [UnityPy/tools/extractor.py](UnityPy/tools/extractor.py) for a more advanced example.\nIt can also be used as a general template or as an importable tool.\n\n### Setting the decryption key for Unity CN's AssetBundle encryption\n\nThe 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.\nTo 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`.\n\n## Important Classes\n\n### [Environment](UnityPy/environment.py)\n\nEnvironment loads and parses the given files.\nIt can be initialized via:\n\n-   a file path - apk files can be loaded as well\n-   a folder path - loads all files in that folder (bad idea for folders with a lot of files)\n-   a stream - e.g., io.BytesIO, file stream,...\n-   a bytes object - will be loaded into a stream\n\nUnityPy can detect if the file is a WebFile, BundleFile, Asset, or APK.\n\nThe unpacked assets will be loaded into `.files`, a dict consisting of `asset-name : asset`.\n\nAll objects of the loaded assets can be easily accessed via `.objects`,\nwhich itself is a simple recursive iterator.\n\n```python\nimport io\nimport UnityPy\n\n# all of the following would work\nsrc = \"file_path\"\nsrc = b\"bytes\"\nsrc = io.BytesIO(b\"Streamable\")\n\nenv = UnityPy.load(src)\n\nfor obj in env.objects:\n    ...\n\n# saving an edited file\n    # apply modifications to the objects\n    # don't forget to use data.save()\n    ...\nwith open(dst, \"wb\") as f:\n    f.write(env.file.save())\n```\n\n### [Asset](UnityPy/files/SerializedFile.py)\n\nAssets are a container that contains multiple objects.\nOne of these objects can be an AssetBundle, which contains a file path for some of the objects in the same asset.\n\nAll objects can be found in the `.objects` dict - `{ID : object}`.\n\nThe objects with a file path can be found in the `.container` dict - `{path : object}`.\n\n### [Object](UnityPy/files/ObjectReader.py)\n\nObjects contain the _actual_ files, e.g., textures, text files, meshes, settings, ...\n\nTo 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.\n\n## Important Object Types\n\nAll object types can be found in [UnityPy/classes](UnityPy/classes/).\n\n### [Texture2D](UnityPy/classes/Texture2D.py)\n\n-   `.m_Name`\n-   `.image` converts the texture into a `PIL.Image`\n-   `.m_Width` - texture width (int)\n-   `.m_Height` - texture height (int)\n\n**Export**\n\n```python\nfrom PIL import Image\nfor obj in env.objects:\n    if obj.type.name == \"Texture2D\":\n        # export texture\n        data = obj.read()\n        path = os.path.join(export_dir, f\"{data.m_Name}.png\")\n        data.image.save(path)\n        # edit texture\n        fp = os.path.join(replace_dir, f\"{data.m_Name}.png\")\n        pil_img = Image.open(fp)\n        data.image = pil_img\n        data.save()\n```\n\n### [Sprite](UnityPy/classes/Sprite.py)\n\nSprites are part of a texture and can have a separate alpha-image as well.\nUnlike most other extractors (including AssetStudio), UnityPy merges those two images by itself.\n\n-   `.m_Name`\n-   `.image` - converts the merged texture part into a `PIL.Image`\n-   `.m_Width` - sprite width (int)\n-   `.m_Height` - sprite height (int)\n\n**Export**\n\n```python\nfor obj in env.objects:\n    if obj.type.name == \"Sprite\":\n        data = obj.read()\n        path = os.path.join(export_dir, f\"{data.m_Name}.png\")\n        data.image.save(path)\n```\n\n### [TextAsset](UnityPy/classes/TextAsset.py)\n\nTextAssets are usually normal text files.\n\n-   `.m_Name`\n-   `.m_Script` - str\n\nSome 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.\n\n**Export**\n\n```python\nfor obj in env.objects:\n    if obj.type.name == \"TextAsset\":\n        # export asset\n        data = obj.read()\n        path = os.path.join(export_dir, f\"{data.m_Name}.txt\")\n        with open(path, \"wb\") as f:\n            f.write(data.m_Script.encode(\"utf-8\", \"surrogateescape\"))\n        # edit asset\n        fp = os.path.join(replace_dir, f\"{data.m_Name}.txt\")\n        with open(fp, \"rb\") as f:\n            data.m_Script = f.read().decode(\"utf-8\", \"surrogateescape\"))\n        data.save()\n```\n\n### [MonoBehaviour](UnityPy/classes/MonoBehaviour.py)\n\nMonoBehaviour assets are usually used to save the class instances with their values.\nThe structure/typetree for these classes might not be contained in the asset files.\nIn such cases see the 2nd example (TypeTreeGenerator) below.\n\n-   `.m_Name`\n-   `.m_Script`\n\n**Export**\n\n```python\nimport json\n\nfor obj in env.objects:\n    if obj.type.name == \"MonoBehaviour\":\n        # export\n        if obj.serialized_type.node:\n            # save decoded data\n            tree = obj.read_typetree()\n            fp = os.path.join(extract_dir, f\"{tree['m_Name']}.json\")\n            with open(fp, \"wt\", encoding = \"utf8\") as f:\n                json.dump(tree, f, ensure_ascii = False, indent = 4)\n\n        # edit\n        if obj.serialized_type.node:\n            tree = obj.read_typetree()\n            # apply modifications to the data within the tree\n            obj.save_typetree(tree)\n        else:\n            data = obj.read(check_read=False)\n            with open(os.path.join(replace_dir, data.m_Name)) as f:\n                data.save(raw_data = f.read())\n```\n\n**TypeTreeGenerator**\n\nUnityPy can generate the typetrees of MonoBehaviours from the game assemblies using an optional package, ``TypeTreeGeneratorAPI``, which has to be installed via pip.\nUnityPy will automatically try to generate the typetree of MonoBehaviours if the typetree is missing in the assets and ``env.typetree_generator`` is set.\n\n```py\nimport UnityPy\nfrom UnityPy.helpers.TypeTreeGenerator import TypeTreeGenerator\n\n# create generator\nGAME_ROOT_DIR: str\n# e.g. r\"D:\\Program Files (x86)\\Steam\\steamapps\\common\\Aethermancer Demo\"\nGAME_UNITY_VERSION: str\n# you can get the version via an object\n# e.g. objects[0].assets_file.unity_version\n\ngenerator = TypeTreeGenerator(GAME_UNITY_VERSION)\ngenerator.load_local_game(GAME_ROOT_DIR)\n# generator.load_local_game(root_dir: str) - for a Windows game\n# generator.load_dll_folder(dll_dir: str) - for mono / non-il2cpp or generated dummies\n# generator.load_dll(dll: bytes)\n# generator.load_il2cpp(il2cpp: bytes, metadata: bytes)\n\nenv = UnityPy.load(fp)\n# assign generator to env\nenv.typetree_generator = generator\nfor obj in objects:\n    if obj.type.name == \"MonoBehaviour\":\n        # automatically tries to use the generator in the background if necessary\n        x = obj.read()\n```\n\n\n### [AudioClip](UnityPy/classes/AudioClip.py)\n\n-   `.samples` - `{sample-name : sample-data}`\n\nThe samples are converted into the .wav format.\nThe sample data is a .wav file in bytes.\n\n```python\nclip : AudioClip\nfor name, data in clip.samples.items():\n    with open(name, \"wb\") as f:\n        f.write(data)\n```\n\n### [Font](UnityPy/classes/Font.py)\n\n```python\nif obj.type.name == \"Font\":\n    font : Font = obj.read()\n    if font.m_FontData:\n        extension = \".ttf\"\n        if font.m_FontData[0:4] == b\"OTTO\":\n            extension = \".otf\"\n\n    with open(os.path.join(path, font.m_Name+extension), \"wb\") as f:\n        f.write(font.m_FontData)\n```\n\n### [Mesh](UnityPy/classes/Mesh.py)\n\n-   `.export()` - mesh exported as .obj (str)\n\nThe mesh will be converted to the Wavefront .obj file format.\n\n```python\nmesh : Mesh\nwith open(f\"{mesh.m_Name}.obj\", \"wt\", newline = \"\") as f:\n    # newline = \"\" is important\n    f.write(mesh.export())\n```\n\n### Renderer, MeshRenderer, SkinnedMeshRenderer\n\nALPHA-VERSION\n\n-   `.export(export_dir)` - exports the associated mesh, materials, and textures into the given directory\n\nThe mesh and materials will be in the Wavefront formats.\n\n```python\nmesh_renderer : Renderer\nexport_dir: str\n\nif mesh_renderer.m_GameObject:\n    # get the name of the model\n    game_object = mesh_renderer.m_GameObject.read()\n    export_dir = os.path.join(export_dir, game_object.m_Name)\nmesh_renderer.export(export_dir)\n```\n\n### [Texture2DArray](UnityPy/classes/Texture2DArray.py)\n\nWARNING - not well tested\n\n-   `.m_Name`\n-   `.image` converts the texture2darray into a `PIL.Image`\n-   `.m_Width` - texture width (int)\n-   `.m_Height` - texture height (int)\n\n**Export**\n\n```python\nimport os\nfrom PIL import Image\nfor obj in env.objects:\n    if obj.type.name == \"Texture2DArray\":\n        # export texture\n        data = obj.read()\n        for i, image in enumerate(data.images):\n            image.save(os.path.join(path, f\"{data.m_Name}_{i}.png\"))\n        # editing isn't supported yet!\n```\n\n## Custom-Filesystem\n\nUnityPy uses [fsspec](https://github.com/fsspec/filesystem_spec) under the hood to manage all filesystem interactions.\nThis allows using various different types of filesystems without having to change UnityPy's code.\nIt 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.\n\nFollowing methods of the filesystem have to be implemented for using it in UnityPy.\n\n-   sep (not a function, just the seperator as character)\n-   isfile(self, path: str) -> bool\n-   isdir(self, path: str) -> bool\n-   exists(self, path: str, \\*\\*kwargs) -> bool\n-   walk(self, path: str, \\*\\*kwargs) -> Iterable[List[str], List[str], List[str]]\n-   open(self, path: str, mode: str = \"rb\", \\*\\*kwargs) -> file (\"rb\" mode required, \"wt\" required for ModelExporter)\n-   makedirs(self, path: str, exist_ok: bool = False) -> bool\n\n## Credits\n\nFirst of all,\nthanks a lot to all contributors of UnityPy and all of its users.\n\nAlso,\nmany thanks to:\n\n-   [Perfare](https://github.com/Perfare) for creating and maintaining and every contributor of [AssetStudio](https://github.com/Perfare/AssetStudio)\n-   [ds5678](https://github.com/ds5678) for the [TypeTreeDumps](https://github.com/AssetRipper/TypeTreeDumps) and the [custom minimal Tpk format](https://github.com/AssetRipper/Tpk)\n-   [Razmoth](https://github.com/Razmoth) for figuring out and sharing Unity CN's AssetBundle decryption ([src](https://github.com/Razmoth/PGRStudio)).\n-   [nesrak1](https://github.com/nesrak1) for figuring out the [Switch texture swizzling](https://github.com/nesrak1/UABEA/blob/master/TexturePlugin/Texture2DSwitchDeswizzler.cs)\n-   xiop_13690 (discord) for figuring out unsolved issues of the ManagedReferencesRegistry\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2019-2021 K0lb3\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.\n        ",
    "summary": "A Unity extraction and patching package",
    "version": "1.21.0",
    "project_urls": {
        "Bug Tracker": "https://github.com/K0lb3/UnityPy/issues",
        "Homepage": "https://github.com/K0lb3/UnityPy"
    },
    "split_keywords": [
        "python",
        " unity",
        " unity-asset",
        " python3",
        " data-minig",
        " unitypack",
        " assetstudio",
        " unity-asset-extractor"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "356644ff0f8d115b5483701e213c6c1fb3ecf4b6558f572b4992691df6f3f2b8",
                "md5": "9650abb6a2ef6405511dfcdd4fa26b52",
                "sha256": "2de7cde4d852144f921df4efc89a57ad7fc3935e2ad11a0cbfd29151a381d145"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "9650abb6a2ef6405511dfcdd4fa26b52",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1655229,
            "upload_time": "2025-02-17T22:44:05",
            "upload_time_iso_8601": "2025-02-17T22:44:05.391469Z",
            "url": "https://files.pythonhosted.org/packages/35/66/44ff0f8d115b5483701e213c6c1fb3ecf4b6558f572b4992691df6f3f2b8/UnityPy-1.21.0-cp310-cp310-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3aa7325b9687069adc52528efe807b687e5f8f9ba700dbf2c8767d0c4fd0b3dc",
                "md5": "13fa83b35e5ba11d0824d695ff91edbb",
                "sha256": "2aa677f5936c6328f3aaa560ea93e40cad233e1758bf3dda534fec2046fbaccb"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp310-cp310-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "13fa83b35e5ba11d0824d695ff91edbb",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1653231,
            "upload_time": "2025-02-17T22:44:10",
            "upload_time_iso_8601": "2025-02-17T22:44:10.328650Z",
            "url": "https://files.pythonhosted.org/packages/3a/a7/325b9687069adc52528efe807b687e5f8f9ba700dbf2c8767d0c4fd0b3dc/UnityPy-1.21.0-cp310-cp310-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2cb93cef6e9b5caab6007393ca8a79761e621334ff01b425f23854a38c2dfd12",
                "md5": "630fabe2b7b2882095284d21baf0810a",
                "sha256": "d4b55e991c5a6f76d907eeead11e463f2b4d01bb58db1b41a260f3c5bae49403"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "630fabe2b7b2882095284d21baf0810a",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2050858,
            "upload_time": "2025-02-17T22:44:12",
            "upload_time_iso_8601": "2025-02-17T22:44:12.946438Z",
            "url": "https://files.pythonhosted.org/packages/2c/b9/3cef6e9b5caab6007393ca8a79761e621334ff01b425f23854a38c2dfd12/UnityPy-1.21.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "1afcf64caad7a4d08ae2caddaae7999cc98273a8a048c9c554c7299a30d5a56e",
                "md5": "dff69b1a047558441476deace739d05f",
                "sha256": "ce1c89bf270bfb2e67b3ee2074384e50261bf1bfda7b9e9766f82f9be459008b"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "dff69b1a047558441476deace739d05f",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2057738,
            "upload_time": "2025-02-17T22:44:15",
            "upload_time_iso_8601": "2025-02-17T22:44:15.442618Z",
            "url": "https://files.pythonhosted.org/packages/1a/fc/f64caad7a4d08ae2caddaae7999cc98273a8a048c9c554c7299a30d5a56e/UnityPy-1.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c06fe9a870aa228b848b63014259a15d5e929d04a1ff765284d74dbbaec070c3",
                "md5": "5aed2a9e5e035c56b44f3c40264b49ec",
                "sha256": "2ea6b05d5e3c0b50315a4084b0e4322cd59244627b228486071b60d906c46243"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp310-cp310-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "5aed2a9e5e035c56b44f3c40264b49ec",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 3061969,
            "upload_time": "2025-02-17T22:44:17",
            "upload_time_iso_8601": "2025-02-17T22:44:17.038144Z",
            "url": "https://files.pythonhosted.org/packages/c0/6f/e9a870aa228b848b63014259a15d5e929d04a1ff765284d74dbbaec070c3/UnityPy-1.21.0-cp310-cp310-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "209bdb3a72de26e881031e4c711853448bfaa319468c52a901fdf88e88d7476d",
                "md5": "7e48c89122f29a8cfcf7a6f337f6e222",
                "sha256": "6121aa20b3593c84d270567d9733e094eddc10c6be2e5db283948217060c144f"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "7e48c89122f29a8cfcf7a6f337f6e222",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2973544,
            "upload_time": "2025-02-17T22:44:19",
            "upload_time_iso_8601": "2025-02-17T22:44:19.454870Z",
            "url": "https://files.pythonhosted.org/packages/20/9b/db3a72de26e881031e4c711853448bfaa319468c52a901fdf88e88d7476d/UnityPy-1.21.0-cp310-cp310-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "681aa9cd36228f7cfbb8042d9668dbc565c3cc8eae52750da171c01b55d4b638",
                "md5": "ed0c21eeb74ef84e2e31394c1a9dd51e",
                "sha256": "747b7a20ed8852489af3de4c7db621dd3b81de13ca80b97097a5e7aac3c57e01"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp310-cp310-win32.whl",
            "has_sig": false,
            "md5_digest": "ed0c21eeb74ef84e2e31394c1a9dd51e",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1979748,
            "upload_time": "2025-02-17T22:44:24",
            "upload_time_iso_8601": "2025-02-17T22:44:24.172960Z",
            "url": "https://files.pythonhosted.org/packages/68/1a/a9cd36228f7cfbb8042d9668dbc565c3cc8eae52750da171c01b55d4b638/UnityPy-1.21.0-cp310-cp310-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2f77d0e0251b7cd4d1b086c5f5a138beb837d5409243f1cde3ba02f8db015b68",
                "md5": "55513fa7981baece159eb39bb7c90707",
                "sha256": "53d68ea9daa52322be3456bbf7f4679ff30a1a2079202e950fee405fa8204e5d"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp310-cp310-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "55513fa7981baece159eb39bb7c90707",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 1985494,
            "upload_time": "2025-02-17T22:44:29",
            "upload_time_iso_8601": "2025-02-17T22:44:29.647646Z",
            "url": "https://files.pythonhosted.org/packages/2f/77/d0e0251b7cd4d1b086c5f5a138beb837d5409243f1cde3ba02f8db015b68/UnityPy-1.21.0-cp310-cp310-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "70c1d6b252be1c44a397ed0d710a7d4dc19c5eff34aeb54f01fef52b867a6c1e",
                "md5": "b6648870d5d7b7e1bd4ea7d3a498732c",
                "sha256": "3ede241d687fa65097255204f15772dd3db80d327b9476f2a06956cde33dd6aa"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp310-cp310-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "b6648870d5d7b7e1bd4ea7d3a498732c",
            "packagetype": "bdist_wheel",
            "python_version": "cp310",
            "requires_python": ">=3.7",
            "size": 2544898,
            "upload_time": "2025-02-17T22:44:33",
            "upload_time_iso_8601": "2025-02-17T22:44:33.564463Z",
            "url": "https://files.pythonhosted.org/packages/70/c1/d6b252be1c44a397ed0d710a7d4dc19c5eff34aeb54f01fef52b867a6c1e/UnityPy-1.21.0-cp310-cp310-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f556a5c8558df21b21e8e862ee39ec8e938fceb981d4b9bf044fc260fb58280",
                "md5": "3275cee7fa69310e28af3745a3acc444",
                "sha256": "0d462f1f0f28b6386d430ba98b7c18a296363375777d8329c38104371cf0935c"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3275cee7fa69310e28af3745a3acc444",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1655126,
            "upload_time": "2025-02-17T22:44:36",
            "upload_time_iso_8601": "2025-02-17T22:44:36.560150Z",
            "url": "https://files.pythonhosted.org/packages/0f/55/6a5c8558df21b21e8e862ee39ec8e938fceb981d4b9bf044fc260fb58280/UnityPy-1.21.0-cp311-cp311-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "8819824aa246a69c703a84583cc7d567139da1227fba0a4cf8aaf615c7a3007c",
                "md5": "c8760053a0efa99163e9473137308064",
                "sha256": "d9617616a428e05f78ba7f11304fffab2b5cd7505608c5d1e80ee5cb0846aa81"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp311-cp311-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "c8760053a0efa99163e9473137308064",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1653357,
            "upload_time": "2025-02-17T22:44:39",
            "upload_time_iso_8601": "2025-02-17T22:44:39.037245Z",
            "url": "https://files.pythonhosted.org/packages/88/19/824aa246a69c703a84583cc7d567139da1227fba0a4cf8aaf615c7a3007c/UnityPy-1.21.0-cp311-cp311-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e1a38eb4db06e60b9ddb4c6b389c4036ce3b554c0ed715a5b8745a251060ba96",
                "md5": "6b19c6210902913640456b0025e80f32",
                "sha256": "f03a78ed68a6af58302b68b1aff9f7693b3e05a7fe3d8b913050fa1a4aad5214"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "6b19c6210902913640456b0025e80f32",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2054122,
            "upload_time": "2025-02-17T22:44:41",
            "upload_time_iso_8601": "2025-02-17T22:44:41.526023Z",
            "url": "https://files.pythonhosted.org/packages/e1/a3/8eb4db06e60b9ddb4c6b389c4036ce3b554c0ed715a5b8745a251060ba96/UnityPy-1.21.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "06e0933677729ad29750cc4870c86f4ab8cc7c12f3b410ab6786fd2c4bc5a11d",
                "md5": "f27823d6686995f43d1d6e783dd628eb",
                "sha256": "6f63c027b4ea71becdb6d843d4dfcceebee367ff4b3d28c237c69274463c9f21"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "f27823d6686995f43d1d6e783dd628eb",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2062437,
            "upload_time": "2025-02-17T22:44:46",
            "upload_time_iso_8601": "2025-02-17T22:44:46.056432Z",
            "url": "https://files.pythonhosted.org/packages/06/e0/933677729ad29750cc4870c86f4ab8cc7c12f3b410ab6786fd2c4bc5a11d/UnityPy-1.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2476bb0d351aa645e36918aaf71d32cf153a1703bc2d05bc1d9b87152275826c",
                "md5": "335b9b46eb7a87c2a5df1f7bc603602a",
                "sha256": "cbee79147a6437bb573b8e8307c5d91530a0ad5573df3b0e090f5f2f731f3ea9"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp311-cp311-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "335b9b46eb7a87c2a5df1f7bc603602a",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 3065069,
            "upload_time": "2025-02-17T22:44:48",
            "upload_time_iso_8601": "2025-02-17T22:44:48.320589Z",
            "url": "https://files.pythonhosted.org/packages/24/76/bb0d351aa645e36918aaf71d32cf153a1703bc2d05bc1d9b87152275826c/UnityPy-1.21.0-cp311-cp311-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "073e4e5d37ec9ff7227cacca42652d4cbbdc54f757330b757ec3fdb5960b547d",
                "md5": "271ce1dfd470768a59ebe36e09c9690c",
                "sha256": "a7c18b6d91403d070231202913a65330264927c9364bcc3a091178bb1b8591ad"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "271ce1dfd470768a59ebe36e09c9690c",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2975782,
            "upload_time": "2025-02-17T22:44:52",
            "upload_time_iso_8601": "2025-02-17T22:44:52.635487Z",
            "url": "https://files.pythonhosted.org/packages/07/3e/4e5d37ec9ff7227cacca42652d4cbbdc54f757330b757ec3fdb5960b547d/UnityPy-1.21.0-cp311-cp311-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "59b58fb3bcad593da5080171720e6aa0114a014a7b9b310623b7e6422feb22ec",
                "md5": "cf5409cbf100f6a70430c74041797983",
                "sha256": "d848cc0d158d6463352b67573abd70868ed9aa1b70552877f95f1087a23aa30a"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp311-cp311-win32.whl",
            "has_sig": false,
            "md5_digest": "cf5409cbf100f6a70430c74041797983",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1979744,
            "upload_time": "2025-02-17T22:44:55",
            "upload_time_iso_8601": "2025-02-17T22:44:55.904733Z",
            "url": "https://files.pythonhosted.org/packages/59/b5/8fb3bcad593da5080171720e6aa0114a014a7b9b310623b7e6422feb22ec/UnityPy-1.21.0-cp311-cp311-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2fa9e5e740b816282eb41b94ab451e31d24e1cb8a0b05c5f76615d000d9654b9",
                "md5": "b3e9a30defa5a49de2936f6205de3159",
                "sha256": "b88f47e376b218376f9f9188d19a8d378619c72ee163e3fc9972fd2d0633b31c"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp311-cp311-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b3e9a30defa5a49de2936f6205de3159",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 1985493,
            "upload_time": "2025-02-17T22:44:58",
            "upload_time_iso_8601": "2025-02-17T22:44:58.485715Z",
            "url": "https://files.pythonhosted.org/packages/2f/a9/e5e740b816282eb41b94ab451e31d24e1cb8a0b05c5f76615d000d9654b9/UnityPy-1.21.0-cp311-cp311-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58a45e813099b419c0e6116a67f8055edd40533829960a0224e7d1731dca107e",
                "md5": "588eb7f85ab307db76095477452a7386",
                "sha256": "85b6fba8c7da23052cb45f52f81977172724f2023f3a7ab3d49ebe31bace217b"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp311-cp311-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "588eb7f85ab307db76095477452a7386",
            "packagetype": "bdist_wheel",
            "python_version": "cp311",
            "requires_python": ">=3.7",
            "size": 2544899,
            "upload_time": "2025-02-17T22:45:01",
            "upload_time_iso_8601": "2025-02-17T22:45:01.112923Z",
            "url": "https://files.pythonhosted.org/packages/58/a4/5e813099b419c0e6116a67f8055edd40533829960a0224e7d1731dca107e/UnityPy-1.21.0-cp311-cp311-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "34ee152786184e771ecb0e5cbece8e9b8ddc3bd6b9f99c5c90adb514492bf2ae",
                "md5": "829ba86d53753f6585f7819261730f1e",
                "sha256": "16aec70f40b3e6b1041fad513eb2d19d7f28e2608a1f731e5c41365b6ac9cbc4"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "829ba86d53753f6585f7819261730f1e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1655388,
            "upload_time": "2025-02-17T22:45:03",
            "upload_time_iso_8601": "2025-02-17T22:45:03.765414Z",
            "url": "https://files.pythonhosted.org/packages/34/ee/152786184e771ecb0e5cbece8e9b8ddc3bd6b9f99c5c90adb514492bf2ae/UnityPy-1.21.0-cp312-cp312-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b0436f8d9f8c9ba5f6279072539690968db1959cd8caebe5d97c45d611081b46",
                "md5": "98c848aaa17ee935bc4f23a75e95adef",
                "sha256": "396b6c74e54296f2e15e80a8679d9ebdddd27c1b3e2d1c032dfce1a553f49b79"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp312-cp312-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "98c848aaa17ee935bc4f23a75e95adef",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1653498,
            "upload_time": "2025-02-17T22:45:06",
            "upload_time_iso_8601": "2025-02-17T22:45:06.260406Z",
            "url": "https://files.pythonhosted.org/packages/b0/43/6f8d9f8c9ba5f6279072539690968db1959cd8caebe5d97c45d611081b46/UnityPy-1.21.0-cp312-cp312-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "b3eaf2a3974ce42ea96b047458b7804c16ff98d51be0a7dc156e591ed874ffbc",
                "md5": "85ace16f226f6d41e962f849e72cd94a",
                "sha256": "866eb082b9a722ef816d5158b757815b2c46430ec25e54b14e7f3b7a21d6128e"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "85ace16f226f6d41e962f849e72cd94a",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2049705,
            "upload_time": "2025-02-17T22:45:07",
            "upload_time_iso_8601": "2025-02-17T22:45:07.985693Z",
            "url": "https://files.pythonhosted.org/packages/b3/ea/f2a3974ce42ea96b047458b7804c16ff98d51be0a7dc156e591ed874ffbc/UnityPy-1.21.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6479e0a9a87270af6455708546f3b8303e61cba94d09bf594e1ef3d56cf069cd",
                "md5": "a09a0d0f899903edfd589e3c4647840b",
                "sha256": "5bcfcfa3ca47eba41614b62db73c56e61c72b0f78c52943be9658e038215ef8c"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "a09a0d0f899903edfd589e3c4647840b",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2060578,
            "upload_time": "2025-02-17T22:45:09",
            "upload_time_iso_8601": "2025-02-17T22:45:09.648303Z",
            "url": "https://files.pythonhosted.org/packages/64/79/e0a9a87270af6455708546f3b8303e61cba94d09bf594e1ef3d56cf069cd/UnityPy-1.21.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "903f96a1e43551b6d92807f769ed09b150fea6decb9eefc9aa8207bfae958038",
                "md5": "075e2399d27bdf9c78a5306df0d3466e",
                "sha256": "41339f24d8bea4223da9508aaac301407d15a74179193ba99cdcc70580ed4e22"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp312-cp312-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "075e2399d27bdf9c78a5306df0d3466e",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 3056943,
            "upload_time": "2025-02-17T22:45:11",
            "upload_time_iso_8601": "2025-02-17T22:45:11.392350Z",
            "url": "https://files.pythonhosted.org/packages/90/3f/96a1e43551b6d92807f769ed09b150fea6decb9eefc9aa8207bfae958038/UnityPy-1.21.0-cp312-cp312-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cb4e64999028e3c1eb554741cae85f7e84c0f4854c6a591ad9461755454e4d66",
                "md5": "8454a3bc77caadb4f6db94d3bb3ac685",
                "sha256": "d5bb608e0fe4841bcde8e6ddca19985df3fd6d6865d0b8af6231250e67a3238f"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "8454a3bc77caadb4f6db94d3bb3ac685",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2973482,
            "upload_time": "2025-02-17T22:45:14",
            "upload_time_iso_8601": "2025-02-17T22:45:14.032727Z",
            "url": "https://files.pythonhosted.org/packages/cb/4e/64999028e3c1eb554741cae85f7e84c0f4854c6a591ad9461755454e4d66/UnityPy-1.21.0-cp312-cp312-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "069044a555672085d3655136865f2ebbf0a5a9ec8a993e406fdff77b2458081a",
                "md5": "441dc0006f32cb68657e00b5ff600231",
                "sha256": "dc7c6365608ee056d6b041b72d48c81acf629f2b3800a640c070656f97559cf4"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp312-cp312-win32.whl",
            "has_sig": false,
            "md5_digest": "441dc0006f32cb68657e00b5ff600231",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1980060,
            "upload_time": "2025-02-17T22:45:16",
            "upload_time_iso_8601": "2025-02-17T22:45:16.655958Z",
            "url": "https://files.pythonhosted.org/packages/06/90/44a555672085d3655136865f2ebbf0a5a9ec8a993e406fdff77b2458081a/UnityPy-1.21.0-cp312-cp312-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "9f0b3bbfba93f82068e5c8d632e72614f3c8af55d254be30b4676e773013e1d0",
                "md5": "b5bac53db1e4147d3cfae84860050c43",
                "sha256": "c78c1673c5efe85b438b54ef734333512cfead73cce99982d0f1f027f42aa16b"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp312-cp312-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "b5bac53db1e4147d3cfae84860050c43",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 1985839,
            "upload_time": "2025-02-17T22:45:18",
            "upload_time_iso_8601": "2025-02-17T22:45:18.488734Z",
            "url": "https://files.pythonhosted.org/packages/9f/0b/3bbfba93f82068e5c8d632e72614f3c8af55d254be30b4676e773013e1d0/UnityPy-1.21.0-cp312-cp312-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "90e925a27cc711c3bbc1de95e762985fdfee89f070243df2f148e61f29182d1c",
                "md5": "49879b859ec056a70fc39472cea618a1",
                "sha256": "7467949b69b97eeef1176608ad2ce38f397323c8c7f7f5aa8087c92442e322ee"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp312-cp312-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "49879b859ec056a70fc39472cea618a1",
            "packagetype": "bdist_wheel",
            "python_version": "cp312",
            "requires_python": ">=3.7",
            "size": 2544946,
            "upload_time": "2025-02-17T22:45:20",
            "upload_time_iso_8601": "2025-02-17T22:45:20.187048Z",
            "url": "https://files.pythonhosted.org/packages/90/e9/25a27cc711c3bbc1de95e762985fdfee89f070243df2f148e61f29182d1c/UnityPy-1.21.0-cp312-cp312-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "ec7e0655a2558f9b24a6f114e52443a885a99ba5d4383375aa9c79d59dbfc0e5",
                "md5": "123195ff7ada877c66660e63981c1a84",
                "sha256": "93c33a102db613541916e0696bd03a6fb8a721bfb9153ca835b12031fe314432"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "has_sig": false,
            "md5_digest": "123195ff7ada877c66660e63981c1a84",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1655376,
            "upload_time": "2025-02-17T22:45:21",
            "upload_time_iso_8601": "2025-02-17T22:45:21.896311Z",
            "url": "https://files.pythonhosted.org/packages/ec/7e/0655a2558f9b24a6f114e52443a885a99ba5d4383375aa9c79d59dbfc0e5/UnityPy-1.21.0-cp313-cp313-macosx_10_13_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "80da15b245951b0fe44e7d5c0abe848c5dad8ae14ec87cc99dbc66af2af9555a",
                "md5": "d0f37300f8770b73b9159eb152634398",
                "sha256": "d48f1e47a6a54141dbadc31423571cf17cf274f107cdf98239746c1482c643c3"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp313-cp313-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "d0f37300f8770b73b9159eb152634398",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1653494,
            "upload_time": "2025-02-17T22:45:23",
            "upload_time_iso_8601": "2025-02-17T22:45:23.540591Z",
            "url": "https://files.pythonhosted.org/packages/80/da/15b245951b0fe44e7d5c0abe848c5dad8ae14ec87cc99dbc66af2af9555a/UnityPy-1.21.0-cp313-cp313-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2d6e8eed0886cd510f76d115200f99f0d03648d1574cbe0d55688ce4fcd07867",
                "md5": "1a0f066698f4e06eac4091e51d7fe4f0",
                "sha256": "8492519fd81f23d0b555bece8c91b644b88457481a47b389d5fd2e577843b6ab"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "1a0f066698f4e06eac4091e51d7fe4f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 2049749,
            "upload_time": "2025-02-17T22:45:25",
            "upload_time_iso_8601": "2025-02-17T22:45:25.306416Z",
            "url": "https://files.pythonhosted.org/packages/2d/6e/8eed0886cd510f76d115200f99f0d03648d1574cbe0d55688ce4fcd07867/UnityPy-1.21.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4df1f6798d89820f792254d428612178dfcc2c21d9142498c11e31bd43822079",
                "md5": "be632112235b8fd9a7eed24fcb7b8e4a",
                "sha256": "9dd6a32ce2794de4e2d416180399d5f5108107b5b2ff36d7abf3d120b20ba459"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "be632112235b8fd9a7eed24fcb7b8e4a",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 2060955,
            "upload_time": "2025-02-17T22:45:28",
            "upload_time_iso_8601": "2025-02-17T22:45:28.110772Z",
            "url": "https://files.pythonhosted.org/packages/4d/f1/f6798d89820f792254d428612178dfcc2c21d9142498c11e31bd43822079/UnityPy-1.21.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "73822dd1d07e75c5ff773e1b5b6c95909dad1c766f5c73d36ccec73327597729",
                "md5": "45c9cb8f13ed42529ceb0cacebb134e3",
                "sha256": "75be6ec7082474d5d8bc630a65d014e6ecc34144fe7fe9ddf3431521d6308f13"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp313-cp313-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "45c9cb8f13ed42529ceb0cacebb134e3",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 3056972,
            "upload_time": "2025-02-17T22:45:31",
            "upload_time_iso_8601": "2025-02-17T22:45:31.223485Z",
            "url": "https://files.pythonhosted.org/packages/73/82/2dd1d07e75c5ff773e1b5b6c95909dad1c766f5c73d36ccec73327597729/UnityPy-1.21.0-cp313-cp313-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d4001e60387588a26442cf77492e59bd764cc0b9a1eed89c0e34cb713013e9b0",
                "md5": "c3b86d1624ab04c434f46f9a64ef5aee",
                "sha256": "461a14f3f381ce8d52b745fb6e54eabbc89b32a4ab4d7e39476863731f94c44c"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c3b86d1624ab04c434f46f9a64ef5aee",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 2974906,
            "upload_time": "2025-02-17T22:45:33",
            "upload_time_iso_8601": "2025-02-17T22:45:33.088282Z",
            "url": "https://files.pythonhosted.org/packages/d4/00/1e60387588a26442cf77492e59bd764cc0b9a1eed89c0e34cb713013e9b0/UnityPy-1.21.0-cp313-cp313-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "47de5c40e5521b2a98a9f7d124685c27b1c8ce845fb08ab519260b6d4f27eec2",
                "md5": "d9c269575cc9f6f2844d598b6550f7a2",
                "sha256": "4d19b91bbd9291a514fdc6a1da0950ce74ee843b836e5ea657b65d30e88ad9de"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp313-cp313-win32.whl",
            "has_sig": false,
            "md5_digest": "d9c269575cc9f6f2844d598b6550f7a2",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1980048,
            "upload_time": "2025-02-17T22:45:34",
            "upload_time_iso_8601": "2025-02-17T22:45:34.766049Z",
            "url": "https://files.pythonhosted.org/packages/47/de/5c40e5521b2a98a9f7d124685c27b1c8ce845fb08ab519260b6d4f27eec2/UnityPy-1.21.0-cp313-cp313-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "cef84e5fd3d830727800b3042117a347699b83bd2b4ee9bd00a154453e7c6924",
                "md5": "f415f23b835b77d883c539a20ee8da67",
                "sha256": "e405c875a9b4123bb274676355193249d2443d6ae86fb84270984f4c1f129c3b"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp313-cp313-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "f415f23b835b77d883c539a20ee8da67",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 1985846,
            "upload_time": "2025-02-17T22:45:36",
            "upload_time_iso_8601": "2025-02-17T22:45:36.483314Z",
            "url": "https://files.pythonhosted.org/packages/ce/f8/4e5fd3d830727800b3042117a347699b83bd2b4ee9bd00a154453e7c6924/UnityPy-1.21.0-cp313-cp313-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "2dc6c5b29b0a1fab3393d4cdbb638fc2af0bbcc5740f780a77c3480ec7dac6b5",
                "md5": "926fa1f39361231f3552f0c98b8a55df",
                "sha256": "b026b5508627cbe75e2dbe5ec7a35f67cb65cd00bfc33822caa9bc4a09cf6c85"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp313-cp313-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "926fa1f39361231f3552f0c98b8a55df",
            "packagetype": "bdist_wheel",
            "python_version": "cp313",
            "requires_python": ">=3.7",
            "size": 2544950,
            "upload_time": "2025-02-17T22:45:38",
            "upload_time_iso_8601": "2025-02-17T22:45:38.305826Z",
            "url": "https://files.pythonhosted.org/packages/2d/c6/c5b29b0a1fab3393d4cdbb638fc2af0bbcc5740f780a77c3480ec7dac6b5/UnityPy-1.21.0-cp313-cp313-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "48c43173d41db6e7a494bcdb5911737897afbc258f82bd967897eb17f43e4c2d",
                "md5": "3c18366f4bad9ededba0578c9e65b9e2",
                "sha256": "458f1444e29f0c8f6ab73c8548c66dbe8147720d1358832763d43d6d3f846aef"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "3c18366f4bad9ededba0578c9e65b9e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1649501,
            "upload_time": "2025-02-17T22:45:40",
            "upload_time_iso_8601": "2025-02-17T22:45:40.424341Z",
            "url": "https://files.pythonhosted.org/packages/48/c4/3173d41db6e7a494bcdb5911737897afbc258f82bd967897eb17f43e4c2d/UnityPy-1.21.0-cp37-cp37m-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "78401665853467ab96d217989879147c20eaaf74e50ef4de28c322305661dbf9",
                "md5": "09f81a8cc4123381e48049203390a6e4",
                "sha256": "32b42f9b7bdb3031df71978f6ac01e75e400a8a8671017330d3cfc26e19af417"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "09f81a8cc4123381e48049203390a6e4",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2044563,
            "upload_time": "2025-02-17T22:45:42",
            "upload_time_iso_8601": "2025-02-17T22:45:42.323205Z",
            "url": "https://files.pythonhosted.org/packages/78/40/1665853467ab96d217989879147c20eaaf74e50ef4de28c322305661dbf9/UnityPy-1.21.0-cp37-cp37m-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "7eb65d5955be1b6541b72ced0b5f400ac3ef3b38b3731b2b94183735ae7f8e89",
                "md5": "51d0cfbd54eb7380cc8c94204d647571",
                "sha256": "219bb6e22a6544ba6c6b656e9ded57a516107605a1dbd48787cde7e6471509ab"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "51d0cfbd54eb7380cc8c94204d647571",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2052480,
            "upload_time": "2025-02-17T22:45:45",
            "upload_time_iso_8601": "2025-02-17T22:45:45.045530Z",
            "url": "https://files.pythonhosted.org/packages/7e/b6/5d5955be1b6541b72ced0b5f400ac3ef3b38b3731b2b94183735ae7f8e89/UnityPy-1.21.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e48dddde04dac4e1302d2dc0265be93e2432c26b67732d878df1e196ae243024",
                "md5": "9f5847bc4211001605a097f538afef79",
                "sha256": "33cf778c43b965606f131c299c9b999c9e2ba2690f832f0b9f40724790debfe3"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp37-cp37m-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "9f5847bc4211001605a097f538afef79",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 3050209,
            "upload_time": "2025-02-17T22:45:47",
            "upload_time_iso_8601": "2025-02-17T22:45:47.022581Z",
            "url": "https://files.pythonhosted.org/packages/e4/8d/ddde04dac4e1302d2dc0265be93e2432c26b67732d878df1e196ae243024/UnityPy-1.21.0-cp37-cp37m-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "31c246357e99bd03a2adafba59f1ee7b80901fd8b3aa2e87d5fa2d64050cdc2c",
                "md5": "35f426c7cc98f0a8576c3c312787a66f",
                "sha256": "4de5b2b92ed7bc6f3803aa36334935296cc3ec22f4b4a2f21cb4c89da57cb18a"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "35f426c7cc98f0a8576c3c312787a66f",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 2968325,
            "upload_time": "2025-02-17T22:45:48",
            "upload_time_iso_8601": "2025-02-17T22:45:48.881695Z",
            "url": "https://files.pythonhosted.org/packages/31/c2/46357e99bd03a2adafba59f1ee7b80901fd8b3aa2e87d5fa2d64050cdc2c/UnityPy-1.21.0-cp37-cp37m-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "be33af564f9c9c01478bc07f6076ab1eb5bc64832d7070f2d45a67c18c5370d5",
                "md5": "3429802036020b9ad4cff475f75ab9bd",
                "sha256": "ba8df7f558ed6c11ca629e2fb87e72484d63b2997b4ceacf72b3118397fab9a4"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp37-cp37m-win32.whl",
            "has_sig": false,
            "md5_digest": "3429802036020b9ad4cff475f75ab9bd",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1185270,
            "upload_time": "2025-02-17T22:45:51",
            "upload_time_iso_8601": "2025-02-17T22:45:51.116337Z",
            "url": "https://files.pythonhosted.org/packages/be/33/af564f9c9c01478bc07f6076ab1eb5bc64832d7070f2d45a67c18c5370d5/UnityPy-1.21.0-cp37-cp37m-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e319074d8c63e568821dff09d9bb21dbd343482f3a84364560966c4e7ecc9131",
                "md5": "09d756ba820dbe5206a955dea4374d43",
                "sha256": "9cf2a79f45f143989eefedb864f5a2374785e0f78906ad4b52bcb62d881b0e3a"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp37-cp37m-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "09d756ba820dbe5206a955dea4374d43",
            "packagetype": "bdist_wheel",
            "python_version": "cp37",
            "requires_python": ">=3.7",
            "size": 1979710,
            "upload_time": "2025-02-17T22:45:53",
            "upload_time_iso_8601": "2025-02-17T22:45:53.674108Z",
            "url": "https://files.pythonhosted.org/packages/e3/19/074d8c63e568821dff09d9bb21dbd343482f3a84364560966c4e7ecc9131/UnityPy-1.21.0-cp37-cp37m-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6ab718910059aaf9aaae13b5380b0e304bbf5d954f29405c711a6e0fb2957409",
                "md5": "1b15c9e6d7826b8f3828c54c079afe36",
                "sha256": "360bf4df5a54b178ff03775e68be9b3f511391e903e07e152ccd24c304d3c2a0"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "1b15c9e6d7826b8f3828c54c079afe36",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1655227,
            "upload_time": "2025-02-17T22:45:55",
            "upload_time_iso_8601": "2025-02-17T22:45:55.498435Z",
            "url": "https://files.pythonhosted.org/packages/6a/b7/18910059aaf9aaae13b5380b0e304bbf5d954f29405c711a6e0fb2957409/UnityPy-1.21.0-cp38-cp38-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fb032f26103b2294ff56d68dbaf8dd6b5db6cb7d0525381ce612a3ec6e234481",
                "md5": "82fbab98f5bd5b490286ad13458103db",
                "sha256": "8d09844eefe569a58d4ffe20b446eea97a88de7cf3a33784fad4edb5a160a922"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp38-cp38-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "82fbab98f5bd5b490286ad13458103db",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1653229,
            "upload_time": "2025-02-17T22:45:58",
            "upload_time_iso_8601": "2025-02-17T22:45:58.616884Z",
            "url": "https://files.pythonhosted.org/packages/fb/03/2f26103b2294ff56d68dbaf8dd6b5db6cb7d0525381ce612a3ec6e234481/UnityPy-1.21.0-cp38-cp38-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "e7d50bdfc128c93d0107f53a471e2a9b83e9ea08d396680151727758ccb0431a",
                "md5": "7ccdf79f651ce3ddafb34e58e4c4064f",
                "sha256": "b425b6300b74fd143dc0dc5f1d7f12bfac1371fbc5fc21630a3c3976f31c8421"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "7ccdf79f651ce3ddafb34e58e4c4064f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2053880,
            "upload_time": "2025-02-17T22:46:00",
            "upload_time_iso_8601": "2025-02-17T22:46:00.542906Z",
            "url": "https://files.pythonhosted.org/packages/e7/d5/0bdfc128c93d0107f53a471e2a9b83e9ea08d396680151727758ccb0431a/UnityPy-1.21.0-cp38-cp38-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f8c72a3abb4fbe2b9985131a35dcabfcfc179074fb0172ad2a5bb7bc93faedc1",
                "md5": "99e7c86f0a84bd624c4b8f2040581936",
                "sha256": "b30079547f67c883b08610157bfc9c659f267b491eba4e4ad0b34d64f17c1598"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "99e7c86f0a84bd624c4b8f2040581936",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2060756,
            "upload_time": "2025-02-17T22:46:02",
            "upload_time_iso_8601": "2025-02-17T22:46:02.369221Z",
            "url": "https://files.pythonhosted.org/packages/f8/c7/2a3abb4fbe2b9985131a35dcabfcfc179074fb0172ad2a5bb7bc93faedc1/UnityPy-1.21.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d8045a9f6002bf75e5eb1eeaa3bbfd18471b8b2f59e5d399a4a7e081f65b3dd1",
                "md5": "d9b951b74ac598c670d832c0585fbb5f",
                "sha256": "bc98fab62d8202f3e3a0a7a63b69571daf54d50af06f3045582ff4eef1db0cc6"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp38-cp38-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "d9b951b74ac598c670d832c0585fbb5f",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 3063668,
            "upload_time": "2025-02-17T22:46:04",
            "upload_time_iso_8601": "2025-02-17T22:46:04.104839Z",
            "url": "https://files.pythonhosted.org/packages/d8/04/5a9f6002bf75e5eb1eeaa3bbfd18471b8b2f59e5d399a4a7e081f65b3dd1/UnityPy-1.21.0-cp38-cp38-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "58221a836989db58d91c595fc6eca98e255c1b2ac1a704b5d7e8fca507997e48",
                "md5": "ad1d72e77cba799086868786e7d809b8",
                "sha256": "689f8e45cf72f4b6260e376782a1ac567f498df15d2aa8b70156d35854929ba7"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "ad1d72e77cba799086868786e7d809b8",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 2975520,
            "upload_time": "2025-02-17T22:46:06",
            "upload_time_iso_8601": "2025-02-17T22:46:06.908880Z",
            "url": "https://files.pythonhosted.org/packages/58/22/1a836989db58d91c595fc6eca98e255c1b2ac1a704b5d7e8fca507997e48/UnityPy-1.21.0-cp38-cp38-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "3a00b6e861a18d270f84d2b3638fcc3833eefbdfa6e277625d5348275a154203",
                "md5": "291f2fe79367872b469cc0497bcff84a",
                "sha256": "107ed375543204b6a8d4d5746b470e466b3ba3fc9e7c3303c84bc9e9f98ee3b1"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp38-cp38-win32.whl",
            "has_sig": false,
            "md5_digest": "291f2fe79367872b469cc0497bcff84a",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1979749,
            "upload_time": "2025-02-17T22:46:09",
            "upload_time_iso_8601": "2025-02-17T22:46:09.699195Z",
            "url": "https://files.pythonhosted.org/packages/3a/00/b6e861a18d270f84d2b3638fcc3833eefbdfa6e277625d5348275a154203/UnityPy-1.21.0-cp38-cp38-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "f83e336345ff69cc2f902ed02dc7f8e622d988b68d4db0a62486c599c5996ba0",
                "md5": "3898dd5e0279e5f121644d536bf96ddc",
                "sha256": "5273867dd94d98ca03fde7d33eb29fdd5cc55074c4000b30a798e53773f2fd88"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp38-cp38-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "3898dd5e0279e5f121644d536bf96ddc",
            "packagetype": "bdist_wheel",
            "python_version": "cp38",
            "requires_python": ">=3.7",
            "size": 1985491,
            "upload_time": "2025-02-17T22:46:11",
            "upload_time_iso_8601": "2025-02-17T22:46:11.493468Z",
            "url": "https://files.pythonhosted.org/packages/f8/3e/336345ff69cc2f902ed02dc7f8e622d988b68d4db0a62486c599c5996ba0/UnityPy-1.21.0-cp38-cp38-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4e950969a3410ab039f917df0128b7da12c136879b4d2e1bcc8e688fabb95b1d",
                "md5": "6254003b18196ecd20f12f2dcfe199e2",
                "sha256": "9f413da9c007df60ae2d20ba43c9c03cb0972122bd5dac9b8de1161f72e6ca5b"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "has_sig": false,
            "md5_digest": "6254003b18196ecd20f12f2dcfe199e2",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1655219,
            "upload_time": "2025-02-17T22:46:13",
            "upload_time_iso_8601": "2025-02-17T22:46:13.365593Z",
            "url": "https://files.pythonhosted.org/packages/4e/95/0969a3410ab039f917df0128b7da12c136879b4d2e1bcc8e688fabb95b1d/UnityPy-1.21.0-cp39-cp39-macosx_10_9_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c51a6c1f94a5b9172f983fcdcd4b4c2e6309d0087907a713c378adf9acc40411",
                "md5": "e680eaafd39877d7c63cb3310cde04f0",
                "sha256": "2a483491efd14cd681198cb76755c12e4d8db9ecb71c1c45db9dc5103a9d9e48"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp39-cp39-macosx_11_0_arm64.whl",
            "has_sig": false,
            "md5_digest": "e680eaafd39877d7c63cb3310cde04f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1653223,
            "upload_time": "2025-02-17T22:46:15",
            "upload_time_iso_8601": "2025-02-17T22:46:15.121288Z",
            "url": "https://files.pythonhosted.org/packages/c5/1a/6c1f94a5b9172f983fcdcd4b4c2e6309d0087907a713c378adf9acc40411/UnityPy-1.21.0-cp39-cp39-macosx_11_0_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "fbb586e8a1047750ee66045bf5deaf35d478d33256b9d7cc880cdbb1eef53e23",
                "md5": "eeb5e50d2b2b1c70635418eb7fde62f0",
                "sha256": "aca205f987a7389cb9b7030ea600d701aee73a7d1e43f3d81f342a4bf7781b14"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "has_sig": false,
            "md5_digest": "eeb5e50d2b2b1c70635418eb7fde62f0",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2050550,
            "upload_time": "2025-02-17T22:46:17",
            "upload_time_iso_8601": "2025-02-17T22:46:17.780277Z",
            "url": "https://files.pythonhosted.org/packages/fb/b5/86e8a1047750ee66045bf5deaf35d478d33256b9d7cc880cdbb1eef53e23/UnityPy-1.21.0-cp39-cp39-manylinux_2_17_i686.manylinux2014_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "6a327475fea808e938220e710fd468130d00fed783a17938ca370a12e0574d10",
                "md5": "bebf3cf74426af6e1692e46b51cc6197",
                "sha256": "00a635686188acf7d84e4b4ad06fd8900463d493e2c326cf8fa6e1bd365e0a79"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "has_sig": false,
            "md5_digest": "bebf3cf74426af6e1692e46b51cc6197",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2057005,
            "upload_time": "2025-02-17T22:46:19",
            "upload_time_iso_8601": "2025-02-17T22:46:19.583076Z",
            "url": "https://files.pythonhosted.org/packages/6a/32/7475fea808e938220e710fd468130d00fed783a17938ca370a12e0574d10/UnityPy-1.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "c79645dab718cece2acc335b3a1ce2a14bc067693d67c80c3e15636a17c983a5",
                "md5": "6b9778c1fae68fae8a4bcf04f060a8e9",
                "sha256": "21b0ac382bfdd0d3f3e889f8ddd57946351785a08bea55000abcd003d21ab5d5"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp39-cp39-musllinux_1_2_i686.whl",
            "has_sig": false,
            "md5_digest": "6b9778c1fae68fae8a4bcf04f060a8e9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 3061352,
            "upload_time": "2025-02-17T22:46:21",
            "upload_time_iso_8601": "2025-02-17T22:46:21.409921Z",
            "url": "https://files.pythonhosted.org/packages/c7/96/45dab718cece2acc335b3a1ce2a14bc067693d67c80c3e15636a17c983a5/UnityPy-1.21.0-cp39-cp39-musllinux_1_2_i686.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0bd622f127faf2219d8633ed98030c32c02991c9ae64b3fdc90267d2d74c59db",
                "md5": "c79284ee3a8e5834af9f598e33d55497",
                "sha256": "5d67385ac88490afaa786422db7b0c38d09185326a6773b6b8c04f2f7bde6fbd"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "has_sig": false,
            "md5_digest": "c79284ee3a8e5834af9f598e33d55497",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2973120,
            "upload_time": "2025-02-17T22:46:23",
            "upload_time_iso_8601": "2025-02-17T22:46:23.286581Z",
            "url": "https://files.pythonhosted.org/packages/0b/d6/22f127faf2219d8633ed98030c32c02991c9ae64b3fdc90267d2d74c59db/UnityPy-1.21.0-cp39-cp39-musllinux_1_2_x86_64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "5a43b8010532b83c192e38fbae2d900b59c5341b8c05f084b832749ae7b93216",
                "md5": "e2d4a1eca5d0e20fb028c2526a261cc8",
                "sha256": "086cdb256425ff0df8ba4f07e626fc158dda61c2f22dc39126d2cb701ad4c148"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp39-cp39-win32.whl",
            "has_sig": false,
            "md5_digest": "e2d4a1eca5d0e20fb028c2526a261cc8",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1979745,
            "upload_time": "2025-02-17T22:46:25",
            "upload_time_iso_8601": "2025-02-17T22:46:25.990267Z",
            "url": "https://files.pythonhosted.org/packages/5a/43/b8010532b83c192e38fbae2d900b59c5341b8c05f084b832749ae7b93216/UnityPy-1.21.0-cp39-cp39-win32.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "216584e4a4cbc02ed7e1b07137c4b03df4111ae8cbc52933c7f5f013bf2e5f96",
                "md5": "d2f29c1205326ffd9d18394226504b36",
                "sha256": "a30ef255cefc8e4bd31a2003a0e7a508db1cc88b6f2bbbc26ccad4311e084529"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp39-cp39-win_amd64.whl",
            "has_sig": false,
            "md5_digest": "d2f29c1205326ffd9d18394226504b36",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 1985491,
            "upload_time": "2025-02-17T22:46:28",
            "upload_time_iso_8601": "2025-02-17T22:46:28.601315Z",
            "url": "https://files.pythonhosted.org/packages/21/65/84e4a4cbc02ed7e1b07137c4b03df4111ae8cbc52933c7f5f013bf2e5f96/UnityPy-1.21.0-cp39-cp39-win_amd64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "d0ca56a2f6db0d6266edb24d47f9b9caeeb5d8dc65cdc3122cd9158eedb87ea4",
                "md5": "cd5f2495729ed3d6490f8c970b8a1ad9",
                "sha256": "758b00100a16d3fc187cf437c265e04faa7063700564168ee33e2c5cbb3b2067"
            },
            "downloads": -1,
            "filename": "UnityPy-1.21.0-cp39-cp39-win_arm64.whl",
            "has_sig": false,
            "md5_digest": "cd5f2495729ed3d6490f8c970b8a1ad9",
            "packagetype": "bdist_wheel",
            "python_version": "cp39",
            "requires_python": ">=3.7",
            "size": 2544897,
            "upload_time": "2025-02-17T22:46:30",
            "upload_time_iso_8601": "2025-02-17T22:46:30.432704Z",
            "url": "https://files.pythonhosted.org/packages/d0/ca/56a2f6db0d6266edb24d47f9b9caeeb5d8dc65cdc3122cd9158eedb87ea4/UnityPy-1.21.0-cp39-cp39-win_arm64.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "0f13a858a4425c8b251aa754a80c908d668375cb39e4406e4c10ee4273bbc1fa",
                "md5": "6111f4053ff2a2969fb597d151ef6e46",
                "sha256": "2fa1b160c1340eda44aae37e1d1b7beb9b19e183940d9634a846c3548da210de"
            },
            "downloads": -1,
            "filename": "unitypy-1.21.0.tar.gz",
            "has_sig": false,
            "md5_digest": "6111f4053ff2a2969fb597d151ef6e46",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.7",
            "size": 6234319,
            "upload_time": "2025-02-17T22:46:32",
            "upload_time_iso_8601": "2025-02-17T22:46:32.556968Z",
            "url": "https://files.pythonhosted.org/packages/0f/13/a858a4425c8b251aa754a80c908d668375cb39e4406e4c10ee4273bbc1fa/unitypy-1.21.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-02-17 22:46:32",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "K0lb3",
    "github_project": "UnityPy",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "unitypy"
}
        
Elapsed time: 0.49782s