Приветствую, есть парсер url фото но они все записаны как отдельные строки
Так вот, как их всех занести в один список?
код
spoiler
import requests
from bs4 import BeautifulSoup
import urllib.request
import random
from time import sleep
url = "https://www.creativeshrimp.com/top-30-artworks-of-beeple.html"
source_code = requests.get(url)
plain_text = source_code.text
soup = BeautifulSoup(plain_text)
for link in soup.find_all("a",{"class":"lightbox"}):
href = link.get('href')
print(href)
img_name = random.randrange(1,10)
full_name = str(img_name) + ".jpg"
sleep(0.2)
Заранее спасибо.