I want to know what is the problem when I try to make a request to this URL. Here is my code:
import requests as rq from bs4 import BeautifulSoup def make_request(Url): result = rq.get(Url) soup = BeautifulSoup(result.content, "html.parser") events = soup.find_all("a") for i in events: print(i) make_request("https://web.archive.org/web/20180507100019/https://bravenewcoin.com/industry-resources/events-calendar/bitcoin-and-blockchain-events/") I think the problem is the URL, in that case what can I do to solve this and parse the content of that website ? Thanks a lot !
https://!!