ISSUE
Crypto/PublicKey/RSA.py", line 375, in decrypt
raise NotImplementedError("Use module Crypto.Cipher.PKCS1_OAEP instead")
NotImplementedError: Use module Crypto.Cipher.PKCS1_OAEP instead
SOLUTION
pip uninstall pycryptodome
pip uninstall pycrypto
pip install pycrypto
1