Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Learning parser in python

Tags:

python

parsing

I recall I have read about a parser which you just have to feed some sample lines, for it to know how to parse some text.

It just determines the difference between two lines to know what the variable parts are. I thought it was written in python, but i'm not sure. Does anyone know what library that was?

like image 311
Ikke Avatar asked May 28 '09 16:05

Ikke


1 Answers

Probably you mean TemplateMaker, I haven't tried it yet, but it builds on well-researched longest-common-substring algorithms and thus should work reasonably... If you are interested in different (more complex) approaches, you can easily find a lot of material on Google Scholar using the query "wrapper induction" or "template induction".

like image 180
PhilS Avatar answered Sep 18 '22 12:09

PhilS