Flask ile sözlük sitesi yapma

İngilizce sözlük sitesi gibi bir şey planlıyorum aşağıdaki kodda dictionary.com sitesine bir istek gönderiyor ve o istekte belirtilen veriyi çekiyor anlamlarını çekiyor ama resim olarak google üzerinden çekemiyorum ve dataset kullanmak bana yavaş ve zahmetli gözüküyor sizce ne yapmalıyım (konuyu anlatamadım kodda daha kolay anlarsınız)

from os import link
from flask import Flask, render_template, request
import requests
from bs4 import BeautifulSoup
import pandas as pd

app = Flask(__name__)


@app.route("/")
def anaSayfa():
    return render_template("index.html")

@app.route("/hesapla", methods=['POST','GET'])
def hesapla():
    if request.method == 'POST':
#sayi inputtan gelen kelime örn write, hand
        veri = request.form.get('sayi') 
        response = requests.get('https://www.dictionary.com/browse/' + veri)
        soup = BeautifulSoup(response.content,"html.parser")
        sonuc1 = soup.find("div",{"class":"default-content"}).text
        return str(sonuc1)
        

    else:
        return "Bu sayfayı görmeye yetkiniz yok!"

if __name__ == "__main__":
    app.run(debug=True)

pexels.com sitesinin apisini kullandım kafa yoran herkese teşekkürler

2 Beğeni