This feature has been integrated into pygeonlp v.1.2.2. It will no longer be maintained.
pygeonlp-webapi is a WSGI module to use pygeonlp features as a JSON-RPC web service.
The server for development using Flask can be run with the following command.
$ python -m pygeonlp_webapi.app
or
$ FLASK_APP="pygeonlp_webapi.app" flask run --port=5000If you prefer gunicorn, you can run the following command.
$ gunicorn pygeonlp_webapi.app:app --bind=127.0.0.1:5000Then, post a JSON-RPC message to the server.
$ curl -X POST -H "Content-Type: application/json" -d '{"jsonrpc": "2.0", "method": "geonlp.parse", "params":{"sentence":"NIIは千代田区にあります。"}, "id":"1"}' http://localhost:5000/apiMore detailed Japanese documentation of the software including API is
available under /doc directory.
You can also find the latest online documentation at
Web Service section in GeoNLP Documentation.
pygeonlp-webapi requires pygeonlp and
flask-jsonrpc.
The pygeonlp-webapi package can be installed with the pip command.
It is recommended that you upgrade pip and setuptools to
the latest versions before running it.
$ pip install --upgrade pip setuptools
$ pip install pygeonlp-webapiThe database needs to be prepared the first time.
Prepare the database
Execute the command to register the basic place name word analysis dictionaries
(*.json, *.csv) in this package into the database under the default diretory.
$ python -m pygeonlp.api setup
Run the unit tests with pytest command.
Use pip command to uninstall.
$ pip uninstall pygeonlp-webapiThis software is supported by DIAS (Data Integration and Analysis System) and ROIS-DS CODH (Center for Open Data in the Humanities).
It was also supported by JST (Japan Science and Technology Agency) PRESTO program.