Solution 1
from collections import Mapping
from collections.abc import Mapping
Solution 2
try:
from collections.abc import Mapping
except ImportError:
from collections import Mapping
from collections import Mapping
from collections.abc import Mapping
try:
from collections.abc import Mapping
except ImportError:
from collections import Mapping