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
BeautifulSoup?wgetand post it once I'm done.BeautifulSoup, but I will look into it, and decide if it's the module I should use for this task.