Skip to content
forked from dat/pyner

Python interface to the Stanford Named Entity Recognizer

License

Notifications You must be signed in to change notification settings

ximendatie/pyner

This branch is up to date with dat/pyner:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

d5e1563 · Jan 20, 2014

History

14 Commits
Dec 23, 2013
Apr 11, 2012
Apr 11, 2012
Apr 11, 2012
Apr 11, 2012
Jan 19, 2013
Apr 11, 2012
Aug 29, 2013

Repository files navigation

PyNER

The Python interface to the Stanford Named Entity Recognizer.

Project Homepage

Installation

$ python setup.py install

Basic Usage

>>> 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"]}'

Online Demo

License

BSD License

Author

PyNER is developed by maintained by Dat Hoang. It can be found here: http://github.com/dat/pyner

About

Python interface to the Stanford Named Entity Recognizer

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%