Average price of scraped item on ebay using python
How can I get the average price from a list of scraped items' prices from ebay? This is my code: from urllib.request import Request, urlopen from bs4 import BeautifulSoup import requests from requests_html import HTMLSession link = "https://www.ebay.co.uk/sch/i.html?_from=R40&_trksid=p2334524.m570.l1313&_nkw=5035224123933&_sacat=0&LH_TitleDesc=0&_odkw=EAN5035224123933&_osacat=0" req =…