Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
REMitchell
GitHub Repository: REMitchell/python-crawling
Path: blob/master/0-Connecting/example1.py
249 views
1
from urllib.request import urlopen
2
3
html = urlopen("https://oreilly.com")
4
print(html.read())
5
6