Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mcnuttandrew/flesch-kincaid-as-a-service
Readability as a service!
https://github.com/mcnuttandrew/flesch-kincaid-as-a-service
microservice nlp readability webapp
Last synced: about 2 months ago
JSON representation
Readability as a service!
- Host: GitHub
- URL: https://github.com/mcnuttandrew/flesch-kincaid-as-a-service
- Owner: mcnuttandrew
- Created: 2018-11-17T23:20:03.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-03-20T00:16:31.000Z (almost 4 years ago)
- Last Synced: 2024-10-15T03:43:06.073Z (3 months ago)
- Topics: microservice, nlp, readability, webapp
- Language: JavaScript
- Homepage: https://www.mcnutt.in/flesch-kincaid-as-a-service/
- Size: 25.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Readability as a service
A simple Flask wrapper on the [textstat](https://github.com/shivam5992/textstat) readability package. You can visit a quick and dirty GUI at the link above, or you can access this library programmatically through the API.
## API
POST REQUST
URL: `https://readability-as-a-service.herokuapp.com/analyze?data="YOUR TEXT HERE"`
example:
`https://readability-as-a-service.herokuapp.com/analyze?data="Good Dogs wear sunglasses"`
Which returns```json
{
"automated-readability-index": 0,
"coleman-liau-index": -15.81,
"dale-chall-readability-score": 0,
"difficult-words": 0,
"flesch-kincaid-grade": -15.7,
"flesch-reading-ease": 206.84,
"gunning-fog": 0,
"linsear-write-formula": -1,
"smog-index": 0,
"text-standard": "-1th and 0th grade"
}
```