Hi there,
There is a working file fully compatible with python3:
the document rewritten for python3
fixed the "AttributeError: 'module' object has no attribute 'setdefaultencoding'" by
if sys.version[0] == '2':
reload(sys)
sys.setdefaultencoding("utf-8")
fixed the Error "AttributeError 'collections' has no attribute 'Callable' by
import collections
collections.Callable = collections.abc.Callable
from bs4 import BeautifulSoup # for example
LinkedinMama-python3.py.txt
Hi there, There is a working file fully compatible with python3: