An open API service indexing awesome lists of open source software.

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

Awesome Lists containing this project

README

          

# UEManifestReader

[![Current pypi version](https://img.shields.io/pypi/v/UEManifestReader.svg)](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).