Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

LinkedinMama under python3 #8

Open
IvanGlinkin opened this issue Oct 10, 2023 · 1 comment
Open

LinkedinMama under python3 #8

IvanGlinkin opened this issue Oct 10, 2023 · 1 comment

Comments

@IvanGlinkin
Copy link

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
@IvanGlinkin
Copy link
Author

But there is an issue with the logging from LinkedIn
Screenshot 2023-10-10 at 10 39 40

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant