https://github.com/rtuin/textprocessing
Go client for the text-processing.com API's
https://github.com/rtuin/textprocessing
api-wrapper golang text-processing
Last synced: over 1 year ago
JSON representation
Go client for the text-processing.com API's
- Host: GitHub
- URL: https://github.com/rtuin/textprocessing
- Owner: rtuin
- License: mit
- Created: 2017-05-04T12:16:28.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2017-05-04T12:44:23.000Z (about 9 years ago)
- Last Synced: 2025-01-21T02:42:45.226Z (over 1 year ago)
- Topics: api-wrapper, golang, text-processing
- Language: Go
- Homepage:
- Size: 4.88 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# API client for text-processing.com
This is a small wrapper / client for the natural language processing API's found at
[text-processing.com](http://text-processing.com/).
The website provides 4 API's:
1. [Stemming and Lemmatization API](#stemming)
2. [Sentiment Analysis API](#analysis)
3. [Tagging and Chunk Extraction API](#tagging)
4. [Phrase Extraction and Named Entity Recognition API](#extraction)
The original API is documented at: http://text-processing.com/docs/index.html
## Stemming and Lemmatization API
API documented at: http://text-processing.com/docs/phrases.html
**Status:** Not implemented yet
API documented at: http://text-processing.com/docs/phrases.html
**Status:** Not implemented yet
## Tagging and Chunk Extraction API
API documented at: http://text-processing.com/docs/phrases.html
**Status:** Not implemented yet
## Phrase Extraction and Named Entity Recognition API
API documented at: http://text-processing.com/docs/phrases.html
### Example
This example comes from `phrase_test.go`:
```
result, err := ExtractPhrase("John hit the ball.")
```
Then `result` contains:
```
map[
DATE:[ball]
PERSON:[John]
VP:[hit]
LOCATION:[John]
]
```
## License
The MIT License (MIT). Please see the `LICENSE` file for more information.