désactiver l'avertissement lors de l'importation de python

import warnings

with warnings.catch_warnings():
    warnings.filterwarnings("ignore",category=DeprecationWarning)
    import md5, sha

yourcode()
Fragile Fowl