The Python interface to the Stanford Named Entity Recognizer.
$ python setup.py install
>>> import ner
>>> tagger = ner.HttpNER(host='localhost', port=8080)
>>> tagger.get_entities("University of California is located in California, United States")
{'LOCATION': ['California', 'United States'],
'ORGANIZATION': ['University of California']}
>>> tagger.json_entities("Alice went to the Museum of Natural History.")
'{"ORGANIZATION": ["Museum of Natural History"], "PERSON": ["Alice"]}'
BSD License
PyNER is developed by maintained by Dat Hoang. It can be found here: http://github.com/dat/pyner