I want to use the same hash as C++ std::hash in python.
I have found that std::hash uses murmurhash and i have also found several python libraries with that hashing algorithm, but non returns the same value as std::hash.
I am looking for either a python library that returns the same hash or the seed used in std::hash.