Some Python libraries are listed under one name in pip, but imported under a different name in the interpreter.
pycroptodome is a good example. In pip list, you see "pycryptodome". In a Python program, you have to call "import Crypto". "import pycryptodome" gives an error that the module doesn't exist.
Some libraries I've imported are giving me "module not found" errors. I want to see if they're imported under a different name from what appears in pip. Where can I find that data?
For reference, "pip show " and "pip inspect " don't seem to have this information.