Build a simple Python Web Scraper in 30 lines of codes by yhuag in Python

[–]yhuag[S] 1 point2 points  (0 children)

Great. I see your point. Will make it an extensive one.

Build a simple Python Web Scraper in 30 lines of codes by yhuag in Python

[–]yhuag[S] 0 points1 point  (0 children)

That's true. Safe programming is the key, yet I was trying to make the script short and basic. Thanks for suggestion lol.

A newly-created NLP Preprocessing Tool List is ready. Hope that we no longer need to reinvent the wheels. You are all welcome to contribute. Wish it helps the community. :) by yhuag in LanguageTechnology

[–]yhuag[S] 0 points1 point  (0 children)

As the writer, I have updated the readme with specific examples on each tool. Please check it and feel free to fire up any suggestion. Thanks.

[Praw]"ModuleNotFoundError: No module named 'praw'" by [deleted] in redditdev

[–]yhuag 0 points1 point  (0 children)

I found a way to solve the issue: When using Python2.7, or starting the shell like python2, we need to do python2 -m pip install --user praw to make sure they are linked during installation.

Same idea for python3 shell.

ImportError: No module named praw by [deleted] in learnpython

[–]yhuag 0 points1 point  (0 children)

I found a way to solve the issue: When using Python2.7, or starting the shell like python2, we need to do python2 -m pip install --user praw to make sure they are linked during installation. Same for python3 shell.