urllib vjezba

 avatar
unknown
python
2 years ago
220 B
4
Indexable
import urllib.request
import certifi
import ssl

URL = "https://www.algebra.com"

connection = urllib.request.urlopen(URL, context=ssl.create_default_context(cafile=certifi.where()))

page = connection.read()
print(page)
Editor is loading...