From 0c396aeed4722a4486b5b3b5e03976eb79bd840d Mon Sep 17 00:00:00 2001 From: Yash Patadia Date: Mon, 4 Nov 2019 18:23:23 +0530 Subject: [PATCH] add dframcy to universe.json (#4580) --- website/meta/universe.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/website/meta/universe.json b/website/meta/universe.json index 749abc659..a55fca2c2 100644 --- a/website/meta/universe.json +++ b/website/meta/universe.json @@ -1861,6 +1861,29 @@ "author_links": { "github": "microsoft" } + }, + { + "id": "dframcy", + "title": "Dframcy", + "slogan": "Dataframe Integration with spaCy NLP", + "github": "yash1994/dframcy", + "description": "DframCy is a light-weight utility module to integrate Pandas Dataframe to spaCy's linguistic annotation and training tasks.", + "pip": "dframcy", + "category": ["pipeline"], + "tags": ["spacy-extension", "pandas-dataframe"], + "code_example": [ + "import spacy" + "from dframcy import DframCy" + "nlp = spacy.load('en_core_web_sm')" + "dframcy = DframCy(nlp)" + "doc = dframcy.nlp(u'Apple is looking at buying U.K. startup for $1 billion')" + "annotation_dataframe = dframcy.to_dataframe(doc)" + ], + "author": "Yash Patadia", + "author_links": { + "twitter": "PatadiaYash", + "github": "yash1994" + } } ],