urllib vjezba
unknown
python
3 years ago
220 B
5
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...