I've got a signature, as a python bytes object, and want to split it into the components v, r, and s.
I understand the details of what needs to be done, by reading: What's the best way to transform bytes of a signature into v, r, s in solidity? but I don't want to re-write the code if someone else has already written it in python.
I don't want to use pyethereum because I hear that it's deprecated in favor of py-evm.
What is a concise way to perform this operation?