marmots/build_entity.py

17 lines
390 B
Python
Raw Normal View History

2011-03-19 00:10:02 +00:00
#@+leo-ver=4-thin
#@+node:jpenner.20091016050502.1:@thin build_entity.py
import re
reEnt = re.compile(r"^.*&#(\d+);.*$");
mpch_entity = [0]
with open("cp437_html.txt") as fp:
for line in fp.readlines():
ent = reEnt.match(line).group(1)
mpch_entity.append(int(ent))
print "mpch_entity = ", mpch_entity
#@nonl
#@-node:jpenner.20091016050502.1:@thin build_entity.py
#@-leo