A random 24 bit hash is just random 24 bits. You can generate these just using the random module.
example
import random hash = random.getrandbits(24) print(hex(hash))
Output
This will give the output
0x94fbee
A random 24 bit hash is just random 24 bits. You can generate these just using the random module.
import random hash = random.getrandbits(24) print(hex(hash))
This will give the output
0x94fbee