The ContentRange class is accessible via the webob.byterange module.
This header is start-stop/length, where stop and length can be * (represented as None in the attributes).
Mostly so you can unpack this, like:
start, stop, length = res.content_range
Parse the header. May return None if it cannot parse.
See the source for more information.