This paste expires on 2023-05-01 12:21:49.007671. Repaste, or download this paste. . Pasted through web.

from bs4 import BeautifulSoup
import requests
import re
response = requests.get('https://www.arborstonestorageponcacity.com/blog')
soup = BeautifulSoup(response.content, 'lxml')
regex = re.compile(("([a-z0-9!#$%&'*+\/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+\/=?^_`"
                                    "{|}~-]+)*(@|\sat\s)(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?(\.|"
                                    "\sdot\s))+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?)"))
for match in re.findall(regex, response.text):
    print(match)
Filename: None. Size: 516b. View raw, , hex, or download this file.