Solution
This is a dependency issue caused by the XNET library using the collection library but later version the collection library was moved to collections.abc library.
You need to update the XNET library in the .py file of the directory mentioned in the error. For example, open the .py file from the directory of the error mentioned and change to class DbCollection(Collections.abc.Mapping) and then you will get the next error, do the same thing to make the change until the error module collection is resolve.