A set of Python utilities for working with Postman collections.
- Collection Checker: Validates Postman collection files
- Collection Merger: Combines multiple Postman collections into a single collection
- Clone this repository
- Ensure Python 3.6+ is installed
- No additional dependencies required - uses Python standard library only
Validates whether files are valid Postman collections.
python collectionChecker.py -i <input_paths> [options]- `-i, --input`: Input files or directories to check (required, accepts multiple)
- `-o, --output`: Output file to write results
- `-d, --discover`: Enable discovery mode to only list valid collections
- `--depth`: Maximum directory depth for recursive search (default: 5)
python collectionChecker.py -i ./collections -o ./results.txt --discover --depth 3python collectionChecker.py -i ./collections/collection.jsonpython collectionChecker.py -i ./collections ./collections2python collectionChecker.py -i ./collections -o ./results.txt