I have Py3.6 on my PC, and one of the stock modules is hashlib, and from 3.6+ it includes SHA3 hashing. However, I need to be able to run hashlib with SHA3 on Python 3.4, where hashlib doesn't include SHA3.
How can I rip hashlib from Py3.6 and use it as an external module, eg having it sit in the same directory as the rest of my .py files?