<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"># Import correct md5, irrespective of the Python version
#
# `hashlib` was introduced in 2.5, deprecating `md5`

try:
    from hashlib import *
except ImportError:
    from md5 import *

new = md5
</pre></body></html>