Based on some input from a co-worker (thanks, @w00k-), I added a flag to my Python CIDR Block Converter that produces less output and is friendlier, for example, to our vulnerability scanners.
Now you can pass the --range
flag to the script and get just the bottom and top of the range as a single string, e.g.:
$ ./cidr.py 10.1.1.1/28 --range 10.1.1.0-10.1.1.15
Updated script here: cidr.py