tree = html.fromstring(HTMLstring)
for line in tree.xpath('.//span[@class="ocr_line"]'):
for item in line.xpath('.//text()'):
print(item)
tree = html.fromstring(HTMLstring)
for line in tree.xpath('.//span[@class="ocr_line"]'):
for item in line.xpath('.//text()[contains(.,"A")]'): # crAzy
print(item)
for item in line.xpath('.//text()[contains(.,"E")]'): # English
print(item)