An open API service indexing awesome lists of open source software.

https://github.com/shearichard/py-parse-en-lang-sentences

Parse English language sentences to find the nouns and verbs
https://github.com/shearichard/py-parse-en-lang-sentences

natural-language-processing nltk nltk-python python textblob

Last synced: about 2 months ago
JSON representation

Parse English language sentences to find the nouns and verbs

Awesome Lists containing this project

README

          

# py-parse-en-lang-sentences
Parse English language sentences to find the nouns and verbs

# parenlang.py
_Unfortunately, the blog post cited here has been removed from medium.com and I can't find it on archive.ore. It might be worth trying archive.org again in the future as the problem may be a transitory one._

Initial work based on [this blog post](https://medium.com/analytics-vidhya/get-nouns-verbs-noun-and-verb-phrases-6a378259084).

# noungrabber.py
Is a much more focussed attempt than `parenlang.py` and outputs only nouns. The initial version is based on [this Stackoverflow answer](https://stackoverflow.com/a/58148828/364088).

# textblobtester.py
Uses textblob library to find parts of speech. Useful reference for that is https://pythonprogramming.net/part-of-speech-tagging-nltk-tutorial/. A table showing the significance of the parts of speech tabs is here : https://cs.nyu.edu/~grishman/jet/guide/PennPOS.html .