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: 9 days 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 (10 months ago)
- Default Branch: main
- Last Pushed: 2025-08-17T14:00:13.000Z (7 months ago)
- Last Synced: 2025-08-17T16:04:24.968Z (7 months ago)
- Topics: assets, check, checking, images, json, json-data, missing, sound, verification, verify, video
- Language: Python
- Homepage:
- Size: 12.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.
👉 If you have suggestions for improvements, please submit a pull request, report an issue, or contact me directly on [LinkedIn](https://www.linkedin.com/in/anne-pier-salverda-37ab7042/).
### 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.