Metadata-Version: 2.1
Name: UnityPy
Version: 1.2.3.2
Summary: A pythonic port of AssetStudio by Perfare
Home-page: https://github.com/K0lb3/UnityPy
Author: K0lb3
License: UNKNOWN
Download-URL: https://github.com/K0lb3/UnityPy/tarball/master
Description: # UnityPy
        A unity asset extractor based on [unitypack](https://github.com/HearthSim/UnityPack) and [AssetStudio](https://github.com/Perfare/AssetStudio).
        
        The basic structure is from AssetStudio and the object handling is from unitypack.
        
        ## Installation
        ```cmd
        pip install UnityPy
        ```
        
        ## Usage
        ```python
        from UnityPy import AssetsManager
        
        am = AssetsManager()
        
        # Load file via file path
        am.load_file(fp)
        # Load all files in a folder
        am.load_folder(fp)
        
        for name, asset in am.assets.items():
            for id, obj in asset.objects.items():
                data = obj.read()
        ````
        
        ## Goals
        ### near future
        * adding a documentation
        
        ### far future
        * ability to edit assets (like in UABE)
        * broader object type support
        * code optimization
        * multiprocessing
        
        ## Motivation
        I'm an active data-miner and noticed that unitypack has problems with new unity assets.
        The problem in unitypack isn't that easy to fix and the undocumented code is a bit hard to understand.
        That's why I tried other tools like UABE and AssetStudio. Sadly none of these tools can be used like unitypack.
        That's why I started this project.
        
        ## License
        UnityPy is licensed under the terms of the MIT license. The full license text is available in the LICENSE file.
        
        ## Community
        [Discord](https://discord.gg/C6txv7M)
        
Keywords: Unity,unitypack,UnityPy,unpack
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Multimedia :: Graphics
Description-Content-Type: text/markdown
