I am writing up a lit review and trying to us Python Web Scraping the abstracts etc. info about other research on a web. For example, I'd like to extract the content of 'Transcript' from this webpage https://cdm20045.contentdm.oclc.org/digital/collection/p20045coll17/id/1414/rec/3 and wrote a Python code (just started learning Python a couple days ago), but it seems not working at all and didn't extract anything. Please see my code below.
from bs4 import BeautifulSoup
import requests
url = "https://cdm20045.contentdm.oclc.org/digital/collection/p20045coll17/id/1417/rec/4"
html = requests.get(url,verify=False)
soup = BeautifulSoup(html.text,'html.parser')
item = soup.find('span', {'data-id': 'itemText'})
print(item)
Here is also a screenshot of the inspect, I wanted to extract the text paragraph. screenshot
I wonder if anyone can please help? Thanks a million.