this is a collection of video resources (ccc media library, youtube, etc) on computer science related topics im interested in.
feel free to contribute.
Table of Contents
this is a collection of video resources (ccc media library, youtube, etc) on computer science related topics im interested in.
feel free to contribute.
Table of Contents
import requests | |
from bs4 import BeautifulSoup | |
s.mount(url, HTTPAdapter(max_retries=5)) | |
response = requests.Response() | |
try: | |
response = requests.get("https://wiki.guildwars2.com/wiki/Eternity", stream=True, verify=True, headers=False) | |
except requests.exceptions.RequestException as e: # catch exception but do nothing | |
print (e) | |
soup = BeautifulSoup(response.text, 'html.parser') |