https://github.com/ezfndev/uemanifestreader
Read and parse Unreal Engine Manifests
https://github.com/ezfndev/uemanifestreader
Last synced: about 1 year ago
JSON representation
Read and parse Unreal Engine Manifests
- Host: GitHub
- URL: https://github.com/ezfndev/uemanifestreader
- Owner: EZFNDEV
- License: mit
- Created: 2020-10-04T12:24:20.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2020-10-05T05:49:51.000Z (over 5 years ago)
- Last Synced: 2025-03-28T04:35:02.917Z (about 1 year ago)
- Language: Python
- Size: 13.7 KB
- Stars: 11
- Watchers: 4
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: ReadMe.md
- License: LICENSE
Awesome Lists containing this project
README
# UEManifestReader
[](https://pypi.org/project/UEManifestReader/)
# Basic usage
```py
import json
import UEManifestReader
from UEManifestReader.enums import Platform
Reader = UEManifestReader.UEManifestReader()
async def downloader():
manifest = await Reader.download_manifest(Platform.Android)
open('android_manifest.json', 'w+').write(json.dumps(manifest, indent=2))
Reader.loop.run_until_complete(downloader())
```
# Need help?
If you need more help feel free to join this [discord server](https://discord.gg/jht3aM2).