I am using beautifulsoup for scraping data from the html page. Till yesterday every thing was fine. But Now i am getting the error:
'ascii' codec can't encode character u'\xa9' in position 86700: ordinal not in range(128)
i am using the code:
import urllib2
from BeautifulSoup import BeautifulSoup
page = urllib2.urlopen(url).read()
soup = BeautifulSoup(page)
This is giving me the error.