https://github.com/apsalverda/assets-checker-python
⚙️ A simple tool to identify missing assets in content JSON.
https://github.com/apsalverda/assets-checker-python
assets check checking images json json-data missing sound verification verify video
Last synced: 7 months ago
JSON representation
⚙️ A simple tool to identify missing assets in content JSON.
- Host: GitHub
- URL: https://github.com/apsalverda/assets-checker-python
- Owner: apsalverda
- Created: 2025-05-17T20:11:38.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-05-22T14:49:21.000Z (8 months ago)
- Last Synced: 2025-06-16T03:32:34.128Z (8 months ago)
- Topics: assets, check, checking, images, json, json-data, missing, sound, verification, verify, video
- Language: Python
- Homepage:
- Size: 11.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Introduction
This tool identifies missing assets (such as image, audio and video files) referenced in content JSON.
### Example output
Output generated when running `python main.py` for the files included in this repo.

### Usage
Modify the Python script according to your requirements.
At the top of the script, specify:
1. The folder(s) that contain the assets
2. The folder(s) that contain the content JSON
3. The relevant assets to check (category label, file extension), for instance:
```
assets_to_check = [
{"asset_label": "images", "asset_extension": "png"},
{"asset_label": "sound files", "asset_extension": "mp3"},
{"asset_label": "videos", "asset_extension": "mp4"}
]
```
Then run the script by entering `python main.py` in your console.