I'm trying to read the text from a web URL using the following code to store all valid strings to a variable which I can manipulate later. I am getting an error at run time though
from bs4 import BeautifulSoup
import urllib.request
from django.template.defaultfilters import title
response = urllib.request.urlopen('http://www.scotland.org/about-scotland/facts-about-scotland/')
data = response.read()
soup = BeautifulSoup(data)
textString = soup.findAll('p').getText()
print(textString)
error:
textString = soup.findAll('p').getText()
AttributeError: 'ResultSet' object has no attribute 'getText'
Try this:
And if you want to get all
paragraph
data try this: