Aug-27-2018, 04:38 PM
You can install requests with:
py -m pip install requestsBut you can also use urllib.request.urlopen
from urllib.request import urlopen from bs4 import BeautifulSoup req = urlopen('http://google.de') bs = BeautifulSoup(req.read(), 'html.parser')
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
All humans together. We don't need politicians!