cannot import name ‘MutableMapping’ from ‘collections’ [duplicate]
You need to import collections.abc Here the link to doc >>> from collections import MutableMapping Traceback (most recent call last): File “<stdin>”, line 1, in <module> ImportError: cannot import name ‘MutableMapping’ from ‘collections’ (/usr/lib/python3.10/collections/__init__.py) >>> from collections.abc import MutableMapping Deprecated since version 3.3, will be removed in version 3.10: Moved Collections Abstract Base Classes to … Read more