{"id":42557525,"url":"https://github.com/MinshuG/pyUE4Parse","last_synced_at":"2026-02-20T03:00:32.544Z","repository":{"id":40407943,"uuid":"348021922","full_name":"MinshuG/pyUE4Parse","owner":"MinshuG","description":"ue4 asset parser/reader","archived":false,"fork":false,"pushed_at":"2024-12-11T17:39:30.000Z","size":423,"stargazers_count":67,"open_issues_count":8,"forks_count":21,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-10-10T16:39:35.694Z","etag":null,"topics":["python","unreal-engine-4"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/MinshuG.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-03-15T15:23:24.000Z","updated_at":"2025-09-22T02:13:03.000Z","dependencies_parsed_at":"2025-03-02T13:10:54.183Z","dependency_job_id":"aa8c43a9-79a4-4b2a-9ada-41df2b1b9879","html_url":"https://github.com/MinshuG/pyUE4Parse","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/MinshuG/pyUE4Parse","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinshuG%2FpyUE4Parse","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinshuG%2FpyUE4Parse/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinshuG%2FpyUE4Parse/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinshuG%2FpyUE4Parse/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/MinshuG","download_url":"https://codeload.github.com/MinshuG/pyUE4Parse/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/MinshuG%2FpyUE4Parse/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29639808,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-19T22:32:43.237Z","status":"online","status_checked_at":"2026-02-20T02:00:07.535Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["python","unreal-engine-4"],"created_at":"2026-01-28T20:00:26.600Z","updated_at":"2026-02-20T03:00:32.539Z","avatar_url":"https://github.com/MinshuG.png","language":"Python","funding_links":[],"categories":["⚙️ Engines"],"sub_categories":["Unreal Engine"],"readme":"**UE4/5 Asset Parser**\n\n\u003c!-- ~[![pypi](https://img.shields.io/pypi/v/ue4parse.svg)](https://pypi.python.org/pypi/ue4parse) --\u003e\n\n## Installation\n    python -m pip install git+https://github.com/MinshuG/pyUE4Parse.git  // minimal installation\n\n    python -m pip install UE4Parse[tex]@git+https://github.com/MinshuG/pyUE4Parse.git  // with texture decoders\n\n## Features\n* Parse UE4/5 asset files(.uasset, .umap, .uexp, .ubulk)\n* Convert Textures to PIL Image object\n* Convert assets to json\n* Supports reading .pak/.utoc containers\n\n\n## Usages\n\n\u003cdetails\u003e\n\u003csummary\u003eBasic Usages\u003c/summary\u003e\n\n```python\nfrom UE4Parse.Assets.Objects.FGuid import FGuid\nfrom UE4Parse.Provider import DefaultFileProvider, MappingProvider\nfrom UE4Parse.Versions import EUEVersion, VersionContainer\nfrom UE4Parse.Encryption import FAESKey\n\nimport logging\n\nlogging.getLogger(\"UE4Parse\").setLevel(logging.INFO)  # set logging level\n\npath = r\"C:\\Program Files\\Epic Games\\Fortnite\\FortniteGame\\Content\\Paks\"\n\naeskeys = {\n    FGuid(0,0,0,0): FAESKey(\"0xFE478B39DF1B1D4E8D8DFD38272F216DBE933E7F80ADCC45DC4108D70428F37D\"),\n}\n\nimport gc; gc.disable() # temporarily disabling garbage collector gives a huge performance boost\n\nprovider = DefaultFileProvider(path, VersionContainer(EUEVersion.LATEST))\nprovider.initialize()\nprovider.submit_keys(aeskeys)  # mount files\n\nprovider.load_localization(\"fr\")\n\ngc.enable() # enable garbage collector again\n\nprovider.mappings = MappingProvider(\"path/to/mappings.usmap\")\n\npackage_path = 'FortniteGame/Content/Animation/Game/MainPlayer/Skydive/ParaGlide/MechanicalEngineer/BS_MechanicalEngineer_Into_NoPack_GLIDER'\n\npackage = provider.try_load_package(package_path)\nif package is not None:\n    package_dict = package.get_dict() # get json serializable dict\n\n    # write package_dict to json\n    import json\n    with open('something.json', 'w') as f:\n        json.dump(package_dict, f, indent=4)\n```\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003eConverting Textures\u003c/summary\u003e\n\n```python\nif texture := package.find_export_of_type(\"Texture2D\"):\n    image = texture.decode()  # returns PIL Image object\n    image.save(\"cool_image.png\", \"PNG\")  # save image\n    # for more information refer to https://pillow.readthedocs.io/en/stable/reference/Image.html?highlight=Image#PIL.Image.Image\n```\n\u003c/details\u003e\n\n\n## Links\n\n- [Trello](https://trello.com/b/yp0hx22L/pyue4parse)\n- [CUE4Parse](https://github.com/FabianFG/CUE4Parse)\n## Notes for Developers\n\n- Developers can use pyximport for development purposes (loading cython extensions)\n\n    ```python\n    import pyximport\n    pyximport.install()\n    ```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMinshuG%2FpyUE4Parse","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FMinshuG%2FpyUE4Parse","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FMinshuG%2FpyUE4Parse/lists"}