Reputation: 41
I am trying to read the HTML
contents of a URL
with Python
. To fetch the HTML
contents of a URL
, would I use the module wget
, urllib
or a different module entirely?
After Answers:
I will use the urllib
module since that comes with the default Python 2.7 build, and I can't download external modules from this computer.
List of Modules That Fetch URL Contents:
Wget
Beautiful Soup
Urllib
Requests
Upvotes: 0
Views: 5164