write the code line what u are doing at which error occurs> This error usually occurs when converting unicode to ascii in python(default for python) so u need different encoding or ignore that ascii encoding for particular unicode character
before processing the scraped data from a crawler
where x is a scraped string
x.encode('utf-8',errors='replace')
x.encode('ascii',errors='ignore')
and then process the string x