Stracage du Web Python
#Run request
url = "https://nanolooker.com/account/" + address
response = requests.get(url)
if response.ok:
# Make some soup
soup = BeautifulSoup(response.text, "lxml")
#Show the title
print("The title is: " + str(soup.title.string))
Supreme Oreo