marmots/build_entity.py
2020-06-27 11:21:34 -04:00

17 lines
390 B
Python

#@+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