I want to find or separate noun and groups of nouns using NLTK from JSON file, this is the JSON file content:
[
{
"id": 18009,
"ingredients": [
"baking powder",
"eggs",
"all-purpose flour",
"raisins",
"milk",
"white sugar"
]
},
{
"id": 28583,
"ingredients": [
"sugar",
"egg yolks",
"corn starch",
"cream of tartar",
"bananas",
"vanilla wafers",
"milk",
"vanilla extract",
"toasted pecans",
"egg whites",
"light rum"
]
},
I want to find the NN
, NNS
, NNP
, NNPS
.