views:

60

answers:

1

Hi,

which part of huge package nltk I must study and use, if I need mark geonames in text?

+1  A: 

You'll want to use their named entity recognizer nltk.ne_chunk.

Once the text is tagged you'll want to look for phrases labeled LOC (location) and GPE (Geo-political Entity).

dmcer